%% fix hyphenation for some words
\hyphenation{ein-ge-scannt La-bel-ed}


%% the document itself
\begin{document}
  %% add the title page
  \include{firstpage}

  %% add a table of contents
  \tableofcontents{}
  %% no page number on the page with the TOC
  \thispagestyle{empty}

  %% set the line spacing to 1.5
  \onehalfspacing

  %% first chapter - introduction
  \include{introduction}

  %% fingerprints
  \include{fingerprints}

  %% face recognition
  \include{face}

  %% iris recognition
  \include{iris}

  %% ePass
  \include{epass}

  %% outro
  \include{biblio}

  %% end of modified linespread, resuming normal spread
  \singlespacing

  %% declaration
  \include{declaration}

%% yay, we're done!
\end{document}
