1

I am working on a document and when using the package \usepackage[spanish]{babel} I get a lot of errors and warnings. If I don't use it everything is fine. The problem is that the references section is in English "References", when I need it to say "Referencias".

Is there any way to just change the name of that section?

The way I place my references is:

\bibliographystyle{ieeetr}
\bibliography{Bibliography}

enter image description here

For example, in this simple code the word references is already in English.

\documentclass{article}
\usepackage{lipsum}

\begin{document}

\cite{ANoteGI} \lipsum[45]

\bibliographystyle{ieeetr} \bibliography{Bibliografia}

\end{document}

Which gives:

enter image description here

I want this but without usin babel:

enter image description here

1 Answers1

1