如何更改参考书目的字体,且不在字体前面出现多余的文字?

如何更改参考书目的字体,且不在字体前面出现多余的文字?

我想更改参考书目的字体(使用包natbib)。我找到了一些解决方案这里。它们对我有用,但文本大小(例如:\small10pt)开始作为参考书目之前的文本出现。我想删除此文本。解决方案 1:

{\footnotesize small
\bibliography{references}}

解决方案 2:

\def\bibfont{\footnotesize 10pt}

最小代码:

\documentclass[a4paper,12pt, english]{article}

\usepackage{natbib}
\bibliographystyle{abbrvnat}
\setcitestyle{authoryear,open={(},close={)}}

\usepackage[nottoc]{tocbibind}

\begin{document}
\tableofcontents
\newpage
\section{Intoduction}
\citep{Moran2008}.
{\footnotesize small
\bibliography{references}}
\end{document}

输出文件的一部分:

1 简介

(Moran 等人,2008 年)。小

参考书目

相关内容