-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproposal.tex
177 lines (162 loc) · 6.38 KB
/
proposal.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
\documentclass{wissdoc}
% ----------------------------------------------------------------
% tva-proposal template -- main document
% ----------------------------------------------------------------
%%
%%
% wissdoc Options: draft, relaxed, pdf --> see wissdoc.cls
% ------------------------------------------------------------------
% additional packages: (for documentation see "latex <package>.dtx")
\usepackage[numbers,sort&compress]{natbib}
\usepackage[english]{babel} % language settings
\usepackage[utf8]{inputenc} % concrete encoding of symbols
\usepackage[printonlyused]{acronym} % show only acronyms used throughout the document
\usepackage{listings} % source code listings
% packages to allow drawing tikz pictures
\usepackage{pgfplots}
\pgfplotsset{compat=1.7}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning,backgrounds,fit,trees}
\usetikzlibrary{fadings,shapes.geometric}
\usetikzlibrary{decorations,scopes,calc,decorations.pathreplacing}
\usepackage{fdsymbol}
% useful packages:
\usepackage{amsmath} % standard package for math stuff
% \usepackage{rotating} % rotation of figures, tables etc.
% \usepackage{enumitem} % cotroll the layout of itemize, enumerate, and description
% \usepackage{pdfpages} % enables including single pages of a pdf or the whole pdf
% \usepackage{newunicodechar} % re-define unicode characters \newunicodechar{}{}
\usepackage{varioref}
% \usepackage{verbatim}
% \usepackage{float} %z.B. \floatstyle{ruled}\restylefloat{figure}
% \usepackage{subfigure}
% \usepackage{fancybox} % cotrolls for boxes (shadows, other forms, etc.)
\usepackage{tabularx} % automatic resizing of column width in tables
\usepackage{colortbl}
% \usepackage{supertab} % enables tables over multiple pages
\usepackage{booktabs}
%% ---------------- end of usepackages -------------
%% Meta-information of the pdf
\hypersetup{
pdfauthor={N.N.},
pdftitle={Not set}
pdfsubject={Not set},
pdfkeywords={Not set}
}
% Print URLs not in Typewriter Font
\def\UrlFont{\rm}
\newcommand{\blankpage}{% creates empty page without page numbers, puts the next page right
\clearpage{\pagestyle{empty}\cleardoublepage}
}
%% options for the whole document
% seperation hints
% important!
% in ngerman-paket the following seperation hints are included:
% "- = additional seperation point
% "| = Avoidance of ligatures and possible separation (e.g., Schaf"|fell)
% "~ = Hyphen at which no separation is allowed (e.g., bergauf und "~ab)
% "= = Hyphen where words before and after may be separated
% "" = Separation point without generating a hyphen (e.g., und/""oder)
% Describe seperation hints for words here
\hyphenation{
% Pro-to-koll-in-stan-zen
% Ma-na-ge-ment Netz-werk-ele-men-ten
% Netz-werk Netz-werk-re-ser-vie-rung
% Netz-werk-adap-ter Fein-ju-stier-ung
% Da-ten-strom-spe-zi-fi-ka-tion Pa-ket-rumpf
% Kon-troll-in-stanz
}
% open index file
\ifnotdraft{\makeindex}
%%%%%%%%%%%%%% includeonly %%%%%%%%%%%%%%%%%%%
% Only the parts that are listed here are included!
\includeonly{%
%########## include essentials ###########
essentials/frontpage,%
%########## utility includes ###########
% defines colors according to KIT coporate desingn and names them for your convinience
utility/colorScheme,
% use this document to re-define latex commands, so that they will suite your needs
utility/commandReDef,
% define customized environments if required
utility/environmentDef,
% define your own lstlist style.
% For instance to use java or python code highlighting or to have a customized pseudocode style
utility/lststyle,
% Define latex macros, and new commands for your convinience
utility/macros,
% map mathmatical symbols and inline formulas to semantic names
% for instance: mapping the '\wedge' command to teh semantic name '\pand' to use it as symbol for a propositional and
utility/mathSymbolDef,
% Define terms that are used frequently so that they are always spelled the same way
utility/termDef,
% Define custom tikz styles for your thesis, if required
utility/tikzStyle,
% map urls to short hand commands for a convinient use
utility/urls,
%########## include chapters ###########
sections/100_introduction,
sections/200_evaluation,
sections/300_workplan,
figures/timeschedule
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%
%% ++++++++++++++++++++++++++++++++++++++++++
%% including utility files
%% ++++++++++++++++++++++++++++++++++++++++++
% defines colors according to KIT coporate desingn and names them for your convinience
\include{utility/colorScheme}
% use this document to re-define latex commands, so that they will suite your needs
\include{utility/commandReDef}
% define customized environments if required
\include{utility/environmentDef}
% define your own lstlist style.
% For instance to use java or python code highlighting or to have a customized pseudocode style
\include{utility/lststyle}
% Define latex macros, and new commands for your convinience
\include{utility/macros}
% map mathmatical symbols and inline formulas to semantic names
% for instance: mapping the '\wedge' command to teh semantic name '\pand' to use it as symbol for a propositional and
\include{utility/mathSymbolDef}
% Define terms that are used frequently so that they are always spelled the same way
\include{utility/termDef}
% Define custom tikz styles for your thesis, if required
\include{utility/tikzStyle}
% map urls to short hand commands for a convinient use
\include{utility/urls}
%
%% ++++++++++++++++++++++++++++++++++++++++++
%% Frontmatter
%% ++++++++++++++++++++++++++++++++++++++++++
%\frontmatter
\pagenumbering{roman}
%% Put input here that should be inserted before the frontpage
%
%% *************** Start of the proposal ****************
%% ++++++++++++++++++++++++++++++++++++++++++
%% Main part
%% ++++++++++++++++++++++++++++++++++++++++++
% specifies where tex searches for your file names
\graphicspath{{figures/}}
%
%\mainmatter
\pagenumbering{arabic}
% introduction
\input{essentials/frontpage}
\input{sections/100_introduction}
% the evaluation of your work (planning, design, execution, results, discussion)
\input{sections/200_evaluation}
\input{sections/300_workplan}
%% ++++++++++++++++++++++++++++++++++++++++++
%% Literature
%% ++++++++++++++++++++++++++++++++++++++++++
% only specify if sources not cited in the text are also to appear
\nocite{*}
%########## different citation styles
\clearpage
\bibliographystyle{plain}
\bibliography{literature/bibAbrv, literature/bibFull, literature/literature}
\end{document}
%% end of file