我想使用连续的方程编号,但我正在使用report
类默认在章节内对方程式进行编号。如果有人能帮助我,我将不胜感激。
答案1
您可以使用chngcntr
以下包\counterwithout
:
\documentclass{report}
\usepackage{chngcntr}
\counterwithout{equation}{chapter}
\begin{document}
\chapter{First chapter}
\begin{equation}
x=y
\end{equation}
\begin{equation}
x=z
\end{equation}
\chapter{Second chapter}
\begin{equation}
x \neq y
\end{equation}
\chapter{Third chapter}
\begin{equation}
x= a + y
\end{equation}
%
\end{document}