Metadata-Version: 2.1
Name: jupyprint
Version: 0.1.4
Summary: A simple python package to print markdown and LaTeX equations from code cells in Jupyter notebooks.
Author: Peter Rush
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: ipython

# jupyprint

A simple python package to print markdown and LaTeX equations from code cells in
Jupyter notebooks.

`jupyprint` let's you print your variables as markdown/LaTex.

You can print LaTeX strings involving 'live' variables (e.g. the variables you
are using in your jupyter code cells). 

You can print numpy arrays as LaTeX matrices and you can print nice-looking pandas
dataframes.

To install use: `pip install jupyprint`

See `jupyprint_demo.ipynb` for a demo. Here are some screenshots from the demo
(there are no markdown cells in the notebook, all the markdown/LaTeX is printed
from the code cells):

![](https://github.com/pxr687/jupyprint/raw/main/images/demo_1.png)

![](https://github.com/pxr687/jupyprint/raw/main/images/demo_2.png)

![](https://github.com/pxr687/jupyprint/raw/main/images/demo_3.png)

![](https://github.com/pxr687/jupyprint/raw/main/images/demo_4.png)

![](https://github.com/pxr687/jupyprint/raw/main/images/demo_5.png)
