由于某些未知原因,当我编译此代码时,我缺少第一行的第一部分:
\documentclass[12pt, letterpaper]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{gathered}
[Q_\alpha,Q'_\beta] = [P_\alpha,P'_\beta] = 0, \\
[P_\alpha,Q'_\beta] = [P'_\alpha,Q_\beta] = \dfrac{h}{2\pi i}\delta_{\alpha \beta}\delta(\pmb{r}-\pmb{r}')
\end{gathered}
\end{equation}
\end{document}
答案1
gathered
足够聪明
tokens \\
[tokens]
不会误认为[
是可选参数的指示器(在tabular
或中会发生这种情况array
)。
但是,它不够聪明,无法对第一行执行相同的操作,因此 your[
被视为可选参数的开头。由于它既不是t
也不是b
,因此会被忽略。
解决方案:
\documentclass[12pt, letterpaper]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{gathered}\relax
[Q_\alpha,Q'_\beta] = [P_\alpha,P'_\beta] = 0, \\
[P_\alpha,Q'_\beta] = [P'_\alpha,Q_\beta] = \dfrac{h}{2\pi i}\delta_{\alpha \beta}\delta(\pmb{r}-\pmb{r}')
\end{gathered}
\end{equation}
\end{document}