如果我有一个 iPython 笔记本,并且一个单元格包含一个 align
语句,如下所示:
$$
\begin{align}
x &= 3 \\
y &= 4
\end{align}
$$
然后运行
ipython nbconvert test.ipynb --to pdf
给我以下错误:! Package amsmath Error: Erroneous nesting of equation structures;
(amsmath) trying to recover with `aligned'.
See the amsmath package documentation for explanation.
Type H <return> for immediate help.
...
l.233 \end{align}
?
! Emergency stop.
...
l.233 \end{align}
! ==> Fatal error occurred, no output PDF file produced!
Transcript written on notebook.log.
我在任何地方都找不到
notebook.log
。它位于何处,更重要的是,为什么 align 会破坏我的 PDF 转换?我已经安装了 amsmath
! 最佳答案
@moose 是对的:您应该同时使用 $$ ... $$
和 align
表示法。选择两者之一。
也就是说,对于多线方程,使用:
\begin{align}
x &= 3 \\
y &= 4
\end{align}
对于单线方程,请使用:
$$
x = 3
$$
关于python - 使用 align 时 iPython 笔记本不会转换为 PDF,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29505406/