
%template for producing Interface-format articles using LaTeX.
%Tim Hesterberg, MathSoft (formerly Statistical Sciences), 12 Sept 96
%from IEEE example by Matthew Ward, Worcester Polytechnic Institute. 
%Please send comments to timh@statsci.com.
%
%make two column with no page numbering, default is 10 point 
\documentstyle[twocolumn]{article}
\pagestyle{empty}

%set dimensions of columns, gap between columns, and paragraph indent 
\setlength{\textheight}{8.75in}
\setlength{\columnsep}{.25in}
\setlength{\textwidth}{7in}
\setlength{\topmargin}{.25in}
\setlength{\headheight}{0cm}
\setlength{\headsep}{0cm}
\setlength{\oddsidemargin}{-.25in}
\setlength{\footheight}{0.0in}
\setlength{\parindent}{1pc}

\begin{document}

%don't want date printed
\date{}

%make title bold and 14 pt font (Latex default is non-bold, 16pt) 
\title{\Large\bf My Wonderful Article in Interface Proceedings Format}

%for single author (just remove % characters)
%\author{I. M. Author \\
%  My Department \\
%  My Institute \\
%  My City, STATE, zip}

%for two authors (this is what is printed)
\author{\begin{tabular}[t]{c@{\extracolsep{8em}}c}
  I. M. Author  & M. Y. Coauthor \\
 \\
  My Department & Coauthor Department \\
  My Institute & Coauthor Institute \\
  City, STATE~~zipcode & City, STATE~~zipcode
\end{tabular}}

\maketitle

%So first page doesn't have a page number
\thispagestyle{empty}

\subsection*{Abstract}
This is the abstract of my paper.


\section{Introduction}

Here is my introduction text.  There are 2 blank lines before the section 
heading and one afterwards.  
I may want a numbered subsection, which is done as follows.

\subsection{Previous Work}
In subsections there is 1 blank line before the section heading and one 
afterwards.  Paragraphs are indented one 
pica.  There is no blank line between paragraphs.

For those of you new to \LaTeX, you may have to run
the latex process twice to allow all references to be resolved
(if you are using numbered equations or bibliography items, which
are not described here). You
will get a warning about a missing .aux file.  Just rerun latex and it
will be ok.

\section{Summary and Conclusions}
This template will get you through the minimum article, i.e. no figures
or equations.  To include those, please refer to your \LaTeX manual.
Good Luck!

This template does not use automatic citations.  You may do them
like this (Author 1987) or see your \LaTeX manual.  You may wish
to use BibTeX; the ``apalike'' style has been suggested.

The following works using TeXtures on a Macintosh, to include
an encapsulated postscript file created in S-Plus.  Just remove the
comment marks at the beginning of the lines
and change the sizes of the figure.  It will appear at the top of the
next page.
%\begin{figure*}
%\vbox to 3.5in{ \vfill
%  \centerline {
%    \hbox to 6.5in{
%      \special {postscriptfile MyFile.ps}
%      \hfill
%    }%hbox
%  }%centerline
%}%vbox
%\caption{The Caption}
%
%And any more text
%\end{figure*}

%this is how to do an unnumbered subsection
\subsection*{Acknowledgements}
This is how to do an unnumbered subsection.

\section* {References}

\everypar = {\hangindent=0in \hangafter=1 }
\smallskip \noindent
Author, I. M. (1987),
``Some Related Article I Wrote,''
{\em Some Fine Journal}, Vol. 17, pp. 1-100.

\smallskip \noindent
Expert, A. N. (1989),
{\em A Book He Wrote,}
His Publisher.

\end{document}

