\documentclass[twocolumn]{article}


%%% Size definition (do not edit!)
\oddsidemargin=-0.5cm
\topmargin=-5mm
\textwidth=170mm %
\textheight=53\baselineskip % 
\footskip=10mm

\setcounter{page}{1}

\newtheorem{lemma}{Lemma}[section]
\newtheorem{remark}{Remark}[section]
\newtheorem{theorem}{Theorem}[section]
\newtheorem{statement}{Section}[section]
\newtheorem{definition}{Definition}[section]

\def\proof{\par\noindent{\bf Proof}. \ignorespaces}
\def\endproof{{\ \vbox{\hrule\hbox{%
   \vrule height1.3ex\hskip1.3ex\vrule}\hrule
  }}\vspace{2mm}\par}

\date{}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\title{\bf NUMGRID2008 conference proceedings sample paper}
\author{A.\,A.\,Author\footnotemark[1],~
        B.\,B.\,Coauthor\footnotemark[2]\\[2mm]
\footnotemark[1]~{Computing Center RAS, author@ccas.ru}\\
\footnotemark[2]~{coauthor affiliation, coauthor@abcde.ru}~~~}

\begin{document}
\maketitle

\begin{abstract}
It is recommended that paper abstract contain 3-5 sentences.
In order to create abstract please use standard Latex 
environment \verb"\begin{abstract}...\end{abstract}".
\end{abstract}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Introduction}

This Latex source file contains description of paper typesetting format 
for proceedings of conference "Numerical geometry, grid generation 
and scientific computing, 2008". Please use this file a sample for 
paper preparation. Please note that paper length must not exceed 8 pages.

Paper title is defined using standard command \verb"\title" and bold font, for
example \verb"\title{\bf Paper title}". Capital letters should be used only
as starting letters of a title and for proper names.


Names of authors are defined using command \verb"\author",
affiliation is defined using special symbols via commands 
\verb"\footnotemark[1]", \verb"\footnotemark[2]", \verb"\footnotemark[3]".
Example of affiliation is included into this document.
Title, author names and affiliations are included into document using
command \verb"\maketitle".


Some sections, such as Introduction in this document can be unnumbered. It
can be done using standard command 
\verb"\section*{Standard}".

Standard numbered section is created using the command
\verb"\section{Section title}".

The font size of the paper text should be 10pt, column format, 
with the text field 170\,mm by 235\,mm, including page numbers 
using the following commands in preamble

\begin{verbatim}
\documentclass[twocolumn]{article}
\oddsidemargin=-0.5cm
\topmargin=-5mm
\textwidth=170mm %
\textheight=53\baselineskip %
\footskip=10mm
\end{verbatim}

Paper should be typeset using standard set of \LaTeXe\ commands and portable
latex packages. One can use references \cite{KopkaDaly,Lamport} as 
Latex manuals. 

For import of graphics it is recommended to use packages 
\verb"graphicx", \verb"epsfig",  \verb"pstricks". 

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{First numbered section}

Text of first numbered section.

Example of definition based on environment
\verb"\begin{definition}...\end{definition}",
defined in file preamble.

\begin{definition}
\label{d1}
Text of definition.
\end{definition}

Example of the theorem based on environment
\verb"\begin{theorem}...\end{theorem}",
defined in file preamble.

\begin{theorem}
\label{t1}
Text of theorem with formula inside
\[
e^{2\pi i} = 1
\]
\end{theorem}

\begin{proof}
Text of the proof of Theorem~\ref{t1}, prepared using environment
\verb"\begin{proof}...\end{proof}".
\end{proof}

Example of remark based on environment, defined in the preamble
\verb"\begin{remark}...\end{remark}".

\begin{remark}
\label{rem1}
Text of remark to Theorem~\ref{t1} and example of
automatic reference to theorem \verb"\ref{t1}", labeled as \verb"\label{t1}".
\end{remark}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Title of second section}

Text of second numbered section.


\subsection{Title of subsection }

Text of first numbered subsection


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{thebibliography}{9}

\bibitem{KopkaDaly}
  H.\,Kopka and P.\,W.\,Daly,
  \textit{A Guide to \LaTeXe: Document Preparation for Beginners
  and Advanced Users.} Addison-Wesley, 1995.


\bibitem{Lamport}
  L.\,Lamport,
  \textit{\LaTeX: A Document Preparation System.}
  Addison-Wesley, 1994.

\end{thebibliography}
\end{document}

