大页眉和页边距

大页眉和页边距

我试图插入一个大页眉,但它会推文本和页脚。

使用短标题我得到这个:

好的

但是当我增加页眉大小时,文本和页脚会移动。

坏的 梅威瑟:

\documentclass[headheight=24pt]{article}
\usepackage[showframe]{geometry}
\usepackage{fancyhdr}
\renewcommand{\headrule}{}
\pagestyle{fancy}
\fancyhf{}
\chead{
\vspace{.5cm}
Header
\vspace{.5cm}
}
\cfoot{
Footer
}
\begin{document}
First page text\footnote{first page footnote}
\newpage
\end{document}

答案1

您应该从 MWE 收到两条警告消息:

LaTeX Warning: Unused global option(s): [headheight=24pt].

Package Fancyhdr Warning: \headheight is too small (12.0pt): Make it at least 40.45273pt.

要解决第一个问题,请删除该[headheight=24pt]选项。它没有使用,而且 24pt 仍然太小,正如第二个警告告诉我们的那样。要删除第二个警告,请添加\setlength{\headheight}{40.5pt}到您的序言中。

在此处输入图片描述

完成 MWE:

\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{fancyhdr}
\setlength{\headheight}{40.5pt}
\renewcommand{\headrule}{}
\pagestyle{fancy}
\fancyhf{}
\chead{
\vspace{.5cm}
Header
\vspace{.5cm}
}
\cfoot{
Footer
}
\begin{document}
First page text\footnote{first page footnote}
\newpage
\end{document}

相关内容