为什么 fancyhdr 中的子部分位于顶部栏?

为什么 fancyhdr 中的子部分位于顶部栏?

代码

\documentclass{article}

\usepackage{fancyhdr}

\pagestyle{fancy}
\rhead{\textsc{Department}}
\cfoot{\thepage}

\begin{document}

% \section{Objective Data} % nothing at left top when this active

\subsection{Status localis}

Hello world

\end{document}

输出

在此处输入图片描述

预期输出:无0.1 本地状态在左上角的栏中。


左上角的栏目怎么能没有子栏呢?

答案1

只需说\lhead{},即一个空的左页标题,因为这通常用于\leftmark{}打印部分等标题。

\documentclass{article}

\usepackage{fancyhdr}

\pagestyle{fancy}
\rhead{\textsc{Department}}
\lhead{}%
\cfoot{\thepage}

\begin{document}

%\section{Objective Data} % nothing at left top when this active

\subsection{Status localis}

Hello world

\end{document}

相关内容