编号对齐环境

编号对齐环境

我正在article课堂上写作。align环境被连续编号,但我希望它们被编号为“本部分中的 section.number”。我该怎么做?:)

答案1

要么使用\numberwithin{equation}{section}来自amsmath要么mathtoolschngcntr包(如果需要更多,例如\counterwithout或带星号的版本\counterwithin*等)

\documentclass{article}

\usepackage{chngcntr}

\usepackage{mathtools}
\counterwithin{equation}{section}


\begin{document}
\section{A section}
\begin{align}
  E &= mc^{2} \\
  E^2 &= p^{2}c^{2} + m^{2}c^{4}
\end{align}


\section{Another section}

\begin{align}
  E &= mc^{2} \\
  E^2 &= p^{2}c^{2} + m^{2}c^{4}
\end{align}

\counterwithout{equation}{section} % Remove the resetting by `section`

\section{Yet another section}

\begin{align}
  E &= mc^{2} \\
  E^2 &= p^{2}c^{2} + m^{2}c^{4}
\end{align}

\end{document}

在此处输入图片描述

相关内容