2

i'm using \usepackage[authoryear]{natbib} for my bibliography, but as i am brazilian, i'd like to change the and when using \citet{} to e.

For example, instead of Brunnermeier and Sannikov (2014), i would want to display Brunnermeier e Sannikov (2014). Does someone know a way to change that?

The babel package does not translate natbib.

Mico
  • 506,678

1 Answers1

6

Here's how you would do it using the apacite package.

\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}

output of code

To do the same thing with the apalike bibliography style see:

Alan Munn
  • 218,180