我想更改参考文献的语言

我想更改参考文献的语言

我正在用荷兰语写论文。在我的参考文献中,两个作者之间使用“and”,我想使用“en”(荷兰语)。我已经查过了,并尝试通过 .bst 文件进行更改,但我的 Latex 文件中没有任何变化...还有其他方法可以更改它吗?

\documentclass[11.5pt,a4paper,twoside,openright]{report}
\usepackage{graphicx}
\usepackage{pdfpages}
\usepackage{array}
\usepackage{caption, setspace}
\usepackage{a4wide}   %text in the middle of the page
\usepackage{tabularx}
\usepackage{multirow}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{import}
\usepackage{sidecap}
\usepackage{emptypage}
\usepackage[bottom]{footmisc}
\usepackage{enumitem}
\usepackage{hyphenat}
\usepackage[toc,page]{appendix}
\usepackage[round]{natbib}
\usepackage[nottoc,notlof,notlot]{tocbibind}
\usepackage[dutch]{babel}
\usepackage{apalike}
\usepackage{textcomp}
\usepackage{float}

\begin{document}
my text

\bibliographystyle{apalike}
{\fontsize{9pt}{1.2pt}\selectfont
\bibliography{library}}

\end{document}

如果我更改 .bst 文件(我将其命名为 apalike-dutch),我会在代码的第 222 行和第 848 行将“and”两次更改为“en”。然后我将其保存在其他 Latex 文件所在的位置并更改\bibliographystyle{apalike}\bibliographystyle{apalike-dutch}。运行我的代码几次后,什么都没有改变。

答案1

要使用您的改编书目样式,请更改以下行

\bibliographystyle{apalike}

\bibliographystyle{apalike-dutch}

相关内容