私は参考文献に を使用していますが、私はブラジル人なので、を使用するときに\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
参考文献スタイルで行うには、次を参照してください。