log 里有警告,(因为图片较高导致)`\headheight` 太「矮」了,页眉被撑下来了。
log 警告:
```
Package Fancyhdr Warning: \headheight is too small (12.0pt):
Make it at least 67.61833pt.
We now make it that large for the rest of the document.
This may cause the page layout to be inconsistent, however.
```
可以根据警告里的提示把 `\headheight` 改得足够大,也可以用 `\smash` 忽视图片的高度。
```tex
\fancyhead[L]{\smash{\usebox{\mygraphic}}}
```
------
一些解释
1) 如果不用 `fancyhdr`,每页页眉中的图片都会下伸,当图片够高时就会和版心文字重合。示例如下
```tex
\documentclass{article}
\usepackage[pass, showframe]{geometry}
\usepackage{mwe}
\makeatletter
\def\@oddhead{\includegraphics[width=3cm]{example-image}}
\makeatother
\begin{document}
\lipsum[1]
\newpage
\lipsum[1]
\end{document}
```
2) 用了 `fancyhdr` 后,它会在第一次遇到「页眉实际高度大于 `\headheight`」后,修改 `\headheight` 的值。但此时第一页的页眉已经输出,这就造成第一页和后续页的不一致。这种不一致,在 log 警告信息中也提到了。
示例如下
```tex
\documentclass{article}
\usepackage[pass, showframe]{geometry}
\usepackage{mwe}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[L]{\includegraphics[width=3cm]{example-image}}
\begin{document}
\lipsum[1]
\newpage
\lipsum[1]
\end{document}
```
3) 整个问题和「双栏」无关。
一周热门 更多>