Last active
October 23, 2016 12:21
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% 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