How to change the natbib language in LaTeX?

2

I'm doing my Master's thesis in LaTeX, and I'm using natbib with mendeley to do the bibliography. However, the final bibliography appears in English. Is there any way to change the default language of natbib or only with package biblatex ?

When I use these commands, I get the error: "Package biblatex Error: File" .bbl 'not created by biblatex. \ begin {document} ". Besides that I use some natbib commands like \ citep and \ citealt which I believe do not work with biblatex, but do not find the corresponding in the package information document.

    
asked by anonymous 01.10.2016 / 19:19

1 answer

1

Good question. I can change the language using BibLaTeX. Below are my minimal .tex and .bib files to get the same result as me. First, I show the .tex file:

\documentclass{article}

\usepackage[backend=bibtex]{biblatex}
\usepackage[portuguese]{babel}

\bibliography{bibliografia} 

\begin{document}

Este texto cita o livro de \cite{Nelder1989}.

\printbibliography

\end{document}

The content of the bibliografia.bib file is as follows:

@book{Nelder1989,
  address = {London},
  author = {McCullagh, P. and Nelder, J. A.},
  biburl = {http://www.bibsonomy.org/bibtex/21236b0d4dcf920ff44d2c578d82bd780/vivion},
  date = {(1989)},
  interhash = {57a5eea9902828a90b76e8e38a420073},
  intrahash = {1236b0d4dcf920ff44d2c578d82bd780},
  keywords = {generalized glm linear models statistics},
  location = {London, UK: Chapman \& Hall / CRC},
  publisher = {Chapman \& Hall / CRC},
  timestamp = {2010-01-10T01:48:50.000+0100},
  title = {Generalized Linear Models},
  year = 1989
}

My result was as follows:

Of course, it would be necessary to adjust the citation settings to fit the style of your thesis or dissertation.

    
01.10.2016 / 19:48