-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
152 lines (108 loc) · 3.95 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
% The main file for CAMP reports
% Don't put any content in here.
% Don't even include content files by using \input or \inlcude.
% Put your content to TEXT.TEX or include it there using \input.
% Uses:
% SETTINGS.TEX contains the settings for this document
% COMMANDS.TEX contains commands which can be used while writing
% INFO.TEX contains the author, title and so on for the cover
% COVER.TEX formats the front cover of the document
% ABSTRACT.TEX contains the abstract to be included (if needed)
% TEXT.TEX contains the actual content of the document
% BIB.BIB containt the BibTeX entries for the document
%% !!!!! IMPORTANT !!!!!
%% HAS TO BE COMPILED WITH -shell-escape
%% Draft document mode
%% Final document
\documentclass[11pt,a4paper,bibtotoc,idxtotoc,headsepline,footsepline,footexclude,BCOR12mm,DIV13]{scrbook}
%\documentclass[11pt,a4paper,bibtotoc,idxtotoc,headsepline,footsepline,footexclude,BCOR20mm,DIV10]{scrbook}
\usepackage[force,almostfull]{textcomp}
%\usepackage[pdftex]{graphicx}
% KOMA-Optionen:
% bibtotoc: include bibliography in table of contents
% idxtotoc: include index in table of contents
% headsepline: use horizontalline under heading
% BCOR: binding correcion (Bindungskorrektur) (e.g.: BCOR5mm)
% DIV: Number of sheet sections (used for layout) (e.g.: DIV12)
% include title and author information for the cover
\input{components/info}
% include settings
\input{components/settings}
% include commands
\input{components/commands}
%\usepackage{algorithm2e}
%\usepackage[linesnumbered]{algorithm2e}
%\usepackage[linesnumbered,ruled]{algorithm2e}
\usepackage[ruled,vlined, longend]{algorithm2e}
\providecommand{\SetAlgoLined}{\SetLine}
\providecommand{\DontPrintSemicolon}{\dontprintsemicolon}
\usepackage{epstopdf}
\usepackage{subfigure}
\usepackage{wrapfig}
\usepackage{pbox}
\usepackage{pdfpages}
%\usepackage[parfill]{parskip}
%\parskip = \baselineskip
%\usepackage{ftnxtra}
%\usepackage{fnpos}
%\makeindex
%% inter line spacing
%\linespread{1.0}
\makeglossary
\begin{document}
\frontmatter
\input{components/cover}
% \clearemptydoublepage
%
% \input{components/titlepage}
% \input{components/cover_maschmeyer}
\clearemptydoublepage
\input{components/titlepage}
\newpage
\includepdf[pages={1}]{components/disclaimer_signed.pdf}
\newpage
%\input{components/disclaimer}
\input{components/acknowledgments}
%abstract english
\input{components/abstract}
\input{components/abstract_german}
\tableofcontents
%\input{components/outline}
\mainmatter
% ---------------------------------------------------------------------------
%
%Introduction and Background Theory
%
% ---------------------------------------------------------------------------
\part[Introduction and Theory]{Introduction and Theory}
\label{part:introAndBackgroundTheory}
\input{chapters/Introduction}
\include{chapters/sot}
\input{chapters/collisionavoidance}
%
%% ---------------------------------------------------------------------------
%%
%% Fully Automated Calibration for Ultrasound
%%
%%% ---------------------------------------------------------------------------
\part[Implementation]{Implementation Details}
\label{part:implementation}
\input{chapters/implenv}
\input{chapters/collisionavoidance_practice}
\input{chapters/experiments}
\input{chapters/conclusion}
\input{chapters/applications}
% ----------------------- ----------------------------------------------------
%
% Appendix
%
% ---------------------------------------------------------------------------
% \part*{Appendix}
% \addcontentsline{toc}{part}{Appendix}
%
% \appendix %---------------------------------------
%
% \input{chapters/oneAppendix}
\clearemptydoublepage
\bibliography{bibliography/literature}
\end{document}