使用 \natbib 时更改参考文献部分的标题

使用 \natbib 时更改参考文献部分的标题

我有一个关于包的问题\natbib。每当我生成参考文献时,包都会自动添加“参考文献”标题,如下面的屏幕截图所示。我想知道是否可以创建一个带有自定义标题的编号部分(即强制包不自动创建“参考文献”部分)

\usepackage{natbib}
.
.
.
\section{Section}
\bibliographystyle{apalike}
\bibliography{bib}

在此处输入图片描述

答案1

您可以查看\thebibliographywith的内容\meaning\thebibliography,它调用\bibsection,以及(在文章类中)\meaning\bibsection使用\section *and \refname

因此更改\refname为“随便你”,然后复制粘贴 的内容\bibsection,用\section *替换\section

\renewcommand{\refname}{Whatever you want}
\makeatletter
\renewcommand{\bibsection}{%
   \section{\refname%
            \@mkboth{\MakeUppercase{\refname}}{\MakeUppercase{\refname}}%
   }
}
\makeatother

完成工作。

相关内容