-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_article.tex
executable file
·137 lines (95 loc) · 2.33 KB
/
example_article.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
128
129
130
131
132
133
134
135
136
137
\documentclass[]{tiponnaer}
\usepackage{lipsum}
\title{\LaTeX{} template for a research article}
\author[1,2]{First {\scshape Author}}
\author[1]{Second {\scshape Author}}
\author[2]{Third {\scshape Author}}
\affil[1]{First affiliation}
\affil[2]{Second affiliation}
\Highlights{
\item \lipsum[1][1]
\item \lipsum[1][2]
\item \lipsum[1][3]
}
\Abstract{
\lipsum[1]
}
\Keywords{
Template \sep Lorem ipsum \sep Tolkien
}
\Journal{Journal of Lorem Ipsum}
\Volume{42}
\Number{3}
\Pages{145}{169}
\Year{2020}
\DOI{10.1016/j.loremipsum.2016.07.008}
\License{\href{https://creativecommons.org/licenses/by/4.0/}{\faCreativeCommons\ \faCreativeCommonsBy}}
% \Disclaimer
\begin{document}
\maketitle
\section*{Introduction}
\label{sec:introduction}
\lipsum[1-4] (section~\ref{sec:fusce}).
\section{First section}
\label{sec:fusce}
\lipsum[1][1-3]\footnote{A footnote.}
\subsection{First subsection}
\subsubsection{First subsubsection}
\paragraph{First paragraph}
\lipsum[1]
\paragraph{Second paragraph}
\lipsum[2]
\subsection{Second subsection}
\lipsum[1] (figure~\ref{fig:figure_1}).
\begin{figure}
\centering
\includegraphics[width=\linewidth]{example-image-a}
\caption{\lipsum[1][1-2]}
\source{Modified from \citet{Tolkien1954}}
\label{fig:figure_1}
\end{figure}
\lipsum[2] (equation~\ref{eq:equation_1}).
\begin{equation}
2 + 2 = 3
\label{eq:equation_1}
\end{equation}
\lipsum[3] (table~\ref{tab:table_1}).
\begin{table}
\small
\centering
\caption{\lipsum[1][1-2]}
\begin{tabular}{@{}ld{-1}l@{}}
\toprule
\textbf{Sample} & \centercell{\textbf{Variable 1}} & \textbf{Variable 2} \\
\midrule
1 & 107.3 & Lorem \\
2 & 42 & Ipsum \\
\bottomrule
\end{tabular}
\label{tab:table_1}
\end{table}
\lipsum[4] (appendix~\ref{app:aenean}).
\section*{Conclusions}
\label{sec:conclusions}
\lipsum[1]
\section*{Data and software availability}
\lipsum[1]
\section*{Acknowledgments}
\lipsum[1]
\begin{appendices}
\counterwithin{figure}{section}
\counterwithin{table}{section}
\section{Aenean vel maximus ex}
\label{app:aenean}
\lipsum[1] (figure~\ref{fig:figure_2}).
\begin{figure}
\centering
\includegraphics[width=\linewidth]{example-image-b}
\caption{\lipsum[1][1-2]}
\label{fig:figure_2}
\end{figure}
\lipsum[2-4]
\end{appendices}
\FloatBarrier
\bibliography{example_article}
\end{document}