我如何将附录中的方程式编号为 (IA.1)、(IA.2)... 我希望对主文档中的方程式进行全局编号,然后对附录中的方程式进行全局编号,并在附录中重新开始编号。
答案1
无需软件包(即使你可能正在使用appendix
包裹),只是更新了显示方式\theequation
。也就是说,将其改为I<appendix>.<equation>
:
\documentclass{report}
\begin{document}
\chapter{A chapter}
\begin{equation}
f(x) = ax^2 + bx + c
\end{equation}
\appendix
\chapter{An appendix}
\renewcommand{\theequation}{I\thechapter.\arabic{equation}}
\begin{equation}
f(x) = ax^2 + bx + c
\end{equation}
\end{document}