Render the cell as a block of LaTeX The subset of LaTeX which is supported depends on the implementation in the client. In the Jupyter Notebook, this magic only renders the subset of LaTeX defined by MathJax [here](https://docs.mathjax.org/en/v2.5-latest/tex.html).
(self, line, cell)
| 58 | |
| 59 | @cell_magic |
| 60 | def latex(self, line, cell): |
| 61 | """Render the cell as a block of LaTeX |
| 62 | |
| 63 | The subset of LaTeX which is supported depends on the implementation in |
| 64 | the client. In the Jupyter Notebook, this magic only renders the subset |
| 65 | of LaTeX defined by MathJax |
| 66 | [here](https://docs.mathjax.org/en/v2.5-latest/tex.html).""" |
| 67 | display(Latex(cell)) |
| 68 | |
| 69 | @cell_magic |
| 70 | def svg(self, line, cell): |