-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsp-template.tex
66 lines (48 loc) · 1.58 KB
/
sp-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
\documentclass{sp}
% The \pdf* commands provide metadata for the PDF output.
% Do not use LaTeX style / commands like \emph{} inside these.
\pdfauthor{Author Full Name(s)}
\pdftitle{Full title}
\pdfkeywords{keyword list, each, separated, by commas}
% Optional short title inside square brackets, for the running headers.
% If no short title is given, no title appears in the headers.
\title[Short title]{Full title%
\thanks{We thank \ldots}}
% Optional short author inside square brackets, for the running headers.
% If no short author is given, no authors print in the headers.
\author[Author1, Author2, Author3]{% As many authors as you like, each separated by \AND.
\spauthor{Author1 Full Name \\ \institute{Institute1}} \AND
\spauthor{Author2 Full Name \\ \institute{Institute2}} \AND
\spauthor{Author3 Full Name \\ \institute{Institute3}}}
\begin{document}
\maketitle
\begin{abstract}
This is a minimal example document.
\end{abstract}
\begin{keywords}
keyword list, each, separated, by commas
\end{keywords}
\section{First section}
First paragraph.
\subsection{Subsequent subsection}
Second paragraph.
\subsubsection{Nested subsubsection}
Third paragraph.
Fourth paragraph.
\bibliography{your-bibliography-file}
\begin{addresses}
\begin{address}
Author1 Full Name \\
Street \\
City, State Zip \ldots \\
\email{[email protected]}
\end{address}
% Repeat or remove additional addresses as needed.
\begin{address}
Author2 Full Name \\
Street \\
City, State Zip \dots \\
\email{[email protected]}
\end{address}
\end{addresses}
\end{document}