从参考书目中排除页脚

从参考书目中排除页脚

我在编写的文档中使用fancyhdr,我想做的是只在文档主体中放置编号(放置在页脚中)。而不是在参考书目中。换句话说,我只想从参考书目涵盖的页面中删除页脚(并且只删除页脚,而不是页眉)。我该如何实现?

我使用的代码如下:

\documentclass{article}
\usepackage{cite}
\usepackage[a4paper]{geometry}
\usepackage{fancyhdr}
\usepackage{amsmath}
\usepackage{url}
\usepackage[hidelinks=true]{hyperref}
\usepackage{harvard}
\usepackage[pdftex]{graphicx}
\usepackage{float}
\usepackage[table]{xcolor}
\usepackage{color}


\pagestyle{fancy}
\fancyhf{}
\chead{Header of every page}
\cfoot{\footnotesize Page \thepage\ of \pageref{EndDocument}}

\renewcommand{\labelenumi}{\arabic{enumi}.}
\renewcommand*\thesection{\arabic{section}}
\renewcommand{\thefigure}{\thesection.\arabic{figure}}
\renewcommand{\thetable}{\thesection.\arabic{table}}
\newcommand{\harvard}{{\sf harvard}}
\newcommand{\Harvard}{{\sf Harvard}}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}

\begin{document}
\bibliographystyle{apsr}
\fontsize{11}{12}
\selectfont


\input{./title.tex}
\tableofcontents
\pagebreak

Here is the main body of the document. I think there is no need to place it.

\label{EndDocument}
\newpage 
\bibliography{report}
\end{document}

答案1

刚刚发行\fancyfoot{} \newpage。这将清除页面样式中从该页面开始的(整个)页脚fancy,同时仍保留页眉。在这种情况下,\cfoot{}也足够了。

相关内容