不同页面中的页脚位置不同

不同页面中的页脚位置不同

我正在创建带有页眉和页脚的文档。我遇到的问题是无法获得第一页和其他页面的良好视图:设置了不同的间距。请参阅我的代码和图片。

\documentclass[]{article}
\usepackage
[
        a6paper,
        left=2.5cm,
        right=2cm,
        top=2.5cm,
        bottom=2.5cm,
]
{geometry}

\usepackage{graphicx}

\setlength{\headsep}{0.5in}
\usepackage{fancyhdr,lipsum}
\pagestyle{fancy}

\fancyhf{}
\lfoot{My Title \\ \today}
\rfoot{User Guide \\ version 1.0}
\lhead{\includegraphics[width=1cm]{blank.png}}
\rhead{\thepage}
%\setlength{\headsep}{1in}
\renewcommand{\headrulewidth}{0pt}

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

在此处输入图片描述

答案1

或者使用这个新的来替换旧的 \lhead

\lhead{
\begin{picture}(0,0)
\includegraphics[width=1cm]{fig}
\end{picture}
}

不会改变头部高度和身材尺寸。

图片 1在此处输入图片描述

图片 2在此处输入图片描述

答案2

在您的示例中,我将其更改\includegraphics[width=1cm]{blank.png}\rule{1cm}{1cm}。编译后,我在日志文件中发现以下警告。

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

添加headheight=33pt包装选项可消除此问题。如果高度不完全是正方形,geometry则可能需要不同的高度。blank.png

相关内容