Path: blob/main/main-english.tex
340 views
% !TeX spellcheck = en-US1% !TeX encoding = utf82% !TeX program = pdflatex3% !BIB program = biber4% -*- coding:utf-8 mod:LaTeX -*-567% vv scroll down to line 200 for content vv8910\let\ifdeutsch\iffalse11\let\ifenglisch\iftrue12\input{pre-documentclass}13\documentclass[14% fontsize=11pt is the standard15a4paper, % Standard format - only KOMAScript uses paper=a4 - https://tex.stackexchange.com/a/61044/907516twoside, % we are optimizing for both screen and two-sided printing. So the page numbers will jump, but the content is configured to stay in the middle (by using the geometry package)17bibliography=totoc,18% idxtotoc, %Index ins Inhaltsverzeichnis19% liststotoc, %List of X ins Inhaltsverzeichnis, mit liststotocnumbered werden die Abbildungsverzeichnisse nummeriert20headsepline,21cleardoublepage=empty,22parskip=half,23% draft % um zu sehen, wo noch nachgebessert werden muss - wichtig, da Bindungskorrektur mit drin24draft=false25]{scrbook}26\input{config}272829\usepackage[30title={Is Oil the future?},31author={Lars K.},32type=bachelor,33institute=iaas, % or other institute names - or just a plain string using {Demo\\Demo...}34course={Medieninformatik},35examiner={Prof.\ Dr.\ Uwe Fessor},36supervisor={Dipl.-Inf.\ Roman Tiker,\\Dipl.-Inf.\ Laura Stern,\\Otto Normalverbraucher,\ M.Sc.},37startdate={July 5, 2018},38enddate={January 5, 2019}39]{scientific-thesis-cover}4041\input{acronyms}4243\makeindex4445\begin{document}4647%tex4ht-Konvertierung verschönern48\iftex4ht49% tell tex4ht to create pictures also for formulas starting with '$'50% WARNING: a tex4ht run now takes forever!51\Configure{$}{\PicMath}{\EndPicMath}{}52%$ % <- syntax highlighting fix for emacs53\Css{body {text-align:justify;}}5455%conversion of .pdf to .png56\Configure{graphics*}57{pdf}58{\Needs{"convert \csname Gin@base\endcsname.pdf59\csname Gin@base\endcsname.png"}%60\Picture[pict]{\csname Gin@base\endcsname.png}%61}62\fi6364%\VerbatimFootnotes %verbatim text in Fußnoten erlauben. Geht normalerweise nicht.6566\input{commands}67\pagenumbering{arabic}68\Titelblatt6970%Eigener Seitenstil fuer die Kurzfassung und das Inhaltsverzeichnis71\deftriplepagestyle{preamble}{}{}{}{}{}{\pagemark}72%Doku zu deftriplepagestyle: scrguide.pdf73\pagestyle{preamble}74\renewcommand*{\chapterpagestyle}{preamble}75767778%Kurzfassung / abstract79%auch im Stil vom Inhaltsverzeichnis80\section*{Abstract}8182<Short summary of the thesis>8384\cleardoublepage8586%Solely for German courses of study87\section*{Kurzfassung}8889<Kurzfassung der Arbeit>9091\cleardoublepage929394% BEGIN: Verzeichnisse9596\iftex4ht97\else98\microtypesetup{protrusion=false}99\fi100101%%%102% Literaturverzeichnis ins TOC mit aufnehmen, aber nur wenn nichts anderes mehr hilft!103% \addcontentsline{toc}{chapter}{Literaturverzeichnis}104%105% oder zB106%\addcontentsline{toc}{section}{Abkürzungsverzeichnis}107%108%%%109110%Produce table of contents111%112%In case you have trouble with headings reaching into the page numbers, enable the following three lines.113%Hint by http://golatex.de/inhaltsverzeichnis-schreibt-ueber-rand-t3106.html114%115%\makeatletter116%\renewcommand{\@pnumwidth}{2em}117%\makeatother118%119\tableofcontents120121% Bei einem ungünstigen Seitenumbruch im Inhaltsverzeichnis, kann dieser mit122% \addtocontents{toc}{\protect\newpage}123% an der passenden Stelle im Fließtext erzwungen werden.124125\listoffigures126\listoftables127128%Wird nur bei Verwendung von der lstlisting-Umgebung mit dem "caption"-Parameter benoetigt129%\lstlistoflistings130%ansonsten:131\ifdeutsch132\listof{Listing}{Verzeichnis der Listings}133\else134\listof{Listing}{List of Listings}135\fi136137%mittels \newfloat wurde die Algorithmus-Gleitumgebung definiert.138%Mit folgendem Befehl werden alle floats dieses Typs ausgegeben139\ifdeutsch140\listof{Algorithmus}{Verzeichnis der Algorithmen}141\else142\listof{Algorithmus}{List of Algorithms}143\fi144%\listofalgorithms %Ist nur für Algorithmen, die mittels \begin{algorithm} umschlossen werden, nötig145146% Abkürzungsverzeichnis147\printnoidxglossaries148149\iftex4ht150\else151%Optischen Randausgleich und Grauwertkorrektur wieder aktivieren152\microtypesetup{protrusion=true}153\fi154155% END: Verzeichnisse156157158% Headline and footline159\renewcommand*{\chapterpagestyle}{scrplain}160\pagestyle{scrheadings}161\pagestyle{scrheadings}162\ihead[]{}163\chead[]{}164\ohead[]{\headmark}165\cfoot[]{}166\ofoot[\usekomafont{pagenumber}\thepage]{\usekomafont{pagenumber}\thepage}167\ifoot[]{}168169170%% vv scroll down for content vv %%171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%203%204% Main content starts here205%206%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%207208209\chapter{Introduction}210211This thesis starts with \cref{chap:k2}.212213We can also typeset \verb|<text>verbatim text</text>|.214Backticks are also rendered correctly: \verb|`words in backticks`|.215216\chapter{Chapter Two}217\label{chap:k2}218219LaTeX hints are provided in \cref{chap:latexhints}.220221\blinddocument222223\chapter{Related Work}224225Describe relevant scientific literature related to your work.226227\chapter{Conclusion and Outlook}228\label{chap:zusfas}229230\section*{Outlook}231232\printbibliography233234All links were last followed on March 17, 2018.235236\appendix237\input{latexhints-english}238239\pagestyle{empty}240\renewcommand*{\chapterpagestyle}{empty}241\Versicherung242\end{document}243244245