选项 leqno、reqno 用于 documentclass 还是存在其他选项?

选项 leqno、reqno 用于 documentclass 还是存在其他选项?

我认为这些简单的 MWE

\documentclass[12pt,leqno]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
     x^n + y^n = z^n
\end{equation}
\end{document}

leqno我们知道,使用 选项LaTeX会将等式的累进数字放在最左边。使用 选项会将等式的累进数字放在reqno页面的最右边。

\documentclass[12pt,reqno]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
     E=mc^2
\end{equation}
\end{document}

但是,例如,当我有一个带有align选项的代码时,知道数字可以位于第一个或第二个等式中,为什么该leqno选项不活跃并且数字总是放在右边?

在此处输入图片描述

\documentclass[12pt,leqno]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
a &= b+c \nonumber\\
e &= f+g
\end{align}
\end{document}

在此处输入图片描述

  1. 如何将两个方程式之间的方程式数字放在中间、左边或右边?
  2. LaTeX是否只有leqnoregno选项?但是,是否有选项,例如ceqno,可以将数字放在方程旁边(更清楚的是放在中心),或者始终放在中心,但位于两个方程的中间?

答案1

如果要显示单个数字,请使用equationnotalign 在此处输入图片描述

注意,没有reqno选项,右边的方程式数字是默认的。

\documentclass[12pt,leqno]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{split}
a &= b+c \\
e &= f+g
\end{split}
\end{equation}
\end{document}

相关内容