BibTeX, biblatex and biber ⇒ Authors separated by different keyword in bibliography
Authors separated by different keyword in bibliography
In the .bib files authors are separated by the keyword 'and'.
In the file generated by latex the authors in the citations are also separated by 'and'. As the document I am producing is in Portuguese I needed authors to be separated by the 'e' keyword instead.
I am using babel package in Portuguese but it makes no difference on the citations.
Any lights on how I can do this?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Authors separated by different keyword in bibliography
Authors separated by different keyword in bibliography
I am now using biblatex and babel with the portuguese option.
Code: Select all
\usepackage[portugues]{babel}
\usepackage[bibstyle=authoryear-comp, citestyle=authoryear-comp, hyperref=true, sorting=nyt, sortcites=true]{biblatex}
But upon building the .pdf it all remains the same. Authors in the bibliography are separated by the and keyword.
Any lights why?