使用“报告”类时的连续方程编号

使用“报告”类时的连续方程编号

我想使用连续的方程编号,但我正在使用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}

相关内容