master-thesis/Main.tex

124 lines
2.4 KiB
TeX
Raw Normal View History

2021-11-11 10:50:37 +01:00
\documentclass[12pt,twoside,openright]{scrbook}
2021-11-04 23:53:09 +01:00
\usepackage[utf8]{inputenc}
\usepackage{amsfonts}
\usepackage{amssymb}
2022-02-03 00:19:38 +01:00
\usepackage[defernumbers=true]{biblatex}
\addbibresource{literatur.bib}
2021-11-04 23:53:09 +01:00
\usepackage{subcaption}
\usepackage[plain]{fancyref}
\usepackage{rotating}
\usepackage{siunitx}
\sisetup{locale = DE}
2022-02-03 00:19:38 +01:00
\usepackage[inline]{enumitem}
2021-11-04 23:53:09 +01:00
\setlist{itemsep=3pt}
\usepackage[font={small,it}]{caption}
\usepackage{hyperref}
\usepackage{csquotes}
2021-11-04 23:53:09 +01:00
\usepackage{amsmath}
\numberwithin{equation}{section}
\usepackage{graphicx}
\graphicspath{ {./graphics/} }
\usepackage{float}
\floatstyle{boxed}
\restylefloat{wrapfigure}
\usepackage{wrapfig}
2022-02-03 00:19:38 +01:00
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{tablefootnote}
\usepackage{siunitx}
%\usepackage{palatino}
2021-11-04 23:53:09 +01:00
\usepackage{geometry}
\geometry{
a4paper,
2022-02-03 00:19:38 +01:00
inner=30mm,
2021-11-04 23:53:09 +01:00
top=15mm,
bottom=25mm,
2021-11-05 19:32:55 +01:00
outer=25mm
2021-11-04 23:53:09 +01:00
}
2021-11-05 19:32:55 +01:00
\usepackage{todonotes}
\setlength{\marginparwidth}{2cm}
2021-11-04 23:53:09 +01:00
\setlength{\parindent}{0pt}
\setlength{\parskip}{1em}
%% CUSTOM MACROS %%
\newcommand{\todoi}[1]{\todo[inline]{#1}}
\newcommand{\cpp}{\texttt{C++}}
\newcommand{\clang}{\texttt{C}}
2022-02-09 21:49:38 +01:00
\newcommand{\euro}[1]{\,#1}
\newcommand{\fullWidthImage}[3]{
\begin{figure}[h]
\includegraphics[width=0.9\textwidth]{#1}
\caption{#2}
\label{#3}
\centering
\end{figure}
}
2021-11-04 23:53:09 +01:00
%% END CUSTOM MACROS %%
\hypersetup{
pdftitle={Master Thesis - Nareshkumar Rao},
2021-11-05 19:32:55 +01:00
pdfsubject={Measuring Bulk Material Flow using Commercially-Available LIDAR Sensors},
2021-11-04 23:53:09 +01:00
pdfauthor={Nareshkumar Rao},
pdfkeywords={LIDAR, conveyor belt}
}
2022-02-03 00:19:38 +01:00
\raggedbottom
2021-11-04 23:53:09 +01:00
\begin{document}
\pagestyle{plain}
\emergencystretch 1.5em
\addtolength{\jot}{1em}
\addtokomafont{disposition}{\rmfamily}
\RedeclareSectionCommand[afterskip=1pt]{subsection}
2021-11-04 23:53:09 +01:00
\frontmatter
\include{./0-Cover/Cover}
2021-11-04 23:53:09 +01:00
2022-02-03 00:19:38 +01:00
\include{./I-Abstract/Abstract}
\include{./II-Thanks/Thanks}
\include{./III-Eides/Eides}
%\include{./II-Glossary/Glossary}
2021-11-04 23:53:09 +01:00
\setcounter{secnumdepth}{2}
2021-11-11 10:50:37 +01:00
\setcounter{tocdepth}{1}
2021-11-04 23:53:09 +01:00
\tableofcontents
\mainmatter
\include{./1-Introduction/Introduction}
2022-01-14 15:48:18 +01:00
\include{./2-StateOfTheArt/StateOfTheArt}
\include{./3-Design/Design}
2021-11-04 23:53:09 +01:00
2022-01-14 15:48:18 +01:00
\include{./4-Validation/Validation}
2021-11-04 23:53:09 +01:00
\include{./5-Conclusion/Conclusion}
%\bibliographystyle{plain}
%\bibliography{literatur}
2022-02-03 00:19:38 +01:00
\printbibheading[heading=bibintoc]
\printbibliography[notkeyword=online,title=Academic References,heading=subbibintoc]
\printbibliography[keyword=online,title=Online References,heading=subbibintoc]
2021-11-04 23:53:09 +01:00
2022-02-03 00:19:38 +01:00
%\listoftodos
2022-01-14 15:48:18 +01:00
2021-11-04 23:53:09 +01:00
\end{document}