Created
May 7, 2014 22:35
-
-
Save rschuetzler/eb448d4943a9d63e4096 to your computer and use it in GitHub Desktop.
This file contains 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
\documentclass{article} | |
\title{Now We're Citing} | |
\author{Ryan Schuetzler} | |
\usepackage[backend=bibtex,style=authoryear]{biblatex} | |
\addbibresource{blog.bib} | |
\begin{document} | |
\maketitle | |
\section{Introduction} | |
This is how we cite stuff around here. To show of the most basic, parenthetical | |
citations we use autocite like so: | |
\autocite{ackoff_management_1961,}. \textcite{chenhall_formal_1989,} once stated | |
that textcite was the best command (not really). We can also cite just the year | |
with citeyear \citeyear{rudman_artificial_2006,}, or do multiple citations at | |
the same time if we go like this | |
\autocite{ackoff_management_1961,rudman_artificial_2006,}. Just separate them | |
with commas. | |
Don't worry about having a whole bunch of references in your .bib file. Anything | |
that you don't cite gets left out of your bibliography. Like the Bonini citation | |
in my blog.bib file. Notice it won't appear down below since I haven't cited it | |
in this document. | |
\printbibliography | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment