ich verwende \usepackage[authoryear]{natbib}
für meine Bibliographie, aber da ich Brasilianer bin, möchte ich das and
bei Verwendung \citet{}
in ändern e
.
Beispielsweise Brunnermeier and Sannikov (2014)
möchte ich statt anzeigen Brunnermeier e Sannikov (2014)
. Weiß jemand, wie man das ändern kann?
Das babel
Paket übersetzt nicht natbib
.
Antwort1
So würden Sie es mit dem apacite
Paket machen.
\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}
Um dasselbe mit dem apalike
Bibliografiestil zu tun, siehe: