目录中心的标题句没有页码

目录中心的标题句没有页码

我正在使用\documentclass[12pt,a4paper,oneside]{report}文档类型\tableofcontents来生成目录。我想要如图所示的目录。在此处输入图片描述 具体来说,我希望“学习材料”、“实用手册”和“其他支持文件”等句子出现在页面的中心,以及没有页码的目录。为了吸引人们对核心的注意,上述三个标题使用红色突出显示。我希望它们本身是黑色的。

答案1

尝试这个

\documentclass{report}

\begin{document}
\tableofcontents

\addtocontents{toc}{\begin{center}\Large\bfseries Study material\end{center}}

\chapter{Introduction}

\chapter{Another}

\addtocontents{toc}{\begin{center}\Large\bfseries Practical manual\end{center}}

\chapter{Practical introduction}

\end{document}

调整字体以适合。

\addtocontents{<file>}{<text>}宏将添加到<text><file>的情况下toc用于目录文件的。

相关内容