两行方程的唯一编号

两行方程的唯一编号

如何像图中这样对方程进行编号?(我观察到,在柯西问题中,它是以这种方式出现的)谢谢。

在此处输入图片描述

答案1

许多实现格式化目标的方法。数学包为此目的提供了几个数学环境。使用哪个环境将主要取决于“EQ. 1”和“EQ. 2”的结构。如果有一个共同的对齐点(例如符号=),则应考虑splitaligned环境。如果不需要这样的对齐,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}

相关内容