-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
45 lines (30 loc) · 801 Bytes
/
Copy pathmain.tex
File metadata and controls
45 lines (30 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
% Main Document File
% Drafted 04/29/2020 by Ari Dyckovsky
% Document Class Definition
\documentclass[11pt,a4paper]{article}
\usepackage[margin=0.5in]{geometry}
\usepackage[english]{babel}
\usepackage{csquotes}
% Block comments enabled
\usepackage{comment}
% Bibliography management via Biblatex and Biber
\usepackage[
backend=biber,
style=apa,
]{biblatex}
\addbibresource{references.bib}
% Packages
% Add 'non-essential' packages here
% Commands, new and renewed
% Title, Author, and Date of document
\title{Title of Article} % Put your title
\author{Ari Dyckovsky} % Put your name
\date{\today} % Customize or default to today's date
\begin{document}
\maketitle
\section{Hello}
How is the world today?
\printbibliography[
title={References} % Rename if desired
]
\end{document}