%Diese header-Datei geht davon aus, dass mit pdflatex kompiliert wird
\documentclass[a4paper,bibtotoc]{scrreprt}
\pdfminorversion=5
\pdfobjcompresslevel=2

% Optionen für die scrreprt Klasse
%\setkomafont{disposition}{\sffamily}
\pagestyle{headings} %Kapitelüberschrift über jeder Seite
\addtokomafont{caption}{\small} % Bild und Tabellenbeschreibungen in kleinerer Schriftgröße als der normale Text
\setcapindent{1em} %Bild und Tabellenbeschreibungen werden am Anfang um 1em eingerückt

%Sprache, Kodierung und Schriftart
\usepackage[ngerman]{babel} %Silbentrenung nach der neuen Deutschen Rechtschreibung
\usepackage[T1]{fontenc} %
\usepackage[utf8]{inputenc} %Die Eingabedatei (diese Datei) ist utf8 kodiert
\usepackage{lmodern} % die _moderne_ Version der LaTeX default font "Computer Modern" 
\usepackage[babel=true,spacing=true,kerning=true]{microtype} %Neuere Algorithmen für den (Block)satz
% produziert deutlich weniger vertical badboxes

%Zusätzliche Pakete
\usepackage{amsmath,amssymb,upgreek,bm,graphicx,textcomp}
\usepackage[pdfpagelabels,unicode=true]{hyperref} %macht Links im pdf Dokument
\usepackage{hypcap} %sorgt dafür, dass auf Bilder gesprungen wird und nicht auf deren Beschreibung (caption),
%wenn man auf Referenzen klickt

\pdfstringdef{\Author}{Moritz Nadler}


\hypersetup{
    unicode=true,          % non-Latin characters in Acrobat’s bookmarks
    pdfauthor={\Author},     % author
    pdfcreator={\Author},   % creator of the document
    colorlinks=true, % false: boxed links; true: colored links
    backref=true,
}
%agressivere Float platzierung
\setcounter{topnumber}           {2}
\setcounter{bottomnumber}        {2}
\renewcommand{\floatpagefraction}{0.8}
\renewcommand{\topfraction}      {0.8}
\renewcommand{\bottomfraction}   {0.5}
\renewcommand{\textfraction}     {0.1}


\newcommand{\Rs}{R_\mathrm s}
\newcommand{\pddxi}{\frac{\partial}{\partial x_i}}
\newcommand{\pddvi}{\frac{\partial}{\partial v_i}}
\renewcommand{\d}{\mathrm d}
\newcommand{\ddt}{\frac{\d}{\d t}}
\newcommand{\pddt}{\frac{\partial}{\partial t}}

\newcommand{\I}{I_\mathrm{coll}}

\newcommand{\T}{\mathrm T}
\newcommand{\mt}{m_\T}
\newcommand{\e}{\mathrm e}
\DeclareMathOperator{\Sp}{Sp}
\DeclareMathOperator{\D}{D}

\newcommand{\kn}{\mathit{K\!n}}



\begin{titlepage}
\titlehead{ {\Large Universität Tübingen} \\
		Fakultät für Mathematik und Physik \\
		Institut für Astronomie und Astrophysik \\
		Abteilung Computational Physics }
\subject{Diplomarbeit}
\title{Simulation des thermischen Transpirationseffekts in Lichtmühlen}
\author{Moritz Nadler}
\date{Abgabe 1. Dezember 2008\\Verbesserungen \today}
\publishers{Betreut durch Prof. Wilhelm Kley}

\end{titlepage}


\begin{document}
\maketitle

\input{diplomarbeitText}

\end{document}