Fancyhdr 报告:在章节第一页格式化页码

Fancyhdr 报告:在章节第一页格式化页码

在我的.tex文档中我使用以下fancyhdr设置:

\usepackage{fancyhdr}
\usepackage{lastpage}

\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{Another Text}
\fancyhead[R]{Some Text}
\rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}

这意味着页脚上的页码将显示为:

在此处输入图片描述

但在目录页和章节页等页面上,页码显示为:

在此处输入图片描述

那么我该如何设置一个统一的方式来显示页码呢?

答案1

为了解决这个问题你还应该做以下事情:

\fancypagestyle{plain}{
    \fancyhf{}
    \rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}
}

产生以下奇特的设置:

\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{Univercity Of Peireus}
\fancyhead[R]{Desyllas Dimitrios - Ioannis Anagnwstou}
\rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}

\fancypagestyle{plain}{
    \fancyhf{}
    \rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}
}

相关内容