blob: 3ce194b111d4fb0bdfeaae4b75feeaaa1197800c (
plain)
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
|
\documentclass[doublecol]{epl2}
% or \documentclass[page-classic]{epl2} for one column style
\newcommand\emc{E=mc^{2}}
\title{Title of the paper}
\shorttitle{Title} %Insert here a short version of the title if it exceeds 70 characters
\author{F. Author\inst{1,2} \and S. Author\inst{1} \and T. Author\inst{2}}
\shortauthor{F. Author \etal}
\institute{
\inst{1} First Institute - Address\\
\inst{2} Second Institute - Address
}
\abstract{
Abstract of the paper.}
\begin{document}
\maketitle
\section{Section title }
%% here a revision
\revision{Insert here the text.
See fig.~\ref{fig.1}, table~\ref{tab.1} and eq.~(\ref{eq.1}).
See also~\cite{b.a,b.b}.}
here a shortcut $\emc$ and again $\emc$
\begin{equation}
\label{eq.1}
0\neq1
\end{equation}
\begin{figure}
\onefigure{epl-template.eps}
\caption{Figure caption.}
\label{fig.1}
\end{figure}
\begin{table}
\caption{Table caption.}
\label{tab.1}
\begin{center}
\begin{tabular}{lcr}
first & table & row\\
second & table & row
\end{tabular}
\end{center}
\end{table}
\acknowledgments
Insert here the text.
\begin{thebibliography}{0}
\bibitem{b.a}
\Name{Author F., Author S. \and Author T.}
\REVIEW{Some Rev. A}{69}{1969}{9691}.
\bibitem{b.b}
\Name{Author F. \and Author S.}
\Book{Some Book of Interest}
\Editor{A. Editor}
\Vol{9}
\Publ{Publishing house, City}
\Year{1939}
\Page{666}.
\bibitem{b.c}
\Editor{Editor A.}
\Book{Some Book of Interest}
\Vol{9}
\Publ{Publishing house, City}
\Year{1939}
\Section{A}.
\end{thebibliography}
\end{document}
|