-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpaper.tex
103 lines (69 loc) · 1.77 KB
/
paper.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
% general sample of a two-column paper
%%% DOCUMENT TYPE
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
%%% PAGE DIMENSIONS
\usepackage[left=2cm, right=2cm, top=2cm, bottom=2cm]{geometry}
\geometry{a4paper}
%%% PACKAGES
\usepackage{booktabs}
\usepackage{array}
\usepackage{verbatim}
\usepackage{subfig}
\usepackage{hyperref}
\usepackage{amssymb,amsmath}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{lscape}
\setlength{\columnsep}{24pt}
\usepackage[sort,compress,comma,super]{natbib}
%%% CUSTOM COMMANDS
%%% HEADERS & FOOTERS
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\lhead{}\chead{}\rhead{}
\lfoot{}\cfoot{\thepage}\rfoot{}
%%% TITLE INFO
\title{Sample Title}
\author{Sean McKenna}
\date{\today}
%%% MULTICOL TABLE & FIGURE SUPPORT
\begin{document}
\makeatletter
\newenvironment{ctable}{\def\@captype{table}}{}
\newenvironment{cfigure}{\def\@captype{figure}}{}
\makeatother
%%% BEGIN PAPER
\maketitle
\begin{multicols}{2}
\section{\textbf{Introduction}}
Insightful and interesting introduction goes here!
\section{\textbf{Background}}
\subsection{Topic One}
Explain your first topic.
\subsection{Topic Two}
Explain your second topic.
\subsection{Topic Three}
Explain your third topic.
\section{\textbf{Experiment}}
\subsection{Part One}
Explain part one.
\subsection{Part Two}
Explain part two.
\subsection{Part Three}
Explain part three.
\section{\textbf{Analysis}}
\subsection{Part One}
Explain part one.
\subsection{Part Two}
Explain part two.
\subsection{Part Three}
Explain part three.
\section{\textbf{Conclusion}}
Always end with a witty, inspiring, and concise conclusion.
\raggedright
\bibliographystyle{apalike}
\bibliography{sources}
\end{multicols}
\end{document}