LaTeX-Templates/Paper With Citations/Example Paper.tex

44 lines
1002 B
TeX

% Class type
\documentclass[12pt]{article}
% Introduction and requirements
\usepackage{mathptmx}
\usepackage[a4paper, total={6.25in, 8in}]{geometry}
\usepackage{setspace}
\doublespacing
% Packages
\usepackage{iexec}
% Citations
\usepackage[backend=biber]{biblatex-chicago} % Chicago\mla
%\usepackage[backend=biber, style=apa]{biblatex} % apa
\usepackage[colorlinks, citecolor=black]{hyperref}
\addbibresource{ExamplePaperReferences.bib} % Import the bibliography file
\title{Example Paper}
\date{\today\\
\small{Revision: \iexec{git describe --abbrev=8 --always --tags --dirty}}}
\author{My Name\\
\bf{My University}\\
CLA 101: Introduction to \LaTeX\\
Instructor: \href{mailto://my_teacher.edu}{My Instructor}}
\begin{document}
\pagenumbering{gobble}
\maketitle
\newpage
\pagenumbering{arabic}
This is a big important paragraph. With lots and lots of stuff..
And heres an example of a citation\autocite{garvey_nature_2005}.
\newpage
\printbibliography[title={References}]
\end{document}