%% Version 7/12/99
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Proceedings Template, proctmpl.tex
%% Kluwer Academic Press
%%
%% Prepared by Amy Hendrickson, TeXnology Inc., July 1999.
%%
%% Minor changes and abbreviations by S.K.Gorny, NCAC 2000
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%
%% LaTeX2e 
%% Uncomment documentclass, 
\documentclass{KapProc} % Computer Modern font calls

%%%%%
% PostScript font calls
%
% If you use the ProcPs PS font file, you may need to edit it
% to make sure the font names match those on your system. See
% the top of the ProcPs.sty file for more info.

\usepackage{ProcPs} 

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% LaTeX209, uncomment only one:
%% (Make sure documentclass and usepackage commands above are commented out!)
%
%  \documentstyle{KapProc} % Computer Modern fonts
%  \documentstyle[ProcPs]{KapProc} %For PostScript fonts 

%% uncomment to make current time and `draft' appear at bottom of page.
%\draft

\let\footnote\savefootnote
\let\footnotetext\savefootnotetext 
\let\footnoterule\savefootnoterule 

\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{1}

\kluwerbib

\startauthorindex

\begin{document}


%------------ article title  ------------------->>

% If you use \\'s , please supply an alternate version of the title
% in square brackets, i.e., 
%\articletitle[Communism, Sparta, and Plato]
%{COMMUNISM, SPARTA,\\ and PLATO}

\articletitle[]{Title of the article}

%% supply a shorter version of the title for the running head:
\chaptitlerunninghead{please give running title}

\author{first-author}
\affil{first-author-affiliation}
\email{first-author@computer.edu}

\author{second-author}
\affil{second-author-affiliation}


%% short abstract
\begin{abstract}
 text...
\end{abstract}



%------------ body of article ------------------->>

\section{e.g. Introduction}

Text, text, text...

%------------ end of article ------------------->>


%% optional
\begin{acknowledgments}
text
\end{acknowledgments}


%% remember to leave an empty line between bibliography imputs
\begin{chapthebibliography}{}

\bibitem{} 
Anonymous X., 2000, ApJ, xxx, yyy

\bibitem{}
Anonymous X., 2000, A\&A xxx, yyy

\end{chapthebibliography}

\end{document}

Other commands, and notes on usage:

-----
Possible section head levels:
\section{Introduction}
\subsection{This is subsection}
\subsubsection{This is subsubsection}
\paragraph{This is the paragraph}

-----
Captions:
 If you use index commands within a caption, precede \inx or \inxx with
 \protect.

\begin{figure}[h]
\caption{\protect\inx{Oscillograph} for memory address access ....
memory plane.}
\end{figure}

-----
Tables:
 Remember to use \centering for a small table and to start the table
 with \hline, use \hline underneath the column headers and at the end of 
 the table. Column headers should be in italic:

\begin{table}[h]
\caption{Small Table}
\centering
\begin{tabular}{ccc}
\hline
\it one&\it two&\it three\\
\hline
C&D&E\\
\hline
\end{tabular}
\end{table}

For a table that expands to the width of the page, write

\begin{table}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}lcc}
\hline
....
\end{tabular*}
%% Sample table notes:
\begin{tablenotes}
$^a$Refs.~19 and 20.

$^b\kappa, \lambda>1$.
\end{tablenotes}
\end{table}

-----





