[Tex/LaTex] How to modify the label style of bibliography

bibliographiesbibtexnatbib

I'm using natbib package and bibliography style ama which I would like to modify.
The reference list should be listed like this:

1. Kapur NK, Musunuru K. Clinical efficiency and safety of statins in
   managing cardiovascular risk. Vasc Health Risk Manag. 2008;4(2):341–353.
2.
3.

not:

[1] Kapur NK, Musunuru K. Clinical efficiency and safety of statins in
managing cardiovascular risk. Vasc Health Risk Manag. 2008;4(2):341–353.
[2]
[3]

Example file:

\documentclass[11pt]{article}
\usepackage[numbers]{natbib}
\bibpunct{}{}{,}{s}{}{,}

\begin{document}
\cite{48341}
\bibliographystyle{ama}
\bibliography{refs}
\end{document}

The bibliographical data in BibTeX format are available here.

How to do this?
Thank you

Best Answer

The number format in the bibliography, set by natbib can be changed via \bibnumfmt:

\renewcommand*{\bibnumfmt}[1]{#1.}

Full example:

\documentclass[11pt]{article}
\usepackage[numbers]{natbib}
\bibpunct{}{}{,}{s}{}{,}
\renewcommand*{\bibnumfmt}[1]{#1.}

\begin{document}
\noindent Citation\cite{48341}
\bibliographystyle{ama}
\bibliography{refs}
\end{document}

Result