How to change the language of natbib in Latex?

Asked

Viewed 5,436 times

2

I’m doing my master’s thesis at Latex, and I’m using the natbib with the mendeley to make the bibliography. However, the final bibliography appears in English. Is there any way to change the default language of natbib or just with the package biblatex?


When I use these commands I get the error:"Package biblatex Error: File " ". bbl' not created by biblatex. Begin{Document}". Plus I use some natbib commands like citep and citealt that I think don’t work with biblatex, but I can’t find the corresponding in the package information document.

  • On the net there’s this community which is more specific to deal with matters on Latex.In my TCC I used the overleaf who by the way treated me very well.

2 answers

1

Good question. I can change the language using Biblatex. Below follow my files . tex and . Minimum Bib to get the same result as me. First, I show the file . tex:

\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 contents of the archive bibliografia.bib 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 this:

inserir a descrição da imagem aqui

Of course it would be necessary to adjust the settings of the quotations to suit the style of your thesis or dissertation.

0

I had a problem: When I inserted the citation in an article in Portuguese, he kept the separation of multiple authors with "and" instead of "e". For example: "According to Salsbury and Mhas-Kar (2013)..." instead of "Salsbury and Mhas-Kar (2013)". The solution was to change the function inside the <filename_name> file. Bst, according to the image. Maybe the solution will help others.

inserir a descrição da imagem aqui

Browser other questions tagged

You are not signed in. Login or sign up in order to post.