-
Notifications
You must be signed in to change notification settings - Fork 2
/
RJtemplate.tex
61 lines (45 loc) · 1.34 KB
/
RJtemplate.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
% !TeX root = RJwrapper.tex
\title{Capitalized Title Here}
\author{by Author One, Author Two and Author Three}
\maketitle
\abstract{
An abstract of less than 150 words.
}
\section{Section title in sentence case}
Introductory section which may include references in parentheses
\citep{R}, or cite a reference such as \citet{R} in the text.
\section{Another section}
This section may contain a figure such as Figure~\ref{figure:rlogo}.
\begin{figure}[htbp]
\centering
\includegraphics{Rlogo-5}
\caption{The logo of R.}
\label{figure:rlogo}
\end{figure}
\section{Another section}
There will likely be several sections, perhaps including code snippets, such as:
\begin{example}
x <- 1:10
result <- myFunction(x)
\end{example}
\section{Summary}
This file is only a basic article template. For full details of \emph{The R Journal} style and information on how to prepare your article for submission, see the \href{https://journal.r-project.org/share/author-guide.pdf}{Instructions for Authors}.
\bibliography{RJreferences}
\address{Author One\\
Affiliation\\
Address\\
Country\\
(ORCiD if desired)\\
\email{author1@work}}
\address{Author Two\\
Affiliation\\
Address\\
Country\\
(ORCiD if desired)\\
\email{author2@work}}
\address{Author Three\\
Affiliation\\
Address\\
Country\\
(ORCiD if desired)\\
\email{author3@work}}