删除“附录”后的“A”,但不删除编号

删除“附录”后的“A”,但不删除编号

我在 \appendix 之后使用以下代码:

\renewcommand\appendixname{Appendix}
\chapter{}

然后我的附录标题是“附录 A”。如何删除“A”,但仍保留方程式、图像等的编号(例如,我的第一个方程式的编号仍为 A.1)?

我曾尝试过这个:

\renewcommand\thechapter{} 
\renewcommand\thesection{\arabic{section}}. 

然后标题中的“A”就会被删除,这很好。但是方程式、图形等的数字(A)也会被删除,这是不应该的。

顺便说一下,我正在使用论文。

答案1

如果您想要一个单独的“章节”标题以及名称“附录”,则对于某些文档类别,您可以按以下方式设置情况:

\appendix
\setcounter{chapter}{-1}
\chapter{Title}
\renewcommand{\thechapter}{A}

为了建立附录中可能包含的元素所需的形式和编号,请根据需要添加这些说明。(并非所有文档类都会自动重置计数器)。

\setcounter{section}{0}
\setcounter{theorem}{0}
\renewcommand{\thetheorem}{\thechapter.\arabic{theorem}}
\setcounter{equation}{0}
\renewcommand{\theequation}{\thechapter.\arabic{equation}}
\setcounter{figure}{0}
\setcounter{table}{0}

我不确定这是否可以thesis这样操作。

答案2

所以你只想在附录中有一章,并且想让它被称为附录而不是附录 A?你可以使用带星号的章节版本。然后重新定义\theequation以按你想要的方式对其进行编号。

\chapter*{Appendix}
\renewcommand{\theequation}{A.\arabic{equation}}

如果你仍然希望它出现在你的,\tableofcontents你需要添加它

\addcontentsline{toc}{chapter}{Appendix}

答案3

\appendix
\setcounter{chapter}{-1}
\addcontentsline{toc}{chapter}{Appendix}
\chapter{\label{chap:appendix} }
\input{appendix}

相关内容