-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
103 lines (82 loc) · 2.87 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
\documentclass[12pt,
pagesize,
a4paper,
%twoside, BCOR5mm,
headsepline, % separation line under page header
parskip=half, % European style: more space between paragraphs
abstracton, % set abstraction before TOC
%listof=totoc,
%index=totoc,
bibliography=totoc,
]{scrreprt} % provides appendix and chapters
\usepackage[condensed, defaultmarks]{-settings/latexstyle}
\input{-settings/settings} % load the quite general settings
\input{-settings/commands} % load custom commands by Jannik Beyerstedt
\addbibresource{literature.bib}
% CUSTOM SETTINGS
% \setcounter{tocdepth}{3}
% \setcounter{secnumdepth}{3}
% \usepackage{tabularx}
% \renewcommand{\arraystretch}{1.5} % less crammed tables
% MANUAL HYPHENATION (whitespace separated items)
\hyphenation{}
% CUSTOM UNITS
\sisetup{locale = DE}
% \DeclareSIUnit \fps {fps} % a custom unit (usage: \fps{25})
% use a) ABBREVIATIONS
% \nomenclature[UDP]{UDP}{User Datagram Protocol}
% \makenomenclature
% or b) GLOSSARY AND ACRONYMS
% \newglossaryentry{CBC}{name=CBC, description={Cipher Block Chaining. Betriebsart des symmetrischen Kryptografie-Algorithmus AES}}
% \newacronym{iot}{IoT}{Internet of Things}
% \newacronym[see={[Glossary:]{ota_long}}]{ota}{OTA}{Over the Air\glsadd{ota_long}}
% \makeglossaries
%--------------------------------------------------------------------
% DOCUMENT
%--------------------------------------------------------------------
\begin{document}
%% ------------------------- TITLE PAGE -------------------------- %%
\subject{Labor-/ Projektbericht}
\title{MY DOCUMENT TEMPLATE}
\headerTitle{title for header}
\subtitle{some subtitle}
\author{Jannik Beyerstedt}
\date{TODO: date}
\publishers{\$vorlesung, WiSe/ SoSe~\$jahr\\
Master Informations- und Kommunikationstechnik\\
\vspace{4em} \small
Hochschule für Angewandte Wissenschaften Hamburg\\
Fakultät Technik und Informatik\\
Department Informations- und Elektrotechnik\\
\vspace{2em} \includegraphics[height = 25mm]{-settings/logo-haw-2017.png}}
\maketitle
\newpage
%% --------------------------- ABSTRACT -------------------------- %%
\begin{abstract}
Your abstract.
\end{abstract}
%% ---------------------- TOC AND LISTS OF * --------------------- %%
\tableofcontents
%\newpage
\listoftables
\listoffigures
\lstlistoflistings
\printnomenclature
\newpage
%% ---------------------------- BODY ----------------------------- %%
\input{chapters/10-introduction}
\input{chapters/99-examples}
%% ------------------------ BIBLIOGRAPHY ------------------------- %%
\clearpage
\begin{flushleft}
\printbibliography
\end{flushleft}
%% -------------------- GLOSSARY AND ACRONYMS -------------------- %%
\printglossaries
%% -------------------------- APPENDIX --------------------------- %%
\appendix
\chapter{Example Appendix}
\widetext{-1.25cm}{-1.5cm}{
\lstinputlisting[language=Matlab]{appendix/matlab-code.m}
}
\end{document}