-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestpaper.tex
More file actions
118 lines (102 loc) · 2.98 KB
/
testpaper.tex
File metadata and controls
118 lines (102 loc) · 2.98 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
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
\documentclass[twocolumn]{nestpaper}
% If you want two work with a single column
% In generaļ the options are the same as the standard 'article' class
%\documentclass{nestpaper}
% This is just to add some dummy text, you can safely remove it
\usepackage[base,latin]{babel}
\usepackage{lipsum}
% Make lipsum text gray
\setlipsum{%
par-before = \begingroup\color{gray},
par-after = \endgroup
}
\title{My Paper Title}
\author{
Author 1\\
Institution 1 \\
Address 1 \\
\email{author1@institution1.edu}
\and
Author 2\\
Institution 2 \\
Address 2 \\
\email{author2@institution2.edu}
\and
Author 3\\
Institution 2 \\
Address 2 \\
\email{author2@institution2.edu}
\and
Author 4\\
Institution 2 \\
Address 2 \\
\email{author2@institution2.edu}}
\begin{document}
% Document version
\docversion{1.0 alpha}
% Use this command to say that this paper was submitted somewhere
\submitted{Some conference 2024}
% Use this command to say that this paper was published somewhere
\published{Hopefully the same conference 2024}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\section{First}
\lipsum[1-6]
\section{Second}
\lipsum[9]
\begin{equation}
\text{LJ}(x) = 4\epsilon\left(\left(\frac{\delta}{x}\right)^{12} - \left(\frac{\delta}{x}\right)^6\right)
\end{equation}
\lipsum[10]
\begin{table}[t]
\centering
\caption{An example table.}
\begin{tabular}{@{}llr@{}}
\toprule
\multicolumn{2}{c}{Item} \\
\cmidrule(r){1-2}
Animal & Description & Price (\$)\\
\midrule
Gnat & per gram & 13.65 \\
& each & 0.01 \\
Gnu & stuffed & 92.50 \\
Emu & stuffed & 33.33 \\
Armadillo & frozen & 8.99 \\
\bottomrule
\end{tabular}
\end{table}
\section{Useful Commands}
\begin{itemize}
\item You can use \verb|\argos| to correctly typeset \argos.
\item This style uses \verb|natbib| to handle citations. You can cite a paper using either \verb|\citet{}|, and you get \citet{Pinciroli:SI2012}, or \verb|\citep{}|, and you get \citep{Pinciroli:SI2012}.
\end{itemize}
\section{TikZ Support}
\input{robots}
If you use TikZ, there are a few custom shapes you can use.
\begin{figure}[t]
\centering
\usetikzlibrary{decorations.pathmorphing,decorations.pathreplacing}
\begin{tikzpicture}
% Robots
\draw (0,0) pic [fill=nestblue, pic text={blue}] (blue robot) {ground robot right};
\draw (2,0) pic [fill=nestred, pic text={red}] (red robot) {ground robot left};
% Ground
\draw[decorate,decoration={random steps,segment length=3pt,amplitude=1pt}] (blue robot-south west) -- (red robot-south east);
% WiFi signal
\draw[decorate,decoration={expanding waves,segment length=3pt,angle=7}] (blue robot-antenna) to (red robot-antenna);
\end{tikzpicture}
\caption{Custom TikZ shapes}
\label{fig:tikzshapes}
\end{figure}
%
% Bibliography
%
\bibliographystyle{plainnat}
\bibliography{refs}
\end{document}
%%% Local Variables:
%%% mode: LaTeX
%%% TeX-master: t
%%% End: