%%%%%%%%%%%%%%%%%%%%%%%%%%%%% birkhaus.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%                                                        %%%%%%%%%%%%%
%%%%%%%%%%    More information: see the header of birkhaus.sty    %%%%%%%%%%%%%
%%%%%%%%%%                                                        %%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentstyle[birkhaus]{article}

\begin{document}

\setcounter{page}{9}         %% Can be used to set first page number

\bibliographystyle{unsrt}    %% Set the bibliography style to be unsrt.bst

%% defines the title
\title{Sample Article for Preparation of \titlenewline Documents 
Using the \LaTeX\ Style File\titlenewline birkhaus.sty}

\author{                                % defines the authors
Silvano Balemi\thanks{Automatic Control Laboratory, Swiss Federal
Institute of Technology (ETH), 8092 Zurich, Switzerland,
balemi@aut.ee.ethz.ch}\and
Rein Smedinga\thanks{Dept. of Computing Science, University of Groningen,
P.O.Box 800, NL-9700 Groningen, Netherlands, rein@cs.rug.nl}
}

%% Following command is optional to manually set the running heads.
\markboth{Silvano Balemi and Rein Smedinga}
{Sample Article for the \LaTeX\ Style File birkhaus.sty}

\head{Sample Book \copyright Birkh\"auser Verlag Basel}

\maketitle                               %% Produces the title.
%\thispagestyle{empty}\pagestyle{empty}  %% Removes the headers.

\begin{abstract}                         %% Defines the abstract
This sample \LaTeX\ article gives directions on the use of the
birkhaus.sty style file, which formats articles for proceedings 
according to instructions of Birk\"auser Verlag, Basel.
\end{abstract}

\section{INTRODUCTION}                   %% SECTION TITLES IN CAPITALS
The style file birkhaus.sty can be obtained by E-mail from
the publisher upon request to birkhauser@urz.unibaz.ch

The style file, which sets the font to 12 points, also automatically
sets the running heads with the name of the authors and the title of
the paper.  Should it be necessary to set manually the running heads
(because of the desire to break line at different places or because a
different current head is desired) this can be done with the
standard \LaTeX\ instruction
{\tt$\backslash$markboth\{authors\}\{title\}}.
The headers can also be disabled using the command 
{\tt $\backslash$pagestyle\{empty\}}.

\subsection{Use of the Style File} %% Subsection Titles Lower-cased
The first line of the file should be
{\tt$\backslash$documentstyle[birkhaus]\{article\}}.  Please pay
attention to the following points
\begin{itemize}
\item no font or dimension changes
\item no changes of parskip or parindent
\item the affiliation of the authors should be in a footnote with
      {\tt$\backslash$thanks}. Repeated affiliations can be obtained
      with the command {\tt$\backslash$samethanks}. Please use full
      address including E-mail address if possible.
\item the bibliography style should be defined using the style file
      {\tt unsrt.bib} with the command
      {\tt$\backslash$bibliographystyle\{unsrt\}} 
\end{itemize}
The titles of the sections should be in capital letters, subsections
and subsubsections in lower case letters.

\subsubsection{Environments}   %% Subsubsection Titles Lower-cased
The environments for theorem, propositions etc. can be used with the
usual \LaTeX\ \cite{LaTeX,LaTeXD} syntax. The proof environment 
is already defined. 

\begin{theorem}[Theorem name]
If $A$ satisfies the main axiom, then $A$ holds if and only if $B$
holds.
\end{theorem}
\begin{proof}
The proof is trivial
\end{proof}

The following environments have been predefined:
\begin{enumerate}
\item {\tt theorem}
\item {\tt corollary}
\item {\tt lemma}
\item {\tt proposition}
\item {\tt conjecture}
\item {\tt proof}
\end{enumerate}

\subsubsection{Illustrations}
Illustrations have centered caption. 
\begin{figure}[h]
\begin{center}
\begin{picture}(235,80)(5,85)
\put(  5, 85){\framebox(235,80){}}
\end{picture}
\end{center}
\caption{This is our sample figure}
\end{figure}

\begin{table}[h]
\begin{center}
\begin{tabular}{|c||c|c|}
\hline
$\oplus$& 0 &1\\
\hline\hline
0 & 1 & 0\\\hline
1 & 0 & 1\\\hline
\end{tabular}
\end{center}
\caption{This is our sample table}
\end{table}

\subsection{OTHER ADDITIONAL COMMANDS} 
{\tt$\backslash$titlenewline} can be used to put a newline in the argument
of {\tt$\backslash$title} that appears in the title only, {\tt$\backslash$%
headnewline} similarly puts a newline in that argument that appears in
the headings only. 

\section{CONCLUSION}        
Please address any question to the author balemi@aut.ee.ethz.ch.

\subsection*{Acknowledgment}
The authors would like to acknowledge many people for their useful
comments.

\nocite{*}
\bibliography{bib-file} % defines the bib file for your references
                        % Here defined to be bib-file.bib  
\end{document}            

%%%%%%%%%%%%%%%%%%%%%%%%%%%  End of birkhaus.tex  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
