我最近正在完成我的论文。我在删除参考文献章节的页眉时遇到了问题。它只能删除 2 页,而不是全部 3 页。为什么?
代码:
\documentclass[12pt]{book}
\usepackage{fancyhdr}
\fancypagestyle{thesis}{%
\fancyhf{}% Clear header and footer
\fancyfoot[C]{\thepage}
\fancyhead[C]{\textsl{\rightmark}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1}}
\renewcommand{\headrulewidth}{0.4pt}% Line at the header visible
\renewcommand{\footrulewidth}{0pt}% Line at the footer invisible
}
\pagestyle{thesis}
Some text! Blalal
\clearpage
\pagestyle{plain}
\bibliographysection
其中\bibliographysection
定义如下:
\newcommand{\bibliographysection}{%
\section{References}%
\pagestyle{plain}
\sloppy
\printbibliography[heading=none]
\fussy%
}