[Tex/LaTex] Left-aligning LaTeX Bibliography Display

bibliographieshorizontal alignment

I have problem on how to make the bibliography item left-aligned. My current bibliography output is below.

sample output

As you can see, the reference item code is currently right-aligned, and I need it to be left-aligned. Any idea on how to achieve that?

My current code for the bibliography is

\usepackage{natbib}
%....
\nocite{*}
\bibliographystyle{alpha}
\bibliography{references}

Thank you.

update

Below is the code after i reduce many of it. The problem still occur on this code. I use MiKTeX 2.9.

\documentclass[bahasa, 12pt, a4paper, final]{report}
\usepackage{babel}
\usepackage{natbib}
\usepackage{url}


\begin{document}
    \nocite{*}
    \bibliographystyle{alpha}
    \bibliography{references}
\end{document}

Best Answer

Put this in your document preamble:

\makeatletter
\renewcommand{\@biblabel}[1]{[#1]\hfill}
\makeatother
Related Question