[Tex/LaTex] How to order bibliography alphabetically in latex

bibliographies

I am new in Latex. I am using my own .bst file. Is there any way to order bibliography alphabetically?

My .bst file:

https://pastebin.com/7ybYdLaT

Thank you for your help

Best Answer

That is really easy with biblatex.

\documentclass{article}
\usepackage[style=alphabetic]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

enter image description here

Related Question