首页 > 解决方案 > Jupyter markdown: Curly brace symbole doesn't show correctly

问题描述

I am trying to write a mathematical equation in jupyter notebook markdown, this equation have a Curly brace '{' symbole. I wrote this code :

$$M=\begin{equation}
\left\{ 
  \begin{aligned}
    2\,x&+3\,y&-4\,z&=&7\\
    -x&+8\,y&   &=&3\\
    \frac{2}{3}\,x&+\frac{13}{2}\,y&-5\,z&=&\frac{14}{5}\\
  \end{aligned}
  \right.
\end{equation}
$$


when running the cell I get this:

enter image description here

instead of the correct one:
enter image description here

So I don't know what the problem is, any idea? PS: I have python3

标签: pythonjupyter-notebooklatexmarkdownmathematical-expressions

解决方案


问题是 mathJax 没有正确渲染,所有的数学表达式也是如此。所以要修复它,点击右键>>数学设置>>数学渲染器>>SVG
在此处输入图像描述


推荐阅读