当我使用不带 的标题时fancyhdr
,TeX 很乐意使用\headheight
与文本相同的值,但是当我使用 时fancyhdr
,fancyhdr
会增加\headheight
。
这是一个 MWE。
\documentclass[11pt]{book}
\usepackage[ascii]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[paperheight=9in,paperwidth=6in,left=0.75in,right=1.00in,
top=1.25in,bottom=1.25in]{geometry}
\usepackage{lmodern}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\usepackage{lipsum}
\title{My Book}
\author{Henry Elliott}
\date{\today}
\begin{document}
\maketitle
\chapter{One}
\lipsum
\end{document}
pdflatex 给出了这个警告:
Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 13.59999pt.
We now make it that large for the rest of the document.
This may cause the page layout to be inconsistent, however.
fancyhdr
如果可能的话,如何在使用时保持 \headheight 不变fancyhdr
?