答案1
有许多实现格式化目标的方法。数学包为此目的提供了几个数学环境。使用哪个环境将主要取决于“EQ. 1”和“EQ. 2”的结构。如果有一个共同的对齐点(例如符号=
),则应考虑split
或aligned
环境。如果不需要这样的对齐,gathered
环境可能是可行的方法。
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for split and gathered environments
\counterwithin{equation}{section} % just for this example
\begin{document}
\stepcounter{section} % just for this example
\begin{equation}
\begin{split}
a &= b+c \\
d &= e+f
\end{split}
\end{equation}
\begin{equation}
\begin{gathered}
u = xx + vv \\
xx = yyy + zzzz
\end{gathered}
\end{equation}
\end{document}