-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
52 lines (39 loc) · 935 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
47
48
49
50
51
52
\documentclass{article}
\usepackage[backend=biber, maxnames=5]{biblatex}
\addbibresource{main.bib}
\usepackage{verbatim}
\usepackage{alltt}
\usepackage{wrapfig}
\usepackage{subfig}
\usepackage{graphicx}
\usepackage{wasysym}
\usepackage{color}
\usepackage{array}
\usepackage{algorithmic}
\usepackage{algorithm}
\usepackage{rotating}
\usepackage{multirow}
\usepackage{placeins}
\usepackage{anyfontsize}
\usepackage[normalem]{ulem} % strikethrough
\usepackage{amssymb}
\usepackage{pifont} % checkmarks
\newcommand{\todo}[1]{\textcolor{red}{TODO: #1}}
\begin{document}
\title{Structuring Academic LaTeX Papers}
\author{Clint Gibler}
\maketitle
\input{constants}
\begin{abstract}
\input{abstract}
\end{abstract}
\input{introduction}
\input{background}
\input{methodology}
\input{evaluation}
\input{related_work}
\input{conclusion}
% New for biblatex
\renewcommand{\bibfont}{\normalfont\small}
\printbibliography
\end{document}