数字方程为 0.1 而不是 1

数字方程为 0.1 而不是 1

我在论文中使用bookclass。我有一个前言,它位于第一章之前。在这个前言中,所有章节都按 等进行编号0.1。但是,方程式的编号为1而不是0.1,这看起来很奇怪。请问我该如何让 LaTeX 将前言中的方程式编号为0.10.2、 等?谢谢!

答案1

只要没有明确的设置:也许是这个?

\documentclass{book}


\usepackage{chngcntr}

\begin{document}

\counterwithin{equation}{chapter} % Use chapter as driver for the resetting

\section{A section}

\begin{equation}
  E = mc^2
\end{equation}

\begin{equation}
  c^2 = a^2+b^2
\end{equation}


\chapter{Real stuff}



\section{A section}

\begin{equation}
  E = mc^2
\end{equation}


\end{document}

在此处输入图片描述

答案2

放在\renewcommand\theequation{\arabic{equation}}等式前面。

例子:

\renewcommand\theequation{\arabic{equation}}
\begin{equation}
\label{eqn:eq1}
X = 1+5
\end{equation}

相关内容