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
|
%%
%% This is file `lpstemplate.tex',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% lps.dtx (with options: `template')
%%
%% Copyright 2005, 2006 Gustavo Cevolani, Gruppo Utilizzatori Italiani di TeX
%%
%% This program is provided under the terms of the
%% LaTeX Project Public License distributed from CTAN
%% archives in directory macros/latex/base/lppl.txt.
%%
%% Author: Gustavo Cevolani
%% at g.cevolani@gmail.com
%%
%% This work has the LPPL maintenance status "author-maintained".
%%
\documentclass{lps}
%%
%% User's packages:
%% \usepackage[italian]{babel} % for Italian language
%% \usepackage[ansinew]{inputenc} % to insert special symbols on Windows systems
%% \usepackage[T1]{fontenc} % standard encoding on Windows systems
%% \usepackage{lipsum} % to test this template
\begin{document}
%% Article's information:
\title{Title of the article}
%% Author's information:
\author{John First\\Department of Philosophy\\University of Trieste (Italy)\\j.first@mail.it \and%
James Second\\Department of Philosophy\\University of Trieste (Italy)\\j.second@mail.it}
\shortauthor{John First, James Second}
%% Issue's information:
%%\Volume{}
%%\Number{}
%%\Year{}
%%\FirstPage{}
%%
\maketitle
\tableofcontents
%% Keywords and abstract:
\keywords{some, crucial, terms.}
\begin{abstract}
Summary of the article.
\end{abstract}
%%
%%%%%%%%%%%%%%%%%%%%%%%% Main text: %%%%%%%%%%%%%%%%%%%%%%%%
\section{First section}
Your article.\par
%%
%% \lipsum[1-10]
%%
\begin{thebibliography}{AAA}
\bibitem{mypaper} \textsc{First, J.} and \textsc{Second, J.} (2010), ``An interesting paper'', \emph{A Famous Journal}, 1, pp.~1--11.
\bibitem{mybook} \textsc{First, J.} and \textsc{Second, J.} (2011), \emph{A great book}, Address: Publisher.
\end{thebibliography}
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\par
|