1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
\documentclass[12pt,twoside]{report}
\author{
Oliver Kohlbacher, Heiko Klein, Andreas Kerzmann, \\
Andreas Moll, Andreas K\"{a}mper, Anna Katharina Dehof, Andreas Hildebrandt
}
\title{
\begin{center}
\includegraphics[width=9cm]{logo}
\end{center}
\vspace{1cm}
\Large A Tutorial
}
\date{
Release 1.4.1\\
\today
}
\usepackage{longtable}
\include{macros}
\pagestyle{fancyplain}
\sloppy
\makeindex
\begin{document}
\setlength{\headheight}{14.5pt}
\pagenumbering{roman}
\setcounter{page}{1}
\maketitle
\cleardoublepage
% \pagestyle{fancyplain}
\tableofcontents
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{Introduction}
\label{chapter:introduction}
\include{introduction}
\chapter{Getting Started}
\label{chapter:getting-started}
\include{installation}
\include{testing}
\include{building-python}
\chapter{First Steps With BALL}
\label{chapter:first-steps}
\include{example1}
\include{example2}
\include{example3}
\chapter{Foundation Classes}
\label{chapter:foundation-classes}
\include{foundation-classes}
\include{example4}
\include{example5}
\chapter{Kernel}
\label{chapter:kernel}
\include{kernel}
\chapter{VIEW Programming}
\label{chapter:view-programming}
\include{view}
\chapter{Python Extensions}
\label{chapter:python}
\include{python}
\chapter{FAQ}
\label{chapter:faq}
\newpage
\noindent
{\it An up-to-date and searchable version of this FAQ is available at our
website:\\
\FAQURL{http://ball-trac.bioinf.uni-sb.de/wiki/FAQ}}\\
\hspace{1mm}
\rule{\textwidth}{0.1pt}
\hspace{3mm}
\input{faq}
\chapter*{Acknowledgments}
\addcontentsline{toc}{chapter}{Acknowledgments}
For proof-reading and contributing to this tutorial we want to thank
Oliver G\"{a}rtner, Enrico Glaab, Christine Hedderich,
Sophie Weggler, and Daniel St\"{o}ckel.
\newpage
\addtocontents{toc}{\protect\contentsline{chapter}{Index}{\thepage}}
\small
\printindex
\normalsize
\renewcommand{\bibname}{References}
\addtocontents{toc}{\protect\contentsline{chapter}{References}{\thepage}}
\bibliographystyle{abbrv}
\bibliography{tutorial}
\end{document}
|