我正在article
课堂上写作。align
环境被连续编号,但我希望它们被编号为“本部分中的 section.number”。我该怎么做?:)
答案1
要么使用\numberwithin{equation}{section}
来自amsmath
要么mathtools
或chngcntr
包(如果需要更多,例如\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}