-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpaper.tex
126 lines (108 loc) · 2.89 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
\documentclass[letterpaper,twocolumn,10pt]{article}
\usepackage{usenix}
\usepackage{amsmath}
\usepackage{verbatim} % for \begin{comment}
% figures
%\usepackage{stfloats} % allow figure* at bottom of page
\usepackage{subcaption} % for subfigure
\usepackage{epsfig} % to set graphics path
\graphicspath{{./figures/}}
% so urls in bib are broken to fit on line
\usepackage{url}
\def\UrlBreaks{\do\/\do-}% chktex 4
\usepackage{hyperref} % should be last package
\usepackage{cleveref} % should be after hyperref
% not sure why this is needed but it fixes build sometimes
\addtolength{\textheight}{\topskip}
%\input{cmds}
% for comments
\newcommand{\ada}[1]{\textcolor{red}{AG:\ #1}}
\newcommand{\ketan}[1]{\textcolor{blue}{KB:\ #1}}
\newcommand{\stud}[1]{\textcolor{green}{Student:\ #1}}
%\newcommand{\ada}[1]{}
%\newcommand{\ketan}[1]{}
%\newcommand{\jim}[1]{}
% tight bullets
\newenvironment{tightitemize}%
{
\begin{list}{$\bullet$}{%
\setlength{\leftmargin}{10pt}
\setlength{\itemsep}{0pt}%
\setlength{\parsep}{0pt}%
\setlength{\topsep}{0pt}%
\setlength{\parskip}{0pt}%
}%
}%
{
\end{list}
}
\newcounter{tecounter}
\newenvironment{tightenumerate}%
{
\begin{list}{\arabic{tecounter}.}{%
\usecounter{tecounter}
\setlength{\leftmargin}{10pt}
\setlength{\itemsep}{0pt}%
\setlength{\parsep}{0pt}%
\setlength{\topsep}{0pt}%
\setlength{\parskip}{0pt}%
}%
}%
{
\end{list}
}%
% tight equations
\newenvironment{tightequation}%
{
\begin{list}{}{%
\setlength{\leftmargin}{10pt}
\setlength{\itemsep}{0pt}%
\setlength{\parsep}{0pt}%
\setlength{\topsep}{5pt}%
\setlength{\parskip}{0pt}%
}%
}%
{
\end{list}
}%
% set up section references for cleveref
\crefformat{section}{\S#2#1#3} % see manual of cleveref, section 8.2.1
\crefformat{subsection}{\S#2#1#3}
\crefformat{subsubsection}{\S#2#1#3}
\begin{document}
%don't want date printed
\date{}
%make title bold and 14 pt font (Latex default is non-bold, 16 pt)
\title{\Large \bf PT:\ Paper Template}
\author{
{\rm Student}\\
Georgia Institute of Technology\\
\and
{\rm Ada Gavrilovska}\\
Georgia Institute of Technology\\
}
\maketitle
% suppress page numbers.
%\thispagestyle{empty}
\subsection*{Abstract}
\input{sections/abstract.tex}
% This is how you write under\_bar
% This is \textbf{bold}
% This is \underline{underlined}
% This is \textbf{\textit{bold and italics}}.
% Tips in the following sections from Jennifer Widom
% from stanford https://cs.stanford.edu/people/widom/paper-writing.html
\input{sections/intro.tex}
\input{sections/prelim.tex}
\input{sections/overview.tex}
\input{sections/design.tex}
\input{sections/eval.tex}
\input{sections/relatedwork.tex}
\input{sections/conclusion.tex}
\input{sections/future.tex}
%\input{sections/acks.tex}
\bibliographystyle{plain}
\bibliography{paper}
\end{document}