##// END OF EJS Templates
Merge pull request #8889 from jdfreder/latexdoc...
Min RK -
r21740:31087f31 merge
parent child Browse files
Show More
@@ -38,7 +38,12 b' class DisplayMagics(Magics):'
38
38
39 @cell_magic
39 @cell_magic
40 def latex(self, line, cell):
40 def latex(self, line, cell):
41 """Render the cell as a block of latex"""
41 """Render the cell as a block of latex
42
43 The subset of latex which is support depends on the implementation in
44 the client. In the Jupyter Notebook, this magic only renders the subset
45 of latex defined by MathJax
46 [here](https://docs.mathjax.org/en/v2.5-latest/tex.html)."""
42 display(Latex(cell))
47 display(Latex(cell))
43
48
44 @cell_magic
49 @cell_magic
General Comments 0
You need to be logged in to leave comments. Login now