我想知道是否有任何方法可以排除附录中的各个章节,以便目录中只显示一行标记为“附录”?
我使用 begin{appendices} 是因为我想将它与主文档分开。我也尝试使用 \chapter*,但我想将附录 A 标签保留在附录标题上方。
\begin{document}
\tableofcontents
\begin{appendices}
\chapter{sometext}
\chapter{somemoretext}
\end{appendices}
\end{document}
答案1
您可以使用以下设置:
\documentclass{report}
\usepackage{appendix}
\begin{document}
\tableofcontents
\begin{appendices}
\cleardoublepage
\addcontentsline{toc}{chapter}{Appendices}% Insert reference to Appendices in ToC
\renewcommand{\addcontentsline}[3]{}% Remove ability to add content to ToC
\chapter{sometext}
\chapter{somemoretext}
\end{appendices}
\end{document}
这个想法是添加附录在环境开始时手动添加到 ToC appendices
(在文本中或在序言中),并通过执行\addcontentsline
无操作来删除添加额外内容的能力。它将吞噬其三个参数并且不执行任何操作。