目录两页上的标题

目录两页上的标题

我尝试在大多数页面中添加页眉,所有页面都有效,但目录似乎不起作用。只有第二页显示页眉(第一页没有)。

我的主文件中的代码

\usepackage{fancyhdr}
\setlength{\headheight}{34pt}
\pagestyle{fancy}
\fancyhf{}
\rhead{\includegraphics{Images/logo.png}}
\lhead{\textit{\titlename}}
\cfoot{\thepage}

单独的 toc.tex 文件

\renewcommand{\contentsname}{\Ultralight\color{cyan} Inhoudsopgave}
\setcounter{tocdepth}{2}
\tableofcontents
\thispagestyle{fancy}

页眉只会显示在目录的第二页上,如何才能让它也显示在首页上?页脚确实会显示。

答案1

目录排版为带星号的章节,这就是为什么页面样式为plain而不是 的原因fancy。请参阅fancyhdr如何使用 重新定义页面样式的文档\fancypagestyle{plain}{...}

相关内容