-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpaper-template.tex
96 lines (76 loc) · 1.87 KB
/
paper-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
\documentclass[review]{siamart220329}
% 1. Preamble and packages
\usepackage{lipsum}
\usepackage{amsfonts}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{algorithmic}
\ifpdf%
\DeclareGraphicsExtensions{.eps,.pdf,.png,.jpg}
\else
\DeclareGraphicsExtensions{.eps}
\fi
\usepackage{amsopn}
\DeclareMathOperator{\diag}{diag}
\usepackage{booktabs}
% 2. Paper title
\newcommand{\TheTitle}{%
Example Title
}
% 2.5. Short title for running heads (if needed)
\newcommand{\TheShortTitle}{%
\TheTitle
}
% 3. Student Name
\newcommand{\TheName}{%
X. Y. Student
}
% 4. Student Address
\newcommand{\TheAddress}{%
University of ABC,
(\email{[email protected]}, \url{http://www.abc.edu/\string~xys/}).
}
% 5. Acknowledge funding or other resources
\newcommand{\TheFunding}{%
This work was funded by IJK\@.
}
% 6. Collaborators, such as advisor or research collaborators
\newcommand{\TheCollaborators}{%
A. B. Advisor,
C. D. Researcher,
}
% ---------------------------------------------
% ---------------------------------------------
\author{\TheName\thanks{\TheAddress}}
\title{{\TheTitle}\thanks{\TheFunding}}
\headers{\TheShortTitle}{\TheName}
\ifpdf%
\hypersetup{%
pdftitle={\TheTitle},
pdfauthor={\TheName}
}
\fi
\begin{document}
\maketitle
\begin{center}
In collaboration with:
{\TheCollaborators}
\end{center}
\vspace{1cm}
% ---------------------------------------------
% ---------------------------------------------
\begin{abstract}
\lipsum[1]
\end{abstract}
\begin{keywords}
% 7. Keywords that describe the paper
\end{keywords}
% Placeholder section titles and labels -- replace these with what
% makes sense for your paper
\section{Introduction}\label{sec:intro}
\section{Main Contribution}\label{sec:main}
\section{Numerical Results}\label{sec:num}
\section{Conclusions}\label{sec:conc}
\bibliographystyle{siamplain}
\bibliography{references}
\end{document}