Referências bibliográficas em espanhol e inglês no mesmo documento usando \bibliographystyle{dcu}

Referências bibliográficas em espanhol e inglês no mesmo documento usando \bibliographystyle{dcu}

Escrevi um documento em látex com referências bibliográficas em espanhol e inglês. Queria saber se existe como citar nos dois idiomas. Quer dizer, eu queria citações como:

"Autor1 e Autor2 (ano1)" e

"Autor3 e Autor4 (ano2)"

no mesmo documento.

O código abaixo mostra o que fiz, apenas produz referências em inglês.

\usepackage[spanish]{babel}
\usepackage{natbib}
...
\begin{document}
...
...
...

%-----------------------------------
%   BIBLIOGRAPHY
%-----------------------------------

\label{Bibliography}
\lhead{\textsc{Bibliograf\'ia}} % Change the page header to say "Bibliografía"
\bibliographystyle{dcu} % Use the "dcu" BibTeX style for formatting the Bibliography
\nocite*{}
\bibliography{Bibliography.bib} % The references (bibliography) information are stored in the file named "Bibliography.bib"

\end{document}

Responder1

O modelo está obsoleto. Uma versão atualizada pode ser encontrada em latextemplates.com. Ele utiliza os novos recursos do package biblatex, onde é muito fácil fazer o que quiser.

uzgBiblatexDiferentesIdiomas

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[ngerman,spanish,french,english]{babel}
\usepackage[style=authoryear,autocite=inline]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Wombats are cool \autocite{sigfridsson}

\selectlanguage{french}
Paulo est un canard \autocite{bertram}

\selectlanguage{spanish}
Soy un peng\"uino. \autocite{companion}

\selectlanguage{ngerman}
Ich spreche alle Sprachen \autocite{brandt}
\end{document}

informação relacionada