Skip to content
Snippets Groups Projects
mainDocument.tex 2.6 KiB
Newer Older
\documentclass[fontsize=12pt,draft=false]{scrartcl}

%%% PACKAGES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\usepackage[english]{babel}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath, amssymb}
\usepackage[inline]{enumitem}
\usepackage[hidelinks]{hyperref}
\usepackage{tabularx} % used for better table formatting see: https://en.wikibooks.org/wiki/LaTeX/Tables#The_tabularx_package
\usepackage[table]{xcolor}
Phuc Tran Truong's avatar
Phuc Tran Truong committed
\usepackage{graphicx}	% Bilder, Fotos
\usepackage{subfiles}	% split doc into multiple .tex subfiles
\graphicspath{ {./img/} }
\usepackage{float} % used to allow the [H] option for tables, etc.
\usepackage{verbatim}	% makes multiline comments possible via \begin{comment}\end{comment}
\usepackage{ifthen, tikz, xstring, calc, pgfopts} % required for tikz-uml
\usepackage{../tikz-uml}
\usepackage{geometry}
\usepackage{pdflscape}
%\geometry{scale = 0.5} %for class diagram???

%%% GLOSSARY %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{../glossary.tex}

%%% BIBTEX %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[ backend=bibtex,
             sorting=nty,
             maxbibnames=50,
             maxcitenames=8,
             style=alphabetic]{biblatex}
\bibliography{../literature.bib}
\DeclareFieldFormat{labelalpha}{\thefield{entrykey}}
\DeclareFieldFormat{extraalpha}{}

%%% SETTINGS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{parskip}  % makes end of paragraphs use an empty line
\setlength\parindent{0pt} % no indentation

\def\arraystretch{1.0} % extra padding in tables

\definecolor{light-gray}{gray}{0.85}

%%% COMMANDS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\tabHead}[1]{\parbox{0.14\textwidth}{\medskip\textbf{#1}\medskip}}
\newcommand{\tabBody}[1]{\parbox{0.81\textwidth}{\medskip        #1 \medskip}}

%%% META INFORMATION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Hochautomatisiertes Fahren}
\subtitle{Lastenheft}
\author{Gruppe A}

%%% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
  
\maketitle
\tableofcontents

\subfile{sections/projektbeschreibung}
\subfile{sections/organisation}
\subfile{sections/ausbaustufen}
\subfile{sections/usecases}
\subfile{sections/architektur}	
\subfile{sections/modspez}
\subfile{sections/test}
\subfile{sections/auswertung}
%\subfile{sections/fkt_anf(archivert)}
\cleardoublepage

% Glossary
\glsaddall
\printglossaries
%Biblography
\phantomsection
\addcontentsline{toc}{section}{Bibliography}
\printbibliography
  

\end{document}