如何将页码置于页面的右上角,同时每边使用 0.5 英寸的边距?

如何将页码置于页面的右上角,同时每边使用 0.5 英寸的边距?
\documentclass[a4paper, 11pt]{article}

%Paragraph jumps and indentation
\setlength{\parindent}{1.27cm}


%Border
\usepackage[left=0.5in, right=0.5in, top=0.5in, bottom=0.5in]{geometry}

\begin{document}
hello
\end{document}

我尝试使用 fancyhdr;但是,页码移到了最右上角,几乎看不见。我知道边距很小,但我仍然希望通过将其移到更低的位置来使其可见。请问我该怎么做?我添加了使用 fancy hdr 时得到的输出图像。

在此处输入图片描述

答案1

使用\raisebox{<negative distance>}{<text>}

A

添加showframe以显示边距。

\documentclass[a4paper, 11pt]{article}

%Paragraph jumps and indentation
\setlength{\parindent}{1.27cm}

%Border
\usepackage[left=0.5in, right=0.5in, top=0.5in, bottom=0.5in, showframe]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\raisebox{-0.8\headsep}{\thepage}} % lowering the right header
\renewcommand{\headrulewidth}{0pt}

\begin{document}
    hello
\end{document}

相关内容