如何将多个方程式与正确的编号对齐

如何将多个方程式与正确的编号对齐

我正在尝试将多个方程对齐在一起。我尝试使用子方程来实现这一点,但我希望编号是正常的,这样它就不会像 1a 和 1b 那样上升,而是像 1 和 2 那样上升。这可能吗?

梅威瑟:

\documentclass{article}
\usepackage{amsmath}
\title{Amsmath example}
\author{Overleaf}
\date{May 2021}
\begin{document}
\maketitle
\section{Introduction}
\begin{subequations} \label{eq1}
\begin{alignat}{2}
A & = \frac{\pi r^2}{2} \\
 & = \frac{1}{2} \pi r^2
\end{alignat}
\end{subequations}

\end{document}

在此处输入图片描述

我是否以错误的方式尝试了此操作?

答案1

如果你使用,subequations你会得到子方程,如果你不使用它,你会得到正常方程数字:

\documentclass{article}
\usepackage{amsmath}
\title{Amsmath example}
\author{Overleaf}
\date{May 2021}
\begin{document}
\maketitle
\section{Introduction}
\begin{alignat}{2}
A & = \frac{\pi r^2}{2} \\
 & = \frac{1}{2} \pi r^2
\end{alignat}

\end{document}

在此处输入图片描述

相关内容