如何以正确的方式创建附录章节?目前我正在使用以下代码:
\begin{appendix}
\renewcommand{\chaptername}{}
\addcontentsline{toc}{chapter}{Appendices}
\chapter{appendices}\label{ch:appendices}
\section {aaa}
\section {bbb}
\end{appendix}
但我遇到了一个问题!LaTeX 正在将附录验证为内容列表中的 CHAPTER A。我该如何删除 CHAPTER A?
答案1
\appendix
是一个声明而不是一个环境。
我想说的是
\appendix
\chapter*{Appendices}
\markboth{Appendices}{}
\addcontentsline{toc}{chapter}{Appendices}
\renewcommand{\thesection}{A.\arabic{section}}
应该可以解决您的问题。各部分将按编号排序A.1
,A.2
依此类推。