I'm using fancyhdr to create a header with two lines in lhead and two lines in rhead like so,
\documentclass[12pt]{article}
\usepackage[margin=1.0in]{geometry}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\lhead{lhead line 1 \\ lhead line 2}
\rhead{rhead line 1 \\ rhead line 2}
\begin{document}
\lipsum[1]
\lipsum
\end{document}
The problem is:
- On the first page, the distance between the header and the paragraph text doesn't change when a multi-line
\lheador multi-line\rheadis used. However, one subsequent pages, the distance adjusts properly
I've attached pictures showing what I mean.
Notice that there is a difference between the headheight on the different pages. I want the first page header to be like the second, ... page header.


\usepackage[margin=1.0in,headheight=27.18335pt]{geometry}or a larger value forheadheight. – esdd Sep 19 '15 at 17:45