Support for LaTeX math environments like in Jupyter notebooks?
See original GitHub issueI was trying to use MyST-Parser with nbsphinx
in https://github.com/spatialaudio/nbsphinx/pull/560, but it doesnât seem to support math environments like
\begin{equation*}
a
\end{equation*}
Describe the solution youâd like
It would be great if that worked just like in Jupyter notebooks.
Is there an extension I can enable to get this?
Issue Analytics
- State:
- Created 2 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
Learn How to Write Markdown & LaTeX in The Jupyter Notebook
Just put your LaTeX math inside $ $ . Or enter in display math mode by writing between $$ $$ .
Read more >How to use Latex in Jupyter notebook - Linux Hint
Latex notations for writing Mathematical Equations ... First, select the markdown cells in the jupyter notebook. Now, use dollar symbols $$, to start...
Read more >(some) LaTeX environments for Jupyter notebook
This extension for Jupyter notebook enables the use of some LaTeX commands and environments markdown cells. LaTeX commands and environments. support for ...
Read more >Math and equations - Jupyter Book
Jupyter Book uses MathJax for typesetting math in your HTML book build. This allows you to have LaTeX-style mathematics in your online content....
Read more >(some) LaTeX environments for Jupyter notebook
theorems-like environments: property, theorem, lemma, corollary, proposition, definition,remark, problem, exercise, example, ¡ lists: enumerate, itemize, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I just had an epiphany:
nbsphinx
already has Markdown support via Jupytext! I should have thought about this earlier, itâs actually quite obvious.Everything already works as expected, I just had to document it: https://github.com/spatialaudio/nbsphinx/pull/561
So I wonât have to create my own MyST-based Python package after all!
I will not need anything that we just discussed in this issue, but it might still be interesting for other people who might want to use MyST-Parser with Jupyter-like Markdown extensions.
But Iâm fine with closing this, I wonât be needing it anymore.
Thanks for your help, though!
So basically myst-parser with hard-coded configuration đ¤ˇ