在双面文章类中使用 fancyhdr 避免出现空标题

在双面文章类中使用 fancyhdr 避免出现空标题

我正在使用这个配置作为标题:

\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\arabic{page}}
\fancyhead[LO]{\nouppercase{\rightmark}}% Current section
\fancyhead[RE]{\nouppercase{\leftmark}}% Current subsection

在下面的例子中,直到第 5 页,一切都正常。然后我在左侧标题处有一个空白区域。我该如何修复它?

\documentclass[10pt,a4paper,twoside]{article}
\usepackage{fancyhdr}
\usepackage{lipsum}
\pagestyle{fancy}
\fancyhf{}
\fancyhead{}     
\fancyhead[LO]{\nouppercase{\rightmark}}     
\fancyhead[RE]{\nouppercase{\leftmark}}
\fancyhead[RO]{\thepage}     
\fancyhead[LE]{\thepage}

\title{Title}
\author{Me}
\date{}

\begin{document}

\maketitle
\tableofcontents
\newpage

\section{Section}
\subsection{Subsection}
\lipsum[1-5]
\subsection{Hahahaha}
\lipsum[1-5]
\section{Two}
\subsection{Hihihihi}
\lipsum[1]
\subsection{Blala}
\lipsum[1-3]
\section{QWERTY (bis)}
\subsection{ASDF}
\lipsum[1-3]

\end{document}

相关内容