\documentclass[fleqn,12pt,a4paper,twoside]{article}
\usepackage{parco2005}

\usepackage{graphicx}
\usepackage{fancyvrb}
\usepackage{times}

\title{How to Write a ParCo2005 Article Using \LaTeX}
\author{G. Juckeland\address{Center for Information Services and High Performance Computing, Dresden University of Technology, 01062 Dresden, Germany}} 

\begin{document}
\maketitle

\section{Introduction}
The proceedings of the ParCo2005 are intended to look as professional as the previous ones. Therefore, the authors are again asked to submit their papers as {\LaTeX}-documents (including the source files and all graphics). A document-style to support the authors is provided with this document -- the file \texttt{parco2005.sty} and its use are documented in the following sections.

\section{Document Header}

The following document header should be used (as an example):

\begin{Verbatim}[baselinestretch=1,fontsize=\footnotesize,numbers=left,frame=single,stepnumber=5,xleftmargin=1cm,xrightmargin=1cm,label={Document Header}]
\documentclass[fleqn,12pt,a4paper,twoside]{article}
\usepackage{parco2005}

\usepackage{graphicx}
\usepackage{fancyvrb}
\usepackage{times}

\title{How to Write a ParCo2005 Article Using \LaTeX}
\author{G. Juckeland\address{Center for Information Services
and High Performance Computing,
Dresden University of Technology, 01062 Dresden, Germany}} 

\begin{document}
\maketitle

(Place your paper here...)

\end{document}
\end{Verbatim}

Multiple authors from the same institution can be defined using:

\begin{Verbatim}[baselinestretch=1,fontsize=\footnotesize,numbers=left,frame=single,stepnumber=5,xleftmargin=1cm,xrightmargin=1cm,label={Multiple authors, same institution}]
\author{First Author\address{Address of Institution}, 
        Second Author\addressmark,
        Third Author\addressmark}
\end{Verbatim}

Multiple authors from different institutions can be defined using:
\begin{Verbatim}[baselinestretch=1,fontsize=\footnotesize,numbers=left,frame=single,stepnumber=5,xleftmargin=1cm,xrightmargin=1cm,label={Multiple authors, same institution}]
\author{First Author\address[label1]{Address of Institution 1}, 
        Second Author\addressmark[label1],
        Third Author\address[label2]{Address of Institution 2}}
\end{Verbatim}

\section{Your Paper}

Place your paper after the header as you would with every normal \LaTeX-document. Please do not change font sizes or margins to fit your document into the page limit. 

\paragraph{Graphics}
The style file offers a special caption for your graphics which will be set closer to the image to use less space. The command \verb|\Caption{...}| (instead of the standard \verb|\caption{...}|) will accomplish just that.

The proceedings will be printed in grayscale. Please make sure that your color images also print well as grayscale images. Otherwise please convert them manually so that the proceedings show the result you anticipate.


\section{How to Make Life Easier for the Editors}

The editors collect all papers and assemble them into one large document which will be printed as the proceedings. This assembly process will be easier if the authors of the individual papers follow a few guidelines.

\subsection{(Re-)Defining commands/environments}

If possible try to refrain from defining or redefining commands and environments. Doing so affects all papers following yours in the proceedings. If you need to define your own commands, use the \verb|\providecommmand| or \verb|\provideenvironment| commands offered by \LaTeX.

\subsection{Splitting of documents}

Although it makes life easier to spread a paper over various tex-files, it complicates error search for the editors. Please copy all your tex-files into one file prior to your final submission.

\subsection{Bibliographies}

Bibliographies can be directly included into the \LaTeX-document using the following environment:

\begin{Verbatim}[baselinestretch=1,fontsize=\footnotesize,numbers=left,frame=single,stepnumber=5,xleftmargin=1cm,xrightmargin=1cm,label={Bibliography environment}]
\begin{thebibliography}{widest-label}
 \bibitem{label}Author(s): Title. Publisher. Year
 ...
\end{thebibliography}
\end{Verbatim}

The BibTeX program can also be used. The Bibstyle is already defined in the ParCo2005 style file. If you directly insert your references using the \verb|thebibliography|-environment, please make sure that the formating is similar to what BibTeX would produce.

\end{document}
