I am using the LaTeX package amsrefs for bibliography. The labels in the reference list appear adjusted to the right (of the label column). Is there a way to make them adjusted to the left?
Here is an example of what I do:
\documentclass[12pt]{amsart}
\usepackage[nobysame,abbrev,alphabetic]{amsrefs}
\usepackage{amssymb}
\begin{document}
\cite{JS}
\cite{JST}
\begin{bibdiv}
\begin{biblist}
\bib{JS}{article}{
author={Jones, A.},
author={Smith, B.},
title={A result},
journal={Ann. Math.},
volume={314},
date={2015},
pages={1\ndash1000}
}
\bib{JST}{article}{
author={Jones, A.},
author={Smith, B.},
author={Taylor, C.},
title={Another result},
journal={Ann. Math.},
volume={315},
date={2016},
pages={1000\ndash2000}
}
\end{biblist}
\end{bibdiv}
\end{document}
