mmcky / nyu-econ-370

Quantitative Economics with Python Course (NYU) Spring 2016
54 stars 56 forks source link

LaTeX resources for writing Math in Jupyter #9

Open mmcky opened 8 years ago

mmcky commented 8 years ago

Writing math in Jupyter notebook markdown cells is fairly straight forward once you know the LaTeX commands. Below are some links to resources that will help you learn LaTeX. Once you have specified the math with LaTex then you may enter it into the Jupyter markdown type cell using $ ... $ for inline math and $$ .... $$ for display type formulae.

Checkout the demo notebooks for some examples. You can see the markdown by double clicking on the markdown cells.

Resources:

  1. https://en.wikibooks.org/wiki/LaTeX/Mathematics
  2. http://jupyter-notebook.readthedocs.org/en/latest/notebook.html#markdown-cells
EduGord commented 7 years ago

As simple as that is, it was actually useful, thanks!