-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslides.tex
108 lines (79 loc) · 2.64 KB
/
slides.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
%% 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[babel,german=quotes]{csquotes}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subfig}
\usepackage[right]{eurosym}
\usepackage{listings}
%% SLIDE FORMAT
% use 'beamerthemekit' for standard 4:3 ratio
% for widescreen slides (16:9), use 'beamerthemekitwide'
\usepackage{templates/beamerthemekit}
% \usepackage{templates/beamerthemekitwide}
% inserted by Koios to hide comments in lstlistings
\newcommand{\none}[1]{}
\lstset{language=C++, basicstyle=\footnotesize, numbers=left, numberstyle=\tiny\color{gray}, tabsize=4, xleftmargin=2em, rangeprefix=/*$\ , rangesuffix=\ $*/, includerangemarker=false, morecomment=[is]{/*$}{$*/}}
%% 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{title}
%% 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{titlelogo}
% (*.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[C++ Workshop]{C++ Workshop}
\subtitle{08. Block, 22.06.2012}
\author{Markus Jung, Oliver Schneider, Robert Schneider}
\institute{}
\begin{document}
% change the following line to "ngerman" for German style date and logos
\selectlanguage{ngerman}
\AtBeginSection[]{%
\begin{frame}
\tableofcontents[sectionstyle=show/hide,subsectionstyle=hide/show/hide]
\end{frame}
\addtocounter{framenumber}{-1}% If you don't want them to affect the slide number
}
%title page
\begin{frame}
\titlepage
\end{frame}
%table of contents
\begin{frame}{Gliederung}
\tableofcontents
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%
% ADD OWN SECTIONS HERE %
%%%%%%%%%%%%%%%%%%%%%%%%%
%\include{cpp} % includes cpp.tex
\include{const_pointer}
\include{const_class}
\include{mutable}
\include{template_basics}
\include{komplexitaet}
\include{stl1}
\include{praxis}
\end{document}