在目录中,如何在章节列表之前添加标题“章节”

在目录中,如何在章节列表之前添加标题“章节”

我有以下内容目录: 在此处输入图片描述

有没有办法在章节列表前添加标题“章节”,就像在附录列表前显示“附录”一样?

在此先感谢您的帮助。

答案1

使用\addtocontents{toc}{Your title\protect\par},这将添加类似的行。

我将字体设置留给 OP 选择

\documentclass{book}
\usepackage[toc]{appendix}
\begin{document}
\tableofcontents
\addtocontents{toc}{\protect\Huge\bfseries Chapters\protect\par}


\chapter{First}

\chapter{Second} 

\begin{appendices}

\chapter{Appendix Stuff 1}
\end{appendices}

\end{document}

在此处输入图片描述

相关内容