如何更改 LaTex 书籍文档类中的公式编号?

如何更改 LaTex 书籍文档类中的公式编号?

我们知道,该类book的编号方程式遵循以下结构:

第1章

第一个等式(1.1)

第二个等式(1.2)

第2章

第一个等式(2.1)

第二个等式(2.2)

第三个等式(2.3)

我想要custom numbering format以下描述:

第1章

第一个方程 (1)

第二个等式 (2)

第2章

第一个方程 (1)

第二个等式 (2)

第三个等式(3)

如您所见,标签chapter number中未显示方程式equation,但随着新章节的引入,方程式编号会重置。此外,每个方程式内都会计算方程式chapter

请告诉我如何在 中执行此操作LaTeX

答案1

您需要做的就是执行

\renewcommand{\theequation}{\arabic{equation}}

在序言中。

最小工作示例(MWE):

\documentclass{book}
\renewcommand{\theequation}{\arabic{equation}}

\begin{document}   

\chapter{AAA}
\begin{equation} aaa \end{equation}
\begin{equation} bbb \end{equation}

\chapter{BBB}
\begin{equation} ccc \end{equation}
\begin{equation} ddd \end{equation}
\begin{equation} eee \end{equation}

\end{document}

相关内容