-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarebones_template.tex
127 lines (96 loc) · 3.06 KB
/
barebones_template.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
\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
\usepackage{microtype} % microtypography
\usepackage{booktabs} % tables
\usepackage{url} % urls
% AMS math
\usepackage{amsmath}
\usepackage{amsthm}
% 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{...}
\title{Barebones template with latex-simple}
% 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{Author 1}{[email protected]}}
% the list might continue:
% \author[2,3]{\nameemail{Author 2}{[email protected]}}
% \author[3]{\nameemail{Author 3}{[email protected]}}
% \author[4]{\nameemail{Author 4}{[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]{Institution 1}
% the list might continue:
% \affil[2]{Institution 2}
% \affil[3]{Institution 3}
% \affil[4]{Institution 4}
% define PDF metadata, please fill in to aid in accessibility of the resulting PDF
\hypersetup{%
pdfauthor={}, % will be reset to "Anonymous" unless the "final" package option is given
pdftitle={},
pdfsubject={},
pdfkeywords={}
}
\begin{document}
\maketitle
\begin{abstract}
\end{abstract}
% content will be automatically hidden during submission
\begin{acknowledgements}
\end{acknowledgements}
% print bibliography -- for bibtex / natbib, use:
\bibliography{references}
\bibliographystyle{latex-simple}
% and for biber / biblatex, use:
% \printbibliography
% supplemental material -- everything hereafter will be suppressed during
% submission time if the hidesupplement option is provided!
\appendix
\end{document}