Skip to content
Snippets Groups Projects
Select Git revision
  • 2695b62f6ecc372fe860bad30bbf89b57865329f
  • master default protected
  • typos
  • development protected
  • ReadMe_Typos
  • example
  • feat/autocomplete-vscode
  • v3.3
  • v3.2
  • v3.1
  • v3.0
  • v2.2
  • v2.1
  • v2.0
  • old-example
  • v1.5
  • v1.4
  • v1.3
  • v1.0
  • v1.1
  • v1.2
21 results

test.tex

Blame
  • Bachelorarbeit.tex 1.58 KiB
    \documentclass[
    	f1,
    	%twoside, % mutually exclude with `todos'
    	todos,
    ]{HsH-report} % documentclass
    
    % include packages here
    \usepackage[useregional=numeric]{datetime2}
    \usepackage{hyperref}
    \usepackage{graphicx}
    \usepackage{subfigure}
    \usepackage{siunitx}
    \usepackage{listings}
    \usepackage{biblatex}
    \usepackage[toc,nonumberlist,nopostdot]{glossaries}
    
    
    \setuptoc{toc}{totoc}
    \addbibresource{bib/Quellenverzeichnis.bib}
    \setglossarystyle{altlist}
    \makeglossaries\loadglsentries[main]{bib/Glossareinträge}
    
    %% coment out the folowing file definitions to exclude them from build temporariely and save compiletime
    \includeonly{
    	chap/abstract,
    	chap/einleitung,
    	chap/standdertechnik,
    	chap/kalibrierung,
    	chap/implementation,
    	chap/fazit,
    	chap/ausblick,
    }
    
    %% projects specific data:
    \author{Jan Wille}
    \matrikelnr{1535115}
    \subject{Bachelorarbeit}
    \title{Video-basierte Fahrspurerkennung von mobilen Robotern}
    %\subtitle{Subtitle}
    
    \date{09.05.2022 -- \today}
    \erstpruefer{Prof. Dr.-Ing. Hanno Homann}
    \zweitpruefer{Prof. Dr.-Ing. Martin Mutz}
    
    % Schlüsselwörter für das Abstract und die PDF-metadaten
    \keywords{lane-detection}
    
    
    \begin{document} % --------------------------------------------------------------------------------
    	\frontmatter
    	\maketitle[r]
    	\declarationAuthorship
    	\include{chap/abstract}
    	\tableofcontents
    	\printglossary
    	\mainmatter
    
    	\include{chap/einleitung}
    
    	\include{chap/standdertechnik}
    
    	\include{chap/kalibrierung}
    
    	\include{chap/implementation}
    
    	\include{chap/fazit}
    
    	\include{chap/ausblick}
    
    	\printbibliography
    	\listoffigures
    	\listoftables
    	\lstlistoflistings
    \end{document}