页码在页面中出现两次

页码在页面中出现两次

我不知道为什么在同一页上会出现两个页码,一个在中间,一个在右边:

\documentclass[a4paper,12pt]{report}
\voffset=-1in

%setting the header
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[LO,LE]{Mohammad Noorani Bakerally}
\fancyhead[RO,RE]{Pattern-Based Development}
\rfoot{\thepage}
\begin{document}
The aim of the application is to create a Sushi plate and show its details.
\end{document}

输出

为什么中间的那个还会出现?

答案1

您需要移除默认的中心脚:

添加

\cfoot{}

相关内容