答案1
在以下示例中,我使用scrpage2
包(KOMA 脚本的一部分)为目录和文档的其余部分定义不同的页面样式集。您可能需要根据需要(您未指定)调整“文档其余部分”页眉和页脚。还请注意,您在注释(documentclass extarticle
)中提供的信息至关重要,因为在您的情况下,没有命令的类\chapter
需要手动强制thispagestyle{scrplain}
第一个目录页。
\documentclass{extarticle}
\usepackage[automark]{scrpage2}
\pagestyle{scrheadings}
\begin{document}
% In the following code, \rule{8cm}{1cm} stands for the header of the first ToC page
% (with page style scrplain), \rule{4cm}{1cm} for the header of the other ToC pages
% (with page style scrheadings)
\clearscrheadfoot
\chead[\rule{8cm}{1cm}]{\rule{4cm}{1cm}}
\cfoot{\pagemark}
\setlength{\headheight}{36pt}
\thispagestyle{scrplain}
\tableofcontents
% Redefine scrheadings and scrplain for the rest of the document
\clearpage
\clearscrheadfoot
\chead{\headmark}
\cfoot{\pagemark}
\setlength{\headheight}{12pt}
\section{foo}
% Force a page break in the ToC
\addtocontents{toc}{\protect\clearpage}
\section{bar}
\end{document}