thesis.tex 4.36 KB
\documentclass{thesisclass}
% Based on thesisclass.cls of Timo Rohrberg, 2009
% ----------------------------------------------------------------
% Thesis - Main document
% ----------------------------------------------------------------

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{dsfont}
\usepackage{pgfplots}

\usepackage{algorithm}
\usepackage{algpseudocode}

 \usepackage{lscape} 

\usepackage[space]{grffile}
\usepackage[utf8]{inputenc}

\usepackage{blindtext}

\renewcommand{\vec}{\overline}
\renewcommand{\to}{\rightarrow}
\newcommand{\lra}{\leftrightarrow}


\newcommand{\fat}{\boldsymbol}
\newcommand{\dotp}[2]{\left\langle #1, #2 \right\rangle}
\newcommand{\dist}[2]{\left\| #1 - #2 \right\|}
\newcommand{\abs}[1]{\left| #1 \right|}

\newcommand{\rec}{RecceMan\textsuperscript{\textregistered}}


%% -------------------------------
%% |  Information for PDF file   |
%% -------------------------------
\hypersetup{
 pdfauthor={Kai Westerkamp},
 pdftitle={Interaktive Nutzung von Aufklärungsergebnissen an einem  Multi-Display-Arbeitsplatz zur Bildauswertung},
 pdfsubject={Not set},
 pdfkeywords={CSD, Bildauswertung}
}


%% ---------------------------------
%% | Information about the thesis  |
%% ---------------------------------

\newcommand{\myname}{Kai Westerkamp}
\newcommand{\mytitle}{\iflanguage{english}{Interactive usage of reconnaissance results at a multi-display image interpretation workstation}{Interaktive Nutzung von Aufklärungsergebnissen an einem  Multi-Display-Arbeitsplatz zur Bildauswertung}}

\newcommand{\reviewerone}{Prof. Dr.-Ing. habil. Jürgen Beyererr}
\newcommand{\reviewertwo}{Prof. Dr. rer. nat. Hartwig Steusloff}
\newcommand{\advisor}{MSc. Sebastian Maier}

\newcommand{\timestart}{15.11.2014}
\newcommand{\timeend}{15.03.2014}
\newcommand{\submissiontime}{15.03.2014}


%% ---------------------------------
%% | ToDo Marker - only for draft! |
%% ---------------------------------
% Remove this section for final version!
\setlength{\marginparwidth}{20mm}

\newcommand{\margtodo}
{\marginpar{\textbf{\textcolor{red}{ToDo}}}{}}

\newcommand{\todo}[1]
{{\textbf{\textcolor{red}{(\margtodo{}#1)}}}{}}


%% --------------------------------
%% | Old Marker - only for draft! |
%% --------------------------------
% Remove this section for final version!
\newenvironment{deprecated}
{\begin{color}{gray}}
{\end{color}}


%% --------------------------------
%% | Settings for word separation |
%% --------------------------------
% Help for separation:
% In german package the following hints are additionally available:
% "- = Additional separation
% "| = Suppress ligation and possible separation (e.g. Schaf"|fell)
% "~ = Hyphenation without separation (e.g. bergauf und "~ab)
% "= = Hyphenation with separation before and after
% "" = Separation without a hyphenation (e.g. und/""oder)

% Describe separation hints here:
\hyphenation{
% Pro-to-koll-in-stan-zen
% Ma-na-ge-ment  Netz-werk-ele-men-ten
% Netz-werk Netz-werk-re-ser-vie-rung
% Netz-werk-adap-ter Fein-ju-stier-ung
% Da-ten-strom-spe-zi-fi-ka-tion Pa-ket-rumpf
% Kon-troll-in-stanz
}


%% ------------------------
%% |    Including files   |
%% ------------------------
% Only files listed here will be included!
% Userful command for partially translating the document (for bug-fixing e.g.)
%\includeonly{chapter3}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Here, main documents begins %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}

% Remove the following line for German text
\selectlanguage{ngerman}
%\selectlanguage{english}

\frontmatter
\pagenumbering{roman}
\include{titlepage}
\blankpage

\include{abstract}

%% -------------------
%% |   Directories   |
%% -------------------
\tableofcontents
\blankpage


%% -----------------
%% |   Main part   |
%% -----------------
\mainmatter
\pagenumbering{arabic}

\include{chapter1}
\include{chapter2}
\include{chapter3}
\include{chapter4}
\include{chapter5}


%% ----------------
%% |   Appendix   |
%% ----------------
\cleardoublepage

%% --------------------
%% |   Bibliography   |
%% --------------------
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{\bibname}

\iflanguage{english}
{\bibliographystyle{IEEEtranSA}}	% english style
{\bibliographystyle{babalpha-fl}}	% german style
												  
% Use IEEEtran for numeric references
\bibliographystyle{IEEEtranSA}

\bibliography{thesis}

\cleardoublepage
\include{declaration}

\end{document}