|
| 1 | +% LLNCStmpl.tex |
| 2 | +% Template file to use for LLNCS papers prepared in LaTeX |
| 3 | +%websites for more information: http://www.springer.com |
| 4 | +%http://www.springer.com/lncs |
| 5 | + |
| 6 | +\documentclass{llncs} |
| 7 | +%Use this line instead if you want to use running heads (i.e. headers on each page): |
| 8 | +%\documentclass[runningheads]{llncs} |
| 9 | + |
| 10 | + |
| 11 | +\begin{document} |
| 12 | +\title{Title Goes Here} |
| 13 | + |
| 14 | +%If you're using runningheads you can add an abreviated title for the running head on odd pages using the following |
| 15 | +%\titlerunning{abreviated title goes here} |
| 16 | +%and an alternative title for the table of contents: |
| 17 | +%\toctitle{table of contents title} |
| 18 | + |
| 19 | +\subtitle{Subtitle Goes Here} |
| 20 | + |
| 21 | +%For a single author |
| 22 | +%\author{Author Name} |
| 23 | + |
| 24 | +%For multiple authors: |
| 25 | +\author{First Author Name\inst{1}\and Second Author Name\inst{2}} |
| 26 | + |
| 27 | + |
| 28 | +%If using runnningheads you can abbreviate the author name on even pages: |
| 29 | +%\authorrunning{abbreviated author name} |
| 30 | +%and you can change the author name in the table of contents |
| 31 | +%\tocauthor{enhanced author name} |
| 32 | + |
| 33 | +%For a single institute |
| 34 | +%\institute{Institute Name \email{email address}} |
| 35 | + |
| 36 | +% If authors are from different institutes |
| 37 | +\institute{First Institute Name\email{email address}\and Second Institute Name\thanks{Thank you to...}\email{email address}} |
| 38 | + |
| 39 | +%to remove your email just remove '\email{email address}' |
| 40 | +% you can also remove the thanks footnote by removing '\thanks{Thank you to...}' |
| 41 | + |
| 42 | + |
| 43 | +\maketitle |
| 44 | + |
| 45 | +\begin{abstract} |
| 46 | +abstract text goes here - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
| 47 | +\end{abstract} |
| 48 | + |
| 49 | +\section{First Section} |
| 50 | + |
| 51 | +\subsection{First Subsection} |
| 52 | +\subsubsection{First Subsubsection} |
| 53 | +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. |
| 54 | + |
| 55 | +\subsubsection{Second Subsubsection} |
| 56 | +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. |
| 57 | + |
| 58 | +%Example of a numbered list |
| 59 | +\begin{enumerate} |
| 60 | +\item First item in list |
| 61 | +\begin{enumerate} |
| 62 | +\item First sub item |
| 63 | +\item Second sub item |
| 64 | +\end{enumerate} |
| 65 | +\item Second item in list |
| 66 | +\end{enumerate} |
| 67 | + |
| 68 | +\subsection{Second Subsection} |
| 69 | +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud\cite{reference1} exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
| 70 | + |
| 71 | +\begin{proposition} |
| 72 | +Insert proposition here |
| 73 | +\end{proposition} |
| 74 | + |
| 75 | +\begin{proof} |
| 76 | +Insert proof here |
| 77 | +\end{proof} |
| 78 | + |
| 79 | +%The bibliography, done here without a bib file |
| 80 | +%This is the old BibTeX style for use with llncs.cls |
| 81 | +\bibliographystyle{splncs} |
| 82 | + |
| 83 | +%Alternative bibliography styles: |
| 84 | +%the following does the same as above except with alphabetic sorting |
| 85 | +%\bibliographystyle{splncs_srt} |
| 86 | +%the following is the current LNCS BibTex with alphabetic sorting |
| 87 | +%\bibliographystyle{splncs03} |
| 88 | +%If you want to use a different BibTex style include [oribibl] in the document class line |
| 89 | + |
| 90 | +\begin{thebibliography}{1} |
| 91 | +%add each reference in here like this: |
| 92 | +\bibitem[RE1]{reference1} |
| 93 | +Author: |
| 94 | +Article/Book: |
| 95 | +Other info: (date) page numbers. |
| 96 | +\end{thebibliography} |
| 97 | + |
| 98 | +\end{document} |
| 99 | + |