-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
46 lines (39 loc) · 900 Bytes
/
main.tex
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
45
46
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{
a4paper,
total={170mm,257mm},
left=20mm,
top=20mm,
}
\emergencystretch=1em % I don't know what this does, but it fixes hbox things
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{enumerate}
\usepackage{verbatim}
\usepackage[style=apa]{biblatex}
\addbibresource{export.bib} % bibliography file from root directory
\usepackage{lipsum}
\begin{document}
\include{titlepage.tex}
\pagebreak
\tableofcontents
\listoftables
\listoffigures
\pagebreak
% Placeholder text
\section{Introduction}
I want to reference the source \cite{Alamerie2014}.
\lipsum[10]
\section{Methodology}
\lipsum[50]
I am citing \cite{Giller2021}
\section{Results}
\lipsum[50]
Citing \cite{Pant2016}. Citing \cite{Russel2012}
\section{Conclusion}
\lipsum[20]
% End of placeholder text
\printbibliography
\end{document}