删除目录中几页的标题

删除目录中几页的标题

我的目录正在移至 3-4 页域,我注意到这会导致出现标题和页码。这是我的代码

\documentclass[12pt]{extarticle}

%Indholdsfortegnelse
\renewcommand{\contentsname}{Indholdsfortegnelse}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\lhead{Gruppe BA3-1-E20}
\chead{Aalborg Universitet}
    %DETTE ER BILLED TIL HEADER%
    \rhead{\includegraphics[width=3cm,height=1.5cm]{Billeder/AAU lille billed.png}}

\begin{document}

\newgeometry{top=20mm, bottom=20mm, right=20mm, left=20mm}
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\cleardoublepage

\end{document}

这种方法可以删除两页上的页眉和页码,但如何才能删除所有页面上的页眉和页码,而不管目录的长度如何?

答案1

使用\pagestyle{empty}而不是然后在之后\thispagestyle{empty}设置您想要的主要文本的页面样式或您需要的主要文档的任何页面样式。\cleardoublepage\pagestyle{fancy}

相关内容