Loading AMSmath explicitly in IPython notebook causes “[Math Processing Error]”

天大地大妈咪最大 提交于 2019-12-02 05:38:00
kikocorreoso

It should work without extra configuration. Have a look here.

Your example in a markdown cell should be

(If you want the equation inline you can use $...$)

Inline equation $\Delta u = f \text{ on } \Omega$

(Or if you want the equation centered in their own line you can use $$...$$)

$$\Delta u = f \text{ on } \Omega$$

The result of both snippets in the same markdown cell is rendered as:

How it is loaded?

IPython/Jupyter notebook preloads some MathJax extensions including the extension you want to load. This extension is not an IPYthon/Jupyter extension so it shouldn't work if you try to load this MathJax extension as an IPython/Jupyter extension. See here to know more about how to load other MathJax extensions.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!