我正在研究我的论文,其中一个要求就是在页码旁边放一个点(位于右上角)。
这是我目前正在使用的代码。它做了我想要的一切,除了点......
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % sets both header and footer to nothing
\renewcommand{\headrulewidth}{0pt} %Deletes the horizontal bar
\fancyhead[R]{\thepage} %puts the page number to the right
有人可以帮我解决我的问题吗?
提前谢谢。
答案 0 :(得分:1)
使用类似\ hspace的内容到\ thepage:
\fancyhead[R]{\thepage \hspace{1 mm} . } %adjust 1 mm to any value as needed
答案 1 :(得分:1)
只需将点放在\thepage
;
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[R]{\thepage.}
\begin{document}
See the page number in the top-right corner.
\end{document}
结果: