Using APSR citation style with bibtex
My collengue, Sam Jens, found several inconsistencies between the APSR style in Natbib
and the APSR submission guidelines. First, BibTeX’s APSR style has a comma between authors and year. Second, the BibTeX’s APSR style has no comma before “and” when there are three authors. The code \setcitestyle{aysep={}}
fixes the former but not the latter. The official APSR template on Overleaf has more inconsistencies. In order to fix the issues, I modified the .bst file from the official APSR template on Overleaf. Feel free to download it from here.
To use it, download the .bst file and put it in the same directory as your .tex file. In your .tex file, add the following code before \begin{document}
\usepackage{natbib}
\setcitestyle{aysep={}} %remove the comma between authors and years
and insert the following code where you want to put a reference section
\bibliographystyle{chicago-apsr-ph}
\bibliography{} % your .bib file name in the curly brackets
- chicago-apsr-ph github repository https://github.com/peihsunhsieh/chicago-apsr-ph
- Preparing your materials, American Political Science Review, https://www.cambridge.org/core/journals/american-political-science-review/information/author-instructions/preparing-your-materials
- APSR - American Political Science Review Submission Template https://www.overleaf.com/latex/templates/apsr-american-political-science-review-submission-template/fxffppspqczt
- For more information about using
Bibtex
, see Bibliography management with bibtex