-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
83 lines (69 loc) · 2.42 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
% book example for classicthesis.sty
\documentclass[
% Replace twoside with oneside if you are printing your thesis on a single side
% of the paper, or for viewing on screen.
%oneside,
twoside, %TODO anpassen
11pt, a4paper,
footinclude=true,
headinclude=true,
cleardoublepage=empty,
parskip=half,
BCOR=15mm
%DIV=40
]{scrbook}
\usepackage{etex}
\reserveinserts{28}
\usepackage{lipsum}
% Better tables
\usepackage{booktabs}
\usepackage{tabularx}
% Colors with names. And colored tables
\usepackage[dvipsnames,usenames,table]{xcolor}
\usepackage[unicode=true]{hyperref}
\usepackage[linedheaders,parts,pdfspacing,dottedtoc]{classicthesis}
%\areaset[current]{436pt}{705pt} % Reduce margins
\usepackage[style=alphabetic, date=long, urldate=long, backend=biber]{biblatex}
\addbibresource[]{./thesis.bib}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage[utf8]{inputenc}
\usepackage{ngerman}
\usepackage[T1]{fontenc}
\usepackage{csquotes} % has to come after inputenc
\usepackage{textcomp} % fixes warning when using \micro in a siunitx unit
\usepackage[binary-units=true, decimalsymbol=comma]{siunitx} % Einheiten in Formeln
\usepackage{enumitem} % allows some customization of lists, e.g. vertical spacing
\usepackage{xspace} % fixes spacing after "newcommand" textmacros.
\usepackage[nolist,style=clong]{glossaries}
\usepackage{graphicx} % To insert figures - for PDF-LaTeX: .pdf and .png (.jpg possible, but should be avoided)
\usepackage{esvect}
\input{0_Einstellungen}
\input{0_shortcuts}
\input{tikz_settings}
\makeglossaries % This has to come before the first glossary entry
\loadglsentries{0_Glossar} % This has to come after \makeglossaries
\input{0_hyphenation}
\title{Entwicklung eines Software Defined GNSS Empfängers für den Dragsail-Cubesat}
\author{Stefan Dröge}
\begin{document}
\input{0_title}
\include{FrontBackMatter/Aufgabenstellung}
\include{FrontBackMatter/abstract}
\include{FrontBackMatter/dedication}
%\include{FrontBackMatter/acknowledgements}
\include{FrontBackMatter/declaration}
\include{FrontBackMatter/contents}
%\part{First Part of My Thesis}
\part{Einführung}
\include{1_Einleitung/0_Einleitung_main}
\include{2_Grundlagen/0_Grundlagen_main}
\part{Hauptteil} % TODO Besserer Name?
\include{3_Entwurf/0_Entwurf_main}
\include{4_Implementierung/0_Implementierung_main}
\include{5_Ergebnisse/0_Ergebnisse_main}
\appendix
\part{Appendix}
\include{5_Appendix/0_Appendix_main}
\printbibliography
\end{document}