\documentclass[ 11pt, ,a4paper ,ngerman ,headings=big ,headsepline=true ,chapterprefix=true ,DIV10 ,oneside ,titlepage ,captions=tableheading ,index=totoc ,bibliography=totoc ,listof=totoc %,draft ]{scrreprt} \usepackage[utf8x]{inputenc} \usepackage{ucs} \usepackage{amsmath} \usepackage{amsfonts} \usepackage{amssymb} \usepackage[pdftex]{graphicx} \usepackage{epstopdf} \usepackage{longtable} \usepackage[ automark, headsepline, ilines ]{scrpage2} \graphicspath{{..//img//}} \usepackage[scaled]{helvet} \usepackage[english,ngerman]{babel} \usepackage{makeidx} \usepackage{lmodern} \usepackage{color} \definecolor{darkblue}{rgb}{0,0,.5} \definecolor{darkgreen}{rgb}{0,.5,0} \definecolor{darkred}{rgb}{.5,0,0} \usepackage{listings} \lstset{ % language=C++, % the language of the code basicstyle=\footnotesize, % the size of the fonts that are used for the code numbers=left, % where to put the line-numbers numberstyle=\footnotesize, % the size of the fonts that are used for the line-numbers stepnumber=2, % the step between two line-numbers. If it's 1, each line % will be numbered numbersep=5pt, % how far the line-numbers are from the code backgroundcolor=\color{white}, % choose the background color. You must add \usepackage{color} showspaces=false, % show spaces adding particular underscores showstringspaces=false, % underline spaces within strings showtabs=false, % show tabs within strings adding particular underscores %frame=single, % adds a frame around the code frame=tb, % top and bottom lines tabsize=2, % sets default tabsize to 2 spaces captionpos=b, % sets the caption-position to bottom breaklines=true, % sets automatic line breaking breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace title=\lstname, % show the filename of files included with \lstinputlisting; % also try caption instead of title escapeinside={\%*}{*)}, % if you want to add a comment within your code morekeywords={*,...}, % if you want to add more keywords to the set keywordstyle=\color{darkblue}, % Farbe für die Keywords wie public, void, object u.s.w. commentstyle=\color{darkgreen}, % Farbe der Kommentare stringstyle=\color{darkred} % Farbe der Zeichenketten } % Symbolverzeichnis ------------------------------------------------------------ % Symbolverzeichnisse bequem erstellen. Beruht auf MakeIndex: % makeindex.exe %Name%.nlo -s nomencl.ist -o %Name%.nls % erzeugt dann das Verzeichnis. Dieser Befehl kann z.B. im TeXnicCenter % als Postprozessor eingetragen werden, damit er nicht ständig manuell % ausgeführt werden muss. % Die Definitionen sind ausgegliedert in die Datei "Glossar.tex". % ------------------------------------------------------------------------------ \usepackage[intoc]{nomencl} \let\abbrev\nomenclature \renewcommand{\nomname}{Abkürzungsverzeichnis} \setlength{\nomlabelwidth}{.25\hsize} \renewcommand{\nomlabel}[1]{#1 \dotfill} \setlength{\nomitemsep}{-\parsep} % Schusterjungen und Hurenkinder vermeiden \clubpenalty = 10000 \widowpenalty = 10000 \displaywidowpenalty = 10000 \pagestyle{scrheadings} \automark[chapter]{chapter} \usepackage[hypertexnames=TRUE]{hyperref} \makeindex \makenomenclature \renewcommand{\familydefault}{\sfdefault} \bibliographystyle{alphadin} \newcommand{\myauthor}{Sven Eisenhauer} \newcommand{\mytitle}{Konzeptionierung und prototypische Umsetzung einer Echtzeitbasierten Restbussimulation mittels Mikrocontrollerunterst\"utzung} \newcommand{\myxc}{XORAYA Connect} \hypersetup{ pdftitle={\mytitle}, pdfauthor={\myauthor}, pdfcreator={\myauthor}, pdfsubject={\mytitle}, pdfkeywords={\mytitle}, colorlinks, citecolor=darkblue, filecolor=darkblue, linkcolor=darkblue, urlcolor=darkblue } \begin{document} \newpage \thispagestyle{empty} \null \newpage \selectlanguage{ngerman} \begin{titlepage} \begin{center} \includegraphics[width=10cm]{logo_hda_fbi} \\ \vspace*{\fill}\huge{Hochschule Darmstadt}\\ \large{-- Fachbereich Informatik --} \vfill {{\Large \mytitle}} \vfill { Abschlussarbeit zur Erlangung des akademischen Grades \\ \bf{Master of Science (M.Sc.)} } \vfill {vorgelegt von} \vfill {\Large \myauthor} \vfill{ \makebox[3.5cm][l]{Referent} \makebox[7cm][l]{Prof. Dr. Joachim Wietzke} \\ \makebox[3.5cm][l]{Korreferent} \makebox[7cm][l]{Prof. Dr. Ralf S. Mayer} \\ } \vfill{ \makebox[3.5cm][l]{Ausgabedatum} \makebox[5cm][l]{14.08.2011} \\ \makebox[3.5cm][l]{Abgabedatum} \makebox[5cm][l]{14.02.2012} \\ } \end{center} \end{titlepage} \pagenumbering{Alph} \input{abstract} \input{authorship} \input{thanks} \pagenumbering{roman} \setcounter{page}{0} \tableofcontents \pagebreak \listoffigures \pagebreak \listoftables \pagebreak \renewcommand*{\dictumwidth}{.4\textwidth} \pagenumbering{arabic} \setcounter{page}{1} \input{introduction} \input{fundamentals} \input{concept} \input{prototype} \input{results} \input{conclusion} \begin{appendix} \clearpage \pagenumbering{Roman} \input{appendix} \end{appendix} % Abkürzungsverzeichnis -------------------------------------------------------- \input{glossary} % für korrekte Überschrift in der Kopfzeile \clearpage\markboth{\nomname}{\nomname} \printnomenclature \label{sec:Glossar} \renewcommand{\indexname}{Stichwortverzeichnis} \printindex \nocite{*} \bibliography{literature} \end{document}