我希望将页码放在右上角。我尝试这样做
\documentclass[12pt]{article}
\usepackage{fancyhdr}
\begin{document}
\lhead{}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}
My text.
\end{document}
数字仍然保持默认设置 - 底部中心。我做错了什么?
答案1
\pagestyle{fancy}
仅当发出以下命令时才会强制执行“花哨”的设置:
\documentclass[12pt]{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[R]{\thepage}
\begin{document}
My text.
\end{document}
我使用了 提供的“现代”命令fancyhdr
,它们更加灵活;\fancyhf{}
您可以一次清空所有字段,然后可以根据需要再次填充它们。
答案2
尝试一下这个:
\documentclass[12pt]{article}
\pagestyle{myheadings}
\begin{document}
My text be here!!
\end{document}