Lo estoy usando \usepackage[authoryear]{natbib}
para mi bibliografía, pero como soy brasileño, me gustaría cambiar el and
uso \citet{}
a e
.
Por ejemplo, en lugar de Brunnermeier and Sannikov (2014)
, me gustaría mostrar Brunnermeier e Sannikov (2014)
. ¿Alguien sabe una manera de cambiar eso?
El babel
paquete no se traduce natbib
.
Respuesta1
Así es como lo harías usando el apacite
paquete.
\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}
Para hacer lo mismo con el apalike
estilo de bibliografía ver: