Using the APSR Citation Style With Bibtex
Update, June 2026: I have updated the
.bst file in the GitHub repository to improve APSA/APSR
reference-list formatting. The current release omits publication months
from reference-list entries and places the final period of article
titles inside quotation marks when the title does not already end with
punctuation. The usage instructions below remain the same. Thanks to
Richard Boylan at Rice University for identifying the publication-month
and title-punctuation issues.
My colleague,
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, BibTeX’s APSR style does not include a
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 additional
inconsistencies. To address these issues, I modified the
.bst file from the official APSR template on Overleaf.
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 yearsand insert the following code where you want the reference section to appear:
\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
- APSA’s Style Manual for Political Science: https://spu.libguides.com/ld.php?content_id=47605571
- 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