我正在使用\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
若要對參考書目樣式執行相同的操作,請參閱: