删除参考部分的标题

删除参考部分的标题

我最近正在完成我的论文。我在删除参考文献章节的页眉时遇到了问题。它只能删除 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%
}

在此处输入图片描述

相关内容