This is the jupytexmagic module.
Project description
Why jupytex?
This is a python package for rendering LaTeX in Jupyter notebook with native rendering capabilities. Jupyter uses MathJax to render LaTeX inside of Markdown cells, which is fine for most use cases; however, this does not provide the full set of tools that LaTeX has to offer (e.g. tikzpictures, complex figures). What we want is the ability to write content using Jupyter for dynamic content while not sacrificing the beauty of native LaTeX.
How Does it Work?
This is a custom ipython magic plugin
which allows users to create a new code cell, placing %%tex at the top and
then put all of their LaTeX source code afterwards. Running the cell compiles
the code into .svg format which is displayed following the cell.
Jupytex uses pdflatex to compile your cell's code into PDF format, then
pdfcrop to crop the content, and pdf2svg to convert the PDF to .svg
format. Then this is displayed using the IPython module. The compilation is
fast, and has the upside of your LaTeX not needing to be rendered with
Javascript when viewed on the web.
The .svg format is great because it doesn't lose any definition upon
zooming in on the compiled LaTeX and you can highlight text with your cursor,
which you cannot do with normal image formats like PNG/JPEG.
Usage
- run
pip install jupytexmagic - create a new cell with
import jupytexmagicand%load_ext jupytexmagic - have fun! for tex cells, place
%%texat the top of your cell Note: see test/jupytexmagic.ipynb for an example run - Currently the document class is standalone with variable height
\documentclass[varwidth, margin=1in]{standalone}and has page numbers turned off\pagenumbering{gobble}but other than that, you can fully customize the output. This is needed so that the rendering of the svg is continous similar to how Jupyter renders markdown.
If your tex compilation fails, you can use the %%texdebug magic command
to display the output of pdflatex when compiling for debugging purposes.
Current Limitations
Because jupytex presents the compiled LaTeX in .svg format, it assumes
a standard page layout. Currently texify() crops to content; although there
are slight things that are off about the margins. The goal is to fix this in
the next release!
For some reason, the compilation does not work properly with JupyterNotebook;
however, it works just fine with JupyterLab. Currently uploading the source
.ipynb files ruins the view on GitHub, but displaying and building inside
a Jupyter Book works properly (see images attached in [example run screenshots](#Example Run Screenshots)
Tests directory
Currently this directory contains a screenshot and lab.ipynb, which are
Jupyter example runs. Some ideas for testing could be to use selenium for
screenshotting and comparing images with known working versions.
Example Run Screenshots
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jupytexmagic-0.1.2.tar.gz.
File metadata
- Download URL: jupytexmagic-0.1.2.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6abf55a037b627a37a745ab2063ad3265ec5e7ee0033a201862193228ee8287a
|
|
| MD5 |
25295ba48dacf626871fdf8341276835
|
|
| BLAKE2b-256 |
b781499007d5a51abeb4fece2f8707aaf82905d99efdc7f8eafbd8030ac9b1bb
|
File details
Details for the file jupytexmagic-0.1.2-py2.py3-none-any.whl.
File metadata
- Download URL: jupytexmagic-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e91bef6e78b774590ee3ef5cf856a0ae05c6ff1c9efc4a6d17201f32b63975b
|
|
| MD5 |
a9b5f36401973545fd2c1f0860da5802
|
|
| BLAKE2b-256 |
4641f12860f56aa4111257689c74b1ad2fd3a688379574a4d0b2336482b8d243
|