[Tex/LaTex] using AMA reference style while using the achemso.sty

bibliographies

I've written a paper for the AIChE Journal, but using the achemso.sty, given that this journal does not provide with a style file.
Now that the article is finished and approved, the editor is asking me to use the AMA reference style.
After re-searching the web for a correct .sty for the journal I'm submitting to (AIChE Journal) I couldn't find none. And I could not set achemso.sty to use the AMA reference style. I've found ama.sty and aichej.sty, but I dont know how to override the achemso.sty in order to access such styles.
In this sense, I've tried to use the command \bibliographystyle{ama} but I've got errors when generating the references file.
Has anyone tried to do something similar? does anybody know how to set up the AMA reference style in achemso?
thanks in advance…

Best Answer

Well, achemso is really intended for a particular task! However, there are ways to achieve what you want:

\let\LaTeXbibliographystyle\bibliographystyle
\def\bibliographystyle#1{}
\usepackage{achemso}
\let\bibliographystyle\LaTeXbibliographystyle
\bibliographystyle{ama}

This will save the original definition of \bibliographystyle and restore it after loading achemso.

Related Question