Bibliographies – Using Revtex 4.1 Bibliography Style in Other Classes

bibliographiesrevtex

I'd like to know if someone ported the bibliography styles used in revtex 4.1 (like apsrev4-1.bst) so they can be used in other classes, like book.

Thanks in advance!

Best Answer

It looks if the revtex bst's are highly customized for for the class file. I have found that the following gives more or less the same output with a standard class

\usepackage[sort&compress,numbers]{natbib}
\bibliographystyle{apsrev4-1}
\usepackage{doi}%<----------
\usepackage{hyperref}

It also needs an additional bibtex file with a custom setup especially if you want the full article names included (the longbibliography option in revtex4-1). Create the following file, say revtex-custom.bib with contents

@CONTROL{REVTEX41Control}
@CONTROL{apsrev41Control,author="48",editor="1",pages="1",title="0",year="0"}

Define your bib then as follows:

\nocite{apsrev41Control}
\bibliography{my-bib,revtex-custom}