如何将页眉放在页边距内?

如何将页眉放在页边距内?

我必须创建一份遵循以下准则的文档:

“边距必须至少设置为¾”(1.87厘米);

您的姓名必须出现在页面的设定边距之外,即每页的右上角;”

我还被告知,除了我的名字之外,我还应该在页眉的左侧和中间放置其他内容。

我本来计划用 来做这件事fancyhdr,例如:

\documentclass[12pt,letterpaper]{article}

%Set the margins
%I have no idea what headheight=15pt does, but it makes an error go away.
\usepackage[margin=1.87 cm, headheight=15pt]{geometry} 

%Customizing the header
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt} % remove lines as well
\rhead{Canageek}
\chead{B.Sc (Honours Chemistry)}
\lhead{PIN: 314159}
%End footer

\begin{document}
Scholarship application that will give me lots of money.
\end{document}

但这会将页眉放在页边距内,我认为这不符合指南的要求。具体来说,字母顶部距离页面顶部 7 毫米,字母底部距离页面顶部 1 厘米。

在有人指出这一点之前,我知道 0.75 英寸不等于 1.83 厘米,加拿大政府里有人不懂数学。

答案1

当我运行你的代码时,出现错误

Package Fancyhdr Warning: \headheight is too small (12.0pt): 
 Make it at least 14.49998pt.
 We now make it that large for the rest of the document.
 This may cause the page layout to be inconsistent, however.

被扔出去。

为了纠正它,使其headheight稍微大一些,如

\usepackage[margin=1.87 cm,headheight=18pt]{geometry}.

我还进行了调整headsep以减少上面的一些空间。

\documentclass[12pt,letterpaper]{article}

%Set the margins
\usepackage[margin=.75in,showframe,headheight=18pt,headsep=\baselineskip]{geometry}

%Customizing the header
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt} % remove lines as well
\rhead{Canageek}
\chead{B.Sc (Honours Chemistry)}
\lhead{PIN: 314159}
%End footer

\begin{document}
Scholarship application that will give me lots of money.
\end{document}

这里,showframe仅用来显示边界。

更新

从评论中可以看出,您想在文本区域内包含头部和脚部。这可以通过在几何选项中添加includehead和来实现。includefoot

\documentclass[12pt,letterpaper]{article}

%Set the margins
\usepackage[margin=.75in,showframe,headheight=15pt,headsep=\baselineskip,includehead,includefoot]{geometry}

%Customizing the header
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt} % remove lines as well
\rhead{Canageek}
\chead{B.Sc (Honours Chemistry)}
\lhead{PIN: 314159}
%End footer

\begin{document}
Scholarship application that will give me lots of money.
\end{document}

在此处输入图片描述

附注:如果您不想要边注,您可以将其添加marginparwidth=0pt,marginparsep=0pt,到几何选项中。

相关内容