forked from manpen/netsci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skript.tex
167 lines (127 loc) · 3.44 KB
/
skript.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
\documentclass[%
11pt,%
ngerman,%
]{book}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{libertine}
\usepackage{dingbat}
\usepackage[title]{appendix}
\usepackage{printlen}
\usepackage[margincaption,outercaption]{sidecap}
\usepackage[a4paper, %showframe,
inner=23mm, bottom=4cm, top=3cm,
outer=52mm, marginparwidth=37mm, marginparsep=5mm
]{geometry}
\linespread{1.1}
\newlength{\margintotalwidth}
\setlength{\margintotalwidth}{\dimexpr\marginparwidth+\marginparsep\relax}
\usepackage[table,dvipsnames]{xcolor}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{nicefrac}
\usepackage{mathtools}
\usepackage{etextools}
\usepackage{tocvsec2}
%\usepackage{keyfloat}
\usepackage[group-separator={,},binary-units=true,exponent-product = \cdot, output-product = \cdot]{siunitx}
%\usepackage{polyglossia}
%\setdefaultlanguage{english}
%\setotherlanguage{german}
% Do not change the order of usepackages in the following block; YOU HAVE BEEN WARNED!
\makeatletter
\let\saved@bibitem\@bibitem
\makeatother
\usepackage{bibentry}
\usepackage[hidelinks]{hyperref}
\usepackage[ngerman]{cleveref}
\Crefname{algocf}{Algorithmus}{Algorithmen}
\crefname{algocf}{Alg.}{Algs.}
\Crefname{exercise}{Aufgabe}{Aufgaben}
\crefname{exercise}{Aufgabe}{Aufgaben}
\usepackage{environ}
\usepackage{tikz}
\usetikzlibrary{arrows, backgrounds}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{shapes.multipart}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{shapes.arrows}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{calc}
\usetikzlibrary{shapes}
\usetikzlibrary{patterns}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{calligraphy}
\tikzset{snake it/.style={decorate, decoration=snake}}
\tikzstyle{vertex}=[fill=white,draw,circle,minimum size=18pt,inner sep=0pt]
\tikzstyle{inode}=[fill=white,draw,circle,minimum size=18pt,inner sep=0pt]
\tikzstyle{leaf}=[fill=white,draw,inner sep=1mm]
\tikzstyle{bigleaf}=[fill=white,draw,inner sep=1mm,minimum size=16pt]
\usepackage{tikzscale}
\makeatletter
\newcommand{\removelatexerror}{\let\@latex@error\@gobble}
\makeatother
\usepackage{adjustbox}
\usepackage{booktabs}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{ifthen}
\usepackage{etoolbox}
\usepackage{xspace}
\usepackage{enumitem}
\usepackage{makeidx}
\makeindex
\usepackage{url}
\usepackage{tabularx}
\input{style}
\input{defs}
\title{Network Science und Algorithm Engineering}
\author{Manuel Penschuck}
\begin{document}
\maketitle
\
\vfill
\vfill
\vfill
\noindent
\textsl{
Einen ganz herzlichen Dank an alle, die durch ihr Feedback, Anregungen und Korrekturen zu diesem Dokument betrugen.
Spezieller Dank geht an (in alphabetischer Reihenfolge):
Daniel Allendorf,
Lukas Geis,
Ulrich Meyer,
Hung Tran,
Zeno Weil.
}
\vfill
\clearpage
\tableofcontents
\chapter{Einleitung}
\input{einleitung}
\chapter{Zufallsgraphen}
\input{erdos_renyi}
\chapter{Knotengrade}
\input{grad_verteilung}
\chapter{Gradsequenzen}
\input{grad_sequenzen}
\input{grad_sequenzen_hh}
\chapter{Graphrandomisierung}
\input{graph_randomisierung}
\chapter{Zufällige Permutationen}
\input{permutationen}
\chapter{Communities}
\input{communities}
\cleardoublepage
\fancyhead[LE]{Bibliographie}
\fancyhead[RO]{}
\thispagestyle{fancy}
\pagestyle{fancy}
\bibliographystyle{plainurl}
\small
\patchcmd{\thebibliography}{\chapter*}{\section*}{}{}
\bibliography{referenzen}
\end{document}