-
Notifications
You must be signed in to change notification settings - Fork 0
/
dummy_paper.tex
197 lines (150 loc) · 4.14 KB
/
dummy_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
\documentclass[11pt]{article}
% This file will be kept up-to-date at the following GitHub repository:
%
% https://github.com/alexhernandezgarcia/latex-simple
%
% Please file any issues/bug reports, etc. you may have at:
%
% https://github.com/alexhernandezgarcia/latex-simple/issues
% With no package options, the submission will be anonymized, the supplemental
% material will be suppressed, and line numbers will be added to the manuscript.
%
% To hide the supplementary material (e.g., for the first submission deadline),
% use the [hidesupplement] option:
%
% \usepackage[hidesupplement]{latex-simple}
%
% To compile a non-anonymized camera-ready version, add the [final] option (for
% the main track) e.g.,
%
% \usepackage[final]{latex-simple}
%
% or
%
% \usepackage[final, hidesupplement]{latex-simple}
\usepackage[final]{latex-simple}
% You may use any reference style as long as you are consistent throughout the
% document. As a default we suggest author--year citations; for bibtex and
% natbib you may use:
\usepackage{natbib}
% and for biber and biblatex you may use:
% \usepackage[%
% backend=biber,
% style=authoryear-comp,
% sortcites=true,
% natbib=true,
% giveninits=true,
% maxcitenames=2,
% doi=false,
% url=true,
% isbn=false,
% dashed=false
% ]{biblatex}
% \addbibresource{...}
% AMS math
\usepackage{amsmath}
\usepackage{amsthm}
% Dummy text
\usepackage[english]{babel}
\usepackage{blindtext}
% Other packages
\usepackage{microtype} % microtypography
\usepackage{booktabs} % tables
\usepackage{url} % urls
%%%%%%%%%
% TITLE %
%%%%%%%%%
\title{A dummy paper with the LaTeX-simple template}
%%%%%%%%%%%
% AUTHORS %
%%%%%%%%%%%
% The syntax for adding an author is
%
% \author[i]{\nameemail{author name}{author email}}
%
% where i is an affiliation counter. Authors may have
% multiple affiliations; e.g.:
%
% \author[1,2]{\nameemail{Anonymous}{[email protected]}}
\author[1]{\nameemail{Ada Lovelace}{[email protected]}}
\author[2,3]{\nameemail{Maria Mitchell}{[email protected]}}
\author[4]{\nameemail{Katherine Johnson}{[email protected]}}
% if you need to force a linebreak in the author list, prepend an \author entry
% with \\:
% \author[3]{\\\nameemail{Author 5}{[email protected]}}
% Specify corresponding affiliations after authors, referring to counter used in
% \author:
\affil[1]{Ada's Institution}
\affil[2]{Maria's Institution 1}
\affil[3]{Maria's Institution 2}
\affil[4]{Katherine's Institution}
%%%%%%%
% PDF %
%%%%%%%
% define PDF metadata, please fill in to aid in accessibility of the resulting PDF
\hypersetup{%
pdfauthor={Lovelace, Mitchell and Johnson}, % will be reset to "Anonymous" unless the "final" package option is given
pdftitle={A dummy paper with the LaTeX-simple template},
pdfsubject={dummyness},
pdfkeywords={latex-simple}
}
%%%%%%%%%
% PAPER %
%%%%%%%%%
\begin{document}
\maketitle
\begin{abstract}
A very engaging abstract can go here.
\end{abstract}
\section{The first section}
\blindtext. The text above is meaningless, but more interesting stuff can be found in \citet{mitchell2003venus}.
\section{The second section}
\blindtext[2]
\blinditemize
\blindtext
\begin{table}[h]
\label{tab:thetable}
\caption{A lil table}
\begin{center}
\begin{tabular}{ll}
Letters & Numbers \\
\hline \\
A & 1 \\
B & 2 \\
C & 3 \\
\end{tabular}
\end{center}
\end{table}
\section{The last section}
\blindmathfalse
\begin{figure}[t]
\label{fig:thefigure}
\begin{center}
\fbox{\rule[-.5cm]{0cm}{4cm} \rule[-.5cm]{4cm}{0cm}}
\end{center}
\caption{Ceci n'est pas un carré.}
\end{figure}
\blindtext[2]
% content will be automatically hidden during submission
\begin{acknowledgements}
\blindtext
\end{acknowledgements}
%%%%%%%%%%%%%%%%
% BIBLIOGRAPHY %
%%%%%%%%%%%%%%%%
% for bibtex / natbib, use:
\bibliographystyle{latex-simple}
\bibliography{references}
% and for biber / biblatex, use:
% \printbibliography
%%%%%%%%%%%%
% APPENDIX %
%%%%%%%%%%%%
% supplemental material -- everything hereafter will be suppressed during
% submission time if the hidesupplement option is provided!
\vfill
\pagebreak
\appendix
\section{The first appendix}
\blindtext
\end{document}