我已经找到许多关于如何更改章节页眉以及如何更改目录中章节标题的外观的答案,但我找不到如何在书籍类中更改目录本身的页眉。
如有任何建议,我将非常感激。
答案1
尝试按照以下思路操作。请注意,目录页眉通常与章节页眉相同。
% tocheadprob.tex SE 567005
\documentclass{book}
\begin{document}
\pagestyle{headings} %% the default for book
\pagestyle{plain} %% use this style for the ToC
\tableofcontents
\pagestyle{headings} %% back to the default style for chapters
\chapter{One}
\section{First}
\addtocontents{toc}{\protect\clearpage} %% just to have a 2 page ToC
\chapter{Two}
\end{document}
使用您喜欢的任何页面样式。