-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.tex
More file actions
106 lines (77 loc) · 2.4 KB
/
presentation.tex
File metadata and controls
106 lines (77 loc) · 2.4 KB
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
%% 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
%% burger@kit.edu
\pdfminorversion=4
\documentclass[18pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{listings}
%% 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{../media/banner}
%% 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{logo}
% (*.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}
\usepackage{hyperref}
\usepackage{color}
% speech bubbles
\usepackage{tikz}
\usetikzlibrary{shapes.callouts}
\usetikzlibrary{arrows,positioning}
\usetikzlibrary{calc}
% rotations
\usepackage{rotating}
% strike through in math mode
\usepackage{cancel}
% for embedded video
\usepackage{multimedia}
% for multiline comments
\usepackage{verbatim}
% the presentation starts here
\title[Croggle]{Croggle}
\subtitle{Spielend die Denkweise des Programmierens lernen}
\author{PSE 2013/2014}
\institute{Lukas Böhm $\bullet$ Tobias Hornberger $\bullet$ Jonas Mehlhaus $\bullet$ Iris Mehrbrodt $\bullet$ Vincent Schüßler $\bullet$ Lena Winter}
\date{18. Juli 2014}
\beamertemplatenavigationsymbolsempty
\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}{Übersicht}
%\tableofcontents
%\end{frame}
%content
\include{1-intro}
\include{2-demo}
\include{3-lambda}
\include{4-project}
\end{document}