我的论文中只有一个附录章节,Latex 默认其为附录 A。但是,我需要它只显示为“附录”,没有 A 或 1。谁能告诉我如何实现。
太感谢了。
答案1
secnumdepth
您可以在附录中将 改为 0。这意味着命令执行后,所有级别(部分、章节、节)的节编号均会关闭。
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\section{First}
\lipsum[1]
\section{Second}
\lipsum[2]
\appendix
\setcounter{secnumdepth}{0}
\section{Appendix}
\end{document}
答案2
如果您只想抑制附录的编号,但保留其他部分单元(即附录内的章节、小节)的编号,那么您可以在附录之前重新定义命令\thechapter
和:\thesection
\documentclass{book}
\begin{document}
\chapter{A regular chapter}
\appendix
\renewcommand\thechapter{}
\renewcommand\thesection{\arabic{section}}
\chapter{Only Appendix}
\section{Test section in Appendix}
\end{document}
答案3
只需使用 \chapter*(或 \section*)作为附录标题即可。
答案4
我进入类文件来执行此操作。本质上,它看起来像这样:
\renewcommand\appendix{\par\UTD@appendixtrue
\setcounter{chapter}{0}%
\setcounter{section}{0}%
\gdef\@chapapp{\appendixname}%
\gdef\thechapter{\@Alph\c@chapter}}
我将其改为:
\renewcommand\appendix{\par\UTD@appendixtrue
\setcounter{chapter}{0}%
\setcounter{section}{0}%
\gdef\@chapapp{\appendixname}%
\gdef\thechapter{\ }}
这样就删除了字母,但目录中附录后面有一个空白。有得有失。希望有一天有人能找到更好的解决方案。