答案1
定义样式时,fancy
首先要清除正在使用的所有其他标题\fancyhf{}
。
此代码是一个最低限度的指南。
\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}