-
Notifications
You must be signed in to change notification settings - Fork 0
/
computationalGeometry.tex
99 lines (72 loc) · 2.34 KB
/
computationalGeometry.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
%% LaTeX-Beamer template for KIT design
%% by Erik Burger, Christian Hammer
%% title picture by Klaus Krogmann
%%
%% version 2.1
%%
%% mostly compatible to KIT corporate design v2.0
%% http://intranet.kit.edu/gestaltungsrichtlinien.php
%%
%% Problems, bugs and comments to
\documentclass[18pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{subfigure} %Nur bei Teilbildern (a) (b) (c) notwendig
\usepackage{floatflt}
\usepackage{algorithmicx}
\usepackage{algpseudocode}
%% SLIDE FORMAT
% use 'beamerthemekit' for standard 4:3 ratio
% for widescreen slides (16:9), use 'beamerthemekitwide'
\usepackage{templates/beamerthemekit}
% \usepackage{templates/beamerthemekitwide}
%% TITLE PICTURE
% if a custom picture is to be used on the title page, copy it into the 'logos'
% directory, in the line below, replace 'mypicture' with the
% filename (without extension) and uncomment the following line
% (picture proportions: 63 : 20 for standard, 169 : 40 for wide
% *.eps format if you use latex+dvips+ps2pdf,
% *.jpg/*.png/*.pdf if you use pdflatex)
%\titleimage{mypicture}
%% TITLE LOGO
% for a custom logo on the front page, copy your file into the 'logos'
% directory, insert the filename in the line below and uncomment it
%\titlelogo{mylogo}
% (*.eps format if you use latex+dvips+ps2pdf,
% *.jpg/*.png/*.pdf if you use pdflatex)
%% TikZ INTEGRATION
% use these packages for PCM symbols and UML classes
\usepackage{templates/tikzkit}
% \usepackage{templates/tikzuml}
% the presentation starts here
\title[Algorithmische Geometrie]{Algorithmische Geometrie}
\subtitle{ICPC Praktikum 2012}
\author{Huyen Chau Nguyen, Matthias Holoch}
\institute{Institut für Theoretische Informatik}
% Bibliography
\usepackage[citestyle=authoryear,bibstyle=numeric,hyperref,backend=biber]{biblatex}
\addbibresource{templates/example.bib}
\bibhang1em
\begin{document}
% change the following line to "ngerman" for German style date and logos
\selectlanguage{ngerman}
%title page
\begin{frame}
\titlepage
\end{frame}
%table of contents
\begin{frame}{Outline/Gliederung}
\tableofcontents
\end{frame}
% our chapters:
\input{chapters/1_convexHull}
\input{chapters/2_rangeQuery}
\input{chapters/3_coordCompression}
\input{chapters/4_sweepLine}
\appendix
%\beginbackup
%\begin{frame}[allowframebreaks]{References}
%\printbibliography
%\end{frame}
%\backupend
\end{document}