From f77f0f00719b900c081ffed957cdba89da4d5d28 2015-10-09 16:15:55 From: Jonathan Frederic Date: 2015-10-09 16:15:55 Subject: [PATCH] Better document the %%latex magic latex support. --- diff --git a/IPython/core/magics/display.py b/IPython/core/magics/display.py index ed7eb06..bfa042f 100644 --- a/IPython/core/magics/display.py +++ b/IPython/core/magics/display.py @@ -38,7 +38,10 @@ class DisplayMagics(Magics): @cell_magic def latex(self, line, cell): - """Render the cell as a block of latex""" + """Render the cell as a block of latex + + This magic only renders the subset of latex defined by MathJax + [here](https://docs.mathjax.org/en/v2.5-latest/tex.html).""" display(Latex(cell)) @cell_magic