bibtex ordenar en orden alfabético con href

bibtex ordenar en orden alfabético con href

Tengo lo siguiente en mi archivo references.bib.

@Misc{ref1,
  Title                    = {\href{http://www.ref1.com}{aaa}}
}

@Misc{ref2,
  Title                    = {\href{http://www.ref2.com}{ccc}}
}

@Misc{ref3,
  Title                    = {\href{http://ref3.com}{bbb}}
}

¿Cómo puedo ordenar la bibliografía en bibtex para que sea la siguiente?

[1] aaa
[2] bbb
[3] ccc

Respuesta1

Puede agregar un keycampo que se utiliza para ordenar:

@Misc{ref1,
  key = {aaa},
  Title = {\href{http://www.ref1.com}{aaa}}
}
@Misc{ref2,
  key = {ccc},
  Title = {\href{http://www.ref2.com}{ccc}}
}
@Misc{ref3,
  key = {bbb},
  Title = {\href{http://ref3.com}{bbb}}
}

Aquí hay un ejemplo completo, filecontents*solo para hacerlo autónomo.

\begin{filecontents*}{\jobname.bib}
@Misc{ref1,
  key = {aaa},
  Title = {\href{http://www.ref1.com}{aaa}}
}
@Misc{ref2,
  key = {ccc},
  Title = {\href{http://www.ref2.com}{ccc}}
}
@Misc{ref3,
  key = {bbb},
  Title = {\href{http://ref3.com}{bbb}}
}
\end{filecontents*}

\documentclass{article}
\usepackage{hyperref}

\begin{document}

\nocite{*}

\bibliographystyle{plain}
\bibliography{\jobname}

\end{document}

ingrese la descripción de la imagen aquí

información relacionada