我正在使用下一个代码片段在右上角设置页码。对我来说,它工作正常,但我想将页码放置在距顶部边缘 15 毫米的位置。可以吗?谢谢。
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{} \chead{} \rhead{\normalsize\thepage}
\lfoot{} \cfoot{} \rfoot{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{%
\fancyhf{} % clear all header and footer fields
\fancyhead[RE,RO]{\normalsize \thepage} % Even page, Odd page; Right, Left, Center
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
}