fancyhdr 首页页码

fancyhdr 首页页码

我使用以下命令在右上角显示页码,距离纸张0.5顶部和右边缘分别显示英寸和英寸。如何更新下面提到的命令以获取该设置。1

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyheadoffset{0cm}
\renewcommand{\headrulewidth}{0pt} 
\renewcommand{\footrulewidth}{0pt}
\fancyhead[R]{\thepage}
\fancypagestyle{plain}{%
\fancyhf{}%
\fancyhead[R]{\thepage}%
}

答案1

虽然您有很多选择,例如eso-pic等等,但这里有一个带有background包的选择。

\documentclass[12pt]{article}
\usepackage{background}
\usepackage{kantlipsum}
\backgroundsetup{
        position=current page.north east,
        nodeanchor=north east,
        hshift=-1in,            
        vshift=-0.5in,
        angle=0,
        firstpage=true,
        scale=1,
        opacity=1,
        color=black,
        contents={\thepage},
}
\pagestyle{empty}
\begin{document}
  \kant[1-100]
\end{document}

在此处输入图片描述

相关内容