如何将页眉移至页面最顶部?

如何将页眉移至页面最顶部?

使用页面几何如下:

\geometry{a4paper,inner=12mm,outer=10mm,top=15mm,bottom=15mm,footskip=5mm}%

标头代码:

\rhead{\color{green(munsell)}\normalsize{Visit Summary}}%
\lhead{\color{green(munsell)}\normalsize{Visit Index}}%

标题是使用 设置的fancyhead

可以在页面的这个位置设置标题。

想要将标题稍微向上一点,就像这张图一样。

答案1

修改该top值将使标题向上或向下移动:

\documentclass{article}

\usepackage{xcolor}
\usepackage{geometry}
\geometry{a4paper,inner=12mm,outer=10mm,top=12.5mm,bottom=15mm,footskip=5mm}%

\usepackage{fancyhdr}
\pagestyle{fancy}
\rhead{\color{green}\normalsize{Visit Summary}}% 
\lhead{\color{green}\normalsize{Visit Index}}%

\usepackage{lipsum}

\begin{document}

\section{title}

\lipsum\lipsum

\end{document}

相关内容