我试图在章节标题中的附录编号前添加单词“附录”。尝试\renewcommand{\thesection}{Appendix \Alph{section}:}
成功,但会弄乱目录 - 章节名称打印在章节编号上方:
最小工作示例:
\documentclass{article}
\begin{document}
\tableofcontents
\section{Intro}
content
\appendix
\renewcommand{\thesection}{Appendix \Alph{section}:}
\section{Test 1}
content
\section{Test 2}
content
\end{document}
非常感谢您的任何建议。
答案1
您可以加载appendix
包并使用appendices
环境。有两种方法可以做到这一点,并且目录和标题还有其他好处。有关详细信息,请参阅文档第 3-4 页。