如何制作论文附录和其中的数字方程式?

如何制作论文附录和其中的数字方程式?

我正在制作论文的附录,但不确定我的方法是否正确。我使用以下内容:

\documentclass{12pt}{article}
\begin{document}    
\section*{Appendix A}
 Here comes text.
\begin{equation}
 some formula
\end{equation}
\end{document}

我如何重新开始对方程式进行编号并将其编号为:A.1;A.2,等等?

答案1

您通常会在附录开始前使用\appendix。这会将节计数器更改为显示为大写字母并重置它。您还希望方程式以不同的方式编号,即在附录中包含节数。因此,我使用etoolbox's\appto将计数器的重新定义也添加equation\appendix,为此我使用\counterwithin,它已经在 LaTeX 内核中存在几年了(我不记得从什么时候开始,我想是 2017 年,但不确定)。

完整使用示例:

\documentclass[]{article}

\usepackage{etoolbox}

% we also want to change the equation counter to display the current section
\appto\appendix{\counterwithin{equation}{section}}

\begin{document}
\section{A normal section}
\begin{equation}
  E=mc^2
\end{equation}

\appendix
\section{An appendix section}
\begin{equation}
  E=mc^2
\end{equation}
\end{document}

在此处输入图片描述

相关内容