答案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}