Skip to content

Instantly share code, notes, and snippets.

@chris-prener
Last active February 19, 2024 17:27
Show Gist options
  • Save chris-prener/e384d441718d7dade6ef7012a5054d9e to your computer and use it in GitHub Desktop.
Save chris-prener/e384d441718d7dade6ef7012a5054d9e to your computer and use it in GitHub Desktop.
Setting up a LaTeX document with a custom style for the American Sociological Review
%% ASR Formatted Bibliography using BibTeX
%% requires the American Sociological Review .bst file - http://people.ku.edu/~chkim/etc/asr.bst
%% requires a properly formatted .bib file
%% requires that the key inserted below matches a key in that .bib file
\documentclass{book}
\usepackage{chicago}
\begin{document}
The quick brown fox \cite{key}.
\bibliography{sample}
\bibliographystyle{asr}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment