Skip to content

Instantly share code, notes, and snippets.

@chris-prener
Last active October 23, 2016 12:21
Show Gist options
  • Save chris-prener/801e78cf36d9323a067a39892b577708 to your computer and use it in GitHub Desktop.
Save chris-prener/801e78cf36d9323a067a39892b577708 to your computer and use it in GitHub Desktop.
Setting up a Tufte-style LaTeX document with a custom style for the American Sociological Review
%% ASR Formatted Bibliography using BibTeX and the Tufte document style
%% 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[nobib]{tufte-handout}
\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