如何更改引文标注中“and”连词的语言?

如何更改引文标注中“and”连词的语言?

我正在使用\usepackage[authoryear]{natbib}它来记录我的参考书目,但是因为我是巴西人,所以我想将使用and时改为。\citet{}e

例如,Brunnermeier and Sannikov (2014)我希望显示 而不是Brunnermeier e Sannikov (2014)。有人知道如何更改吗?

babel包未翻译natbib

答案1

以下是使用该包进行操作的方法apacite

\begin{filecontents}{\jobname.bib}

@article{SchmittMunn2002,
    Author = {Cristina Schmitt and Alan Munn},
    Journal = {Linguistic Variation Yearbook},
    Pages = {185-216},
    Title = {The syntax and semantics of bare arguments in {Brazilian Portuguese}},
    Volume = {2},
    Year = {2002}}
\end{filecontents}
\documentclass{article}
\usepackage[brazilian]{babel}
\usepackage[natbibapa]{apacite}
\bibliographystyle{apacite}

\renewcommand\BBAA{e}
\renewcommand\BBAB{e}

\begin{document}

\citet{SchmittMunn2002}
\bibliography{\jobname}
\end{document}

代码输出

要使用参考书目样式执行相同操作,apalike请参阅:

相关内容