删除页脚而不删除页眉

删除页脚而不删除页眉

我使用 fancyhdr 创建了页眉和页脚。我想从特定页面中删除页脚而不触及页眉。我尝试更改页面样式,但没有任何效果。有什么想法吗?

答案1

定义仅清除页脚的样式:

\documentclass{book}
\usepackage{kantlipsum} % for mock text
\usepackage{fancyhdr}
\pagestyle{fancy}

% Let's populate headers and footers
% just to show the effect
\fancyhf{}
\fancyhead[R]{Right header}
\fancyhead[C]{Center header}
\fancyhead[L]{Left header}
\fancyfoot[R]{Right footer}
\fancyfoot[C]{Center footer}
\fancyfoot[L]{Left footer}

% This is what you really need to add
\fancypagestyle{nofooter}{%
  \fancyfoot{}%
}

\begin{document}

\mainmatter
\chapter{Title}

\kant[1-4]

\thispagestyle{nofooter}

\kant[5-8]

\end{document}

您会看到第二页只出现了页眉,但第三页又出现了页脚。

相关内容