2

I have a strange problem. I am trying to render the following valid latex,

$$\int_{x=0}^{x=h} u_t dx = \int_{x=0}^{x=h} (-au + du_x)_x dx + 
  \int_{x=0}^{x=h} s(x,t,u) dx$$

in a markdown cell in an ipython notebook (version 0.13.2 built from source). If I instead render each term separately it works!

$$\int_{x=0}^{x=h} u_t dx $$

$$\int_{x=0}^{x=h} (-au + du_x)_x dx$$

$$+ \int_{x=0}^{x=h} s(x,t,u) dx$$

Is it possible to get an error message to find out where the problem is? iPython is rendering this via MathJax.

4

1 回答 1

2

如果您可以修改 MathJax 使用的配置,则可以添加

TeX: { noErrors: { disabled: true } }

到配置,应该允许显示错误(而不是原始的 TeX 代码)。如果您无法直接访问配置,您可以打开浏览器控制台窗口并输入

MathJax.Hub.Config({TeX: {noErrors: {disabled: true}})

(然后按 RETURN),然后使用麻烦的 LaTeX 执行单元格以获得相同的效果。

我想知道一些奇怪的字符没有进入更长的表达式(比如强制换行或其他东西)。

于 2013-06-18T19:43:34.363 回答