文章:第二页的页脚错误

文章:第二页的页脚错误

上一个问题。我的信是这样的

\documentclass[a4paper, 11pt]{article}

\usepackage{fontspec}
\usepackage{fancyhdr}


\newcommand{\DocumentTitle}{Motivation Letter}
\newcommand{\Author}{John Smith}

\setmainfont{Times New Roman}
\newfontfamily\hdrfont[ LetterSpace=5.0, WordSpace=1.0, Scale=0.9, Color=FFFFFF ]{Arial}

\usepackage[hmargin=1in,vmargin=0.4in, includehead, includefoot]{geometry}
\setlength{\parindent}{0in}
\linespread{1.2}
\parskip 11pt

\pagestyle{fancy}
\fancyhf{} % clear all header and footers
\setlength{\headheight}{0.0in}
\fancyhead[L]{\hdrfont\textbf{\DocumentTitle} \\ \emph{\Author}}
\fancyhead[R]{\hdrfont\thepage}
\fancyfoot[L]{\hdrfont\textbf{\DocumentTitle} \\ \emph{\Author}}
\fancyfoot[R]{\hdrfont\thepage}

\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

\renewcommand{\today}{ February 16, 2009 }
\begin{document}

{ \vspace*{0.5in} }
\hspace{4.8in}\today
\vspace{0.2in}

\hspace{0.5in}To Whom It May Concern,
\vspace{0.2in}

My Letter

\vspace{0.2in}
\hspace{0.5in}Respectfully,

\vspace{0.1in}
\hspace{0.5in}\Author

\end{document}

PDF 是什么样子的

--------------------------------------- PAGE BEGIN
                                        H
--------------------------------------- HEADER RULE
                                        M1
To Whom It May Concern,---------------- TEXT BEGIN
My Letter
Respectfully,-------------------------- closing
                                        S
John Smith----------------------------- signature
--------------------------------------- TEXT END
                                        M2
--------------------------------------- FOOTER RULE
                                        F
--------------------------------------- PAGE END

第一页看起来还行H=F。从第二页开始F就出奇地小。你有什么想法吗?

这是生成的 PDF(附部分文字):

在此处输入图片描述

答案1

如果你将头部高度设置为一个fancyhdr错误的值(并且它如果你的设置不对(顺便说一下是错的),它就会主动从第二页开始改正,从而破坏你的设置。

实际上,根据您的设置,H 和 F 是不同的:从页面上边距到“动机信”顶部以及从页面下边距到“动机信”基线(而不是底部的“John Smith”)的距离均为 0.4 英寸。

如果你想要更精确的间距,只需这样做

\usepackage[hmargin=1in,top=0.4in, bottom=\dimexpr0.4in+1.2\baselineskip\relax,
  includehead, includefoot,headheight=25pt]{geometry}

在此处输入图片描述

相关内容