-
Me yet again - this time about equations. My equations are rendering just fine in the usual Jupyter notebook markdown cell context: But are all borked on the actual Github pages upload: Presumably the LaTeX engine that Jupyter Book is using has lesser or different syntax support for equations. Some of them render okay, but many don't. I'm sure there's a way to configure this, but I don't know how. Thanks for all the help - y'all are really saving my bacon. -Rohan |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
If you use dollar signs does it render? It looks like you don't have the [ ] set to render as math in jupyter book. You may need to manually set this in sphinx. See here for how this is done in myst: https://myst-parser.readthedocs.io/en/latest/using/syntax.html#mathjax-and-math-parsing |
Beta Was this translation helpful? Give feedback.
-
TL;DR, the key was forcing an upgrade to In general, while doing so seems kind of slapdash, I'm having a lot of success with just forcing upgrades to everything as soon as I run into a problem! |
Beta Was this translation helpful? Give feedback.
TL;DR, the key was forcing an upgrade to
myst-parser
:pip3 install -U myst-parser
In general, while doing so seems kind of slapdash, I'm having a lot of success with just forcing upgrades to everything as soon as I run into a problem!