标题 fancyhdr 与目录之间的冲突/重叠

标题 fancyhdr 与目录之间的冲突/重叠

目录的第二页与页眉相冲突。

ToC 第二页上的冲突示例

\documentclass[letterpaper, xcolor=table]{report}
\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}
\usepackage{fancyhdr}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
%header
\fancypagestyle{plain}{
    \renewcommand\headrulewidth{1pt}
    \fancyhf{}
    \fancyhead[L]{\includegraphics[width=0.3\textwidth]{logo.png}}
    \fancyhead[R]{My title}
    \fancyfoot[C]{\thepage}
    \renewcommand{\footrulewidth}{0.4pt}
}

\begin{document}
    
\newcommand{\HRule}{\rule{\linewidth}{1mm}}

\newpage

\newpage
\tableofcontents
\setcounter{page}{0}

\renewcommand{\arraystretch}{1.5}

~
\thispagestyle{plain}
%recommencer la numérotation des pages à "1"
\setcounter{page}{0}

\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}
\chapter{One}
\section{One}
\section{two}
\section{three}

\end{document}

我尝试过更改几何设置,但页眉和目录一起移动,因此问题仍然存在。我还尝试过更改标题间距,但看不到任何变化。

相关内容