I'm using LaTeX for the first time and I'm having some problems with the citations. Specifically, I have to use IEEE citation style in Spanish, and websites are giving me headaches. I would like to achieve something similar to this:
i.e. print a website reference with no authors, title enclosed in double quote marks, website's name in italics, year of publication and [Online]. Avalilable: should be equivalent to [En línea]. Disponible en:. However, right now I'm using \usepackage[style=ieee]{biblatex} and \usepackage[spanish]{babel}, and this is the result I'm getting, totally different to what I was expecting:
This is my .bib file:
@electronic{freno_disco,
title = {{Freno de disco}},
organization = {{Wikipedia}},
url = "https://es.wikipedia.org/wiki/Freno_de_disco",
year = 2016,
urldate = {2016-06-27}
}
And a MWE:
\documentclass [11pt]{article}
\usepackage[spanish]{babel}
\usepackage{csquotes}
\usepackage[style=ieee]{biblatex}
\addbibresource{example.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
I've tried a lot of different things and I couldn't get any close to the expected result. I don't mind replacing biblatex with bibtex, or modifying the IEEE style file, but I would need some instructions on how to change it. I'm using Overleaf with XeLaTeX. If you need more info, please ask me.
Thank you in advance!



