ipython notebook Tex 的问题

ipython notebook Tex 的问题

我正在使用 ipython 笔记本和以下 Tex 代码

%%latex

We begin with the formulation of Maxwell's Laws. \newline
Once
\begin{aligned}
\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & = \frac{4\pi}{c}\vec{\mathbf{j}} \\
\nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\
\nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\
\nabla \cdot \vec{\mathbf{B}} & = 0
\end{aligned}

%%latex 只是创建了一个 Tex 环境。如果我运行代码,我会得到:

We begin with the formulation of Maxwell's Laws. \newline Once
∇×B⃗ −1c∂E⃗ ∂t∇⋅E⃗ ∇×E⃗ +1c∂B⃗ ∂t∇⋅B⃗ =4πcj⃗ =4πρ=0⃗ =0

输出是正确的,因为它是在列中,而不是行中。问题是我不知道为什么 \newline 没有创建另一行。

如果尝试类似的事情:

%%latex
\begin{document}
We begin with the formulation of Maxwell's Laws. \newline
Once
\begin{aligned}
\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & = \frac{4\pi}{c}\vec{\mathbf{j}} \\
\nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\
\nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\
\nabla \cdot \vec{\mathbf{B}} & = 0
\end{aligned}
\end{document}

它仍然不起作用。

我是否遗漏了一些开始-结束语句?我是否需要初始化某些内容?

相关内容