删除标准页码位置,并添加新类型的页码显示

删除标准页码位置,并添加新类型的页码显示

我正在尝试摆脱 LaTeX 文档中的自动页码。我将其用作article文档类,我认为页码会自动包含在这里。但我想使用这个页脚来代替这个:\rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}

我的文档页面底部

如您所见,我的页码重复了。我该如何解决这个问题?

答案1

定义样式时,fancy 首先要清除正在使用的所有其他标题\fancyhf{}

F

此代码是一个最低限度的指南。

\documentclass[12pt,a4paper]{article}

\usepackage{lastpage}
\usepackage{fancyhdr}
\usepackage{kantlipsum} % dummy text

\fancyhf{} %clear all fancy headers
\fancyfoot[R]{Page \thepage\ of \pageref{LastPage}} 
\renewcommand{\headrulewidth}{0pt} % no rule
\pagestyle{fancy} % apply the style fancy

\begin{document}

    \section{Section A}
    
    \kant[4-8]      
    
    \section{Section BC}    
    \kant[2-5]      

\end{document}

相关内容