我如何才能将附录中写有的公式(例如编号为 A.1)报告到使用相同编号的章节正文中?例如,如果是第 3 节,我不希望它以编号 3.1 等显示,而是精确地显示为 A.1
答案1
我将假设您使用的文档类与该包兼容amsmath
。(幸运的是,大多数文档类都满足此标准。)我建议您使用\numberwithin
该amsmath
包的宏来设置编号样式,并使用\tag
宏来覆盖所选方程的默认编号系统。
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for "\tag" and "\numberwithin" macros
\numberwithin{equation}{section} % set numbering style
\begin{document}
\setcounter{section}{2} % just for this example
\section{Third Section}
\begin{equation}
1+1=2 \tag{\ref{eq:trivial}} % use "\tag" to override the default numbering method
\end{equation}
\begin{equation}\label{eq:also-trivial} % employ default numbering method
0+0=0
\end{equation}
\appendix % change section "numbers" to "A", "B", ...
\section{Additional Results}
\begin{equation}\label{eq:trivial}
1+1=2
\end{equation}
\end{document}