花式标题和章节标题之间的距离

花式标题和章节标题之间的距离

问题描述

当我在页眉中使用两行时,我花哨的页眉底线与第一节标题之间的距离与页眉与所有后续节标题之间的距离不同。看起来所有后续页面的内容都比第一页向下移动了一点。

复制问题的代码

\documentclass[a4paper,12pt]{article}
\usepackage[margin=2.5cm]{geometry} %layout
\usepackage{fancyhdr}   
\pagestyle{fancy}
\fancyhf{}
\rhead{Some text \\ some more text}

\begin{document}
\section*{Section 1}
\newpage
\section*{Section 2}
\end{document}

答案1

您将在日志文件中找到消息

Package Fancyhdr Warning: \headheight is too small (12.0pt): 
 Make it at least 27.05003pt.
 We now make it that large for the rest of the document.
 This may cause the page layout to be inconsistent, however.

解释问题及其后果,以及如何解决问题。

在您的情况下,添加headheight=27.05003pt到包的选项中geometry,页面布局将与所有页面(包括第一页)保持一致。(如果没有包geometry,请使用\setlength\headheight{27.05003pt}。)

\documentclass[a4paper,12pt]{article}
\usepackage[margin=2.5cm,headheight=27.05003pt]{geometry} %layout <<<<<<<<<<<
\usepackage{fancyhdr}   
\pagestyle{fancy}
\fancyhf{}
\rhead{Some text \\ some more text}
\begin{document}
\section*{Section 1}
\newpage
\section*{Section 2}
\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容