I know that several people have already asked this question, but for some strange reason the suggestions are not working.
I have tried inserting:
\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
into the preamble of my .tex file, of the .ltb file, and of the style file that I am using, however nothing changes the references. This is and example of what has been tried:
\documentclass[noheadings]{uncthesis}
\usepackage{amsmath,amssymb,amsthm,slashed,amsfonts}
\makeatletter
\renewcommand\@biblabel[1]{#1.}
\makeatother
\begin{document}
Alan Sokal~\cite{Sokal96} recommends Bourbaki's
text~\cite{Bourbaki70} for a gentle introduction to set theory.
\begin{thebibliography}{plain}
\bibselect{Bib}
\end{thebibliography}
\end{document}
The corresponding Bib.ltb would be:
\documentclass{amsart}
\usepackage{amsrefs}
\begin{document}
\begin{bibdiv}
\begin{biblist}
\bib{Bourbaki70}{book}{
title={Th\'eorie des ensembles},
author={Bourbaki, Nicolas},
date={1970},
publisher={Hermann},
address={Paris}
}
\bib{Sokal96}{article}{
title={Trangressing the boundaries},
subtitle={Toward a transformative hermeneutics of quantum gravity},
author={Sokal, Alan},
journal={Social Text},
volume={46/47},
date={1996},
pages={217--252}
}
\end{biblist}
\end{bibdiv}
\end{document}
I have also tried inserting:
\makeatletter
\renewcommand{\BibLabel}{%
\hfill
\Hy@raisedlink{\hyper@anchorstart{cite.\CurrentBib}\hyper@anchorend}%
\thebib.%
}
\makeatother
However, this yields the error message
2063: Undefined control sequence.
\BibLabel ->\hfill \Hy@raisedlink
{\hyper@anchorstart {cite.\CurrentBib }\hy...
l.2063 \begin{thebibliography}{plain}
Are there any other suggestions? Thank you!

\@biblabelas you did in your code does change the list of references from[n]ton.. Perhaps you could include a minimal working example (MWE) that illustrates your problem. It will be much easier for us to reproduce your situation and find out what the issue is when we see compilable code, starting with\documentclass{...}and ending with\end{document}, and also a fragment of your.bibfile.:)– Paulo Cereda Mar 15 at 18:49amsrefsis used, as is the case here, the mentioned redefinition of\@biblabeldoesn't change the label formatting in the bibliography – Gonzalo Medina Mar 15 at 19:17:)Thanks, Gonzalo! – Paulo Cereda Mar 15 at 19:31