MCPcopy Create free account
hub / github.com/ipython/ipython / display_latex

Function display_latex

IPython/core/display.py:502–516  ·  view source on GitHub ↗

Display the LaTeX representation of an object. Parameters ---------- objs : tuple of objects The Python objects to display, or if raw=True raw latex data to display. raw : bool Are the data objects raw data or Python objects that need to be formatted

(*objs, **kwargs)

Source from the content-addressed store, hash-verified

500
501
502def display_latex(*objs, **kwargs):
503 """Display the LaTeX representation of an object.
504
505 Parameters
506 ----------
507 objs : tuple of objects
508 The Python objects to display, or if raw=True raw latex data to
509 display.
510 raw : bool
511 Are the data objects raw data or Python objects that need to be
512 formatted before display? [default: False]
513 metadata : dict (optional)
514 Metadata to be associated with the specific mimetype output.
515 """
516 _display_mimetype('text/latex', objs, **kwargs)
517
518
519def display_json(*objs, **kwargs):

Callers

nothing calls this directly

Calls 1

_display_mimetypeFunction · 0.85

Tested by

no test coverage detected