-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathreport.tex
57 lines (39 loc) · 1.01 KB
/
report.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
53
54
55
56
57
% general sample of a report (not a two-column layout)
%%% DOCUMENT TYPE
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
%%% PAGE DIMENSIONS
\usepackage[left=2cm, right=2cm, top=3cm, bottom=2cm]{geometry}
\geometry{a4paper}
%%% PACKAGES
\usepackage{booktabs}
\usepackage{array}
\usepackage{verbatim}
\usepackage{subfig}
\usepackage{amssymb,amsmath}
\usepackage{graphicx}
\setlength{\columnsep}{24pt}
%%% CUSTOM COMMANDS
%%% HEADERS & FOOTERS
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\lhead{Sean McKenna}\chead{}\rhead{University of Utah}
\lfoot{}\cfoot{\thepage}\rfoot{}
%%% LINE SPACING
\linespread{2}
%%% TITLE INFO
\title{Sample Report}
\author{Sean McKenna}
%%% BEGIN REPORT
\begin{document}
\section{First Section}
This is the first section of the report.
\section{Second Section}
This is the second section of the report.
\section{Third Section}
This is the third section of the report.
\raggedright
\bibliographystyle{apalike}
\bibliography{sources}
\end{document}