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)
| 500 | |
| 501 | |
| 502 | def 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 | |
| 519 | def display_json(*objs, **kwargs): |
nothing calls this directly
no test coverage detected