参照の言語を変更したい

参照の言語を変更したい

私はオランダ語で論文を書いています。参考文献では 2 人の著者の間に「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" を 2 回 "en" に変更します。次に、他の Latex ファイルと同じ場所に保存し、\bibliographystyle{apalike}に変更します\bibliographystyle{apalike-dutch}。コードを数回実行した後、何も変わりませんでした。

答え1

適応した参考文献スタイルを使用するには、次の行を変更します。

\bibliographystyle{apalike}

\bibliographystyle{apalike-dutch}

関連情報