|
Guidelines for LaTeX Users
- Please download the cgw08.sty file,
that establishes formatting required by the publisher and adds some extentions to standard article package.
Your paper should start with the usual stuff: title, author(s), affiliation(s) and abstract:
\documentclass{article}
\usepackage{cgw08}
\usepackage{epsf}
\title {Title of the paper}
\author{Author1\inst{1},
Author2\inst{2} and
Author3\inst{1,2}}
\institute{LocationA \and
LocationB}
\begin{document}
\maketitle
\begin{abstract}
Text of the abstract.
\end{abstract}
\section{Introduction}
% ....
\end{thebibliography}
\end{document}
As you see, the affiliations should be put into '\institute' command. If you use more the one affiliation they should be
separated with '\and' command and they should be accessed in '\author' command with '\inst' command.
For details please consult the sample paper:
Please, DO NOT:
- redefine margins, paper sizes, font sizes
- put page numbers
- Compile your paper
(at least two times to get cross-references)
- Convert your .dvi into a .pdf document and
upload it to the
Paper Submission System TOGETHER WITH all the files and packages required for a successful compilation (sources, pictures, etc.), as a compressed, single file.
|