更改章节开头的页脚

更改章节开头的页脚

我希望所有页面的页脚在右侧均为“第 X 页”。我使用了以下代码:

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % clear all header and footer fields
\fancyhead[R]{\leftmark}
\fancyfoot[R]{\footnotesize Página N$^\circ$ \thepage\ }
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}

它适用于除章节开头之外的每一页。

答案1

每个章节的第一页都会plain在内部获取页面样式;您可以通过重新定义普通样式来更改此行为:

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % clear all header and footer fields
\fancyhead[R]{\leftmark}
\fancyfoot[R]{\footnotesize Página N$^\circ$ \thepage\ }
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
% redefinition of the plain style:
\fancypagestyle{plain}{%
\fancyhf{} % clear all header and footer fields
\fancyfoot[R]{\footnotesize Página N$^\circ$ \thepage\ }
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}

相关内容