-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.tex
More file actions
84 lines (65 loc) · 1.55 KB
/
main.tex
File metadata and controls
84 lines (65 loc) · 1.55 KB
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
\documentclass[a4paper, 11pt]{article}
\pdfoutput=1
\usepackage{etoolbox,verbatim}
%% for arxiv formatting. toggle false for any conference submission
\newtoggle{arxiv}
\toggletrue{arxiv}
%% adds custom formatting of theorems, such as colored headers.
\newtoggle{customthms}
\toggletrue{customthms}
%% unique to the COLT conference. false by default
\newtoggle{colt}
\togglefalse{colt}
%all the include files
\input{preamble/_preamble_includes}
\title{CMU LeCAR Lab Paper Template}
\author{
Anonymous Authors \\
\vspace{-.3em}
\rule{.38\textwidth}{.7pt}
\\
\footnotesize
Affiliations withheld for peer review
}
\date{\today}
\correspondence{\href{mailto:anonymous@example.com}{anonymous@example.com}}
\paperwebsite{https://example.com}
\papercode{https://example.com}
\paperdocs{https://example.com}
\paperblog{https://example.com}
\begin{document}
\begin{tcolorbox}[
colback=steelgray, colframe=irongray,
boxrule=0pt,
arc=2mm%title=\bfseries Document Information
]
\maketitle
\tcbline
\input{body/teaser_fig}
\tcbline
% Metadata section (after abstract, inside tcolorbox)
\makeatletter
\ifdefempty{\metadatalist}{}{\metadatalist\par}
\makeatother
\end{tcolorbox}
\begin{abstract}
\input{body/abstract}
\end{abstract}
\input{body/intro}
\input{body/prelim}
\input{body/body}
\input{body/questions}
\input{body/todos}
\input{body/related}
\input{body/conclusion}
\input{body/acknowledgements}
\newpage
\newpage
\bibliographystyle{plainnat}
\bibliography{refs}
\newpage
\newpage
\tableofcontents
\newpage
\appendix
\end{document}