我想更改附录的名称。因此,我希望我的附录名称不是像往常一样的附录 A,而是附录 I。
所以我用
\begin{appendix}
\renewcommand{\theequation}{I.\arabic{equation}}
% redefine the command that creates the equation no.
\setcounter{equation}{0} % reset counter
\section*{\textbf{Appendix I}} % use *-form to suppress numbering
....................%some text
\end{appendix}
这些命令帮助我更改了公式编号。我尝试了相同的“技巧”来更改引理和定理的编号(我想要的,例如引理 I.1、定理 I.2),但没有成功。
请用这些命令帮助我。
答案1
您应该尝试将附录的计数器更改为罗马数,而不是为每个使用它的宏都更改它。
因此尝试
\renewcommand{\thesection}{\Roman{section}}
而不是公式命令。(您也可以使用章节计数器,具体取决于您的文档类别)
编辑:为了更清楚:而不是
\renewcommand{\theequation}{I.\arabic{equation}}
\setcounter{equation}{0} % reset counter
\section*{\textbf{Appendix I}} % use *-form to suppress numbering
我会尝试
\renewcommand{\thesection}{\Roman{section}}
\section{Appendix}
我使用自动编号,因此方程计数器会自动处理,并且引理、定理和很多内容的计数器也应该自动处理。