Skip to content
This repository was archived by the owner on Apr 21, 2018. It is now read-only.

Commit 2dd5e94

Browse files
author
YouniS Bensalah
committed
It's something
1 parent 95c78a4 commit 2dd5e94

1 file changed

Lines changed: 117 additions & 0 deletions

File tree

slides-05.tex

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
%% LaTeX-Beamer template for KIT design
2+
%% by Erik Burger, Christian Hammer
3+
%% title picture by Klaus Krogmann
4+
%%
5+
%% version 2.1
6+
%%
7+
%% mostly compatible to KIT corporate design v2.0
8+
%% http://intranet.kit.edu/gestaltungsrichtlinien.php
9+
%%
10+
%% Problems, bugs and comments to
11+
12+
13+
\documentclass[18pt]{beamer}
14+
15+
%% SLIDE FORMAT
16+
17+
% use 'beamerthemekit' for standard 4:3 ratio
18+
% for widescreen slides (16:9), use 'beamerthemekitwide'
19+
20+
\usepackage{templates/beamerthemekit}
21+
% \usepackage{templates/beamerthemekitwide}
22+
23+
\usepackage[utf8]{inputenc}
24+
\usepackage{hyperref}
25+
\usepackage{listings}
26+
\usepackage{xcolor}
27+
\usepackage{colortbl}
28+
29+
\definecolor{lime}{HTML}{8FFF53}
30+
31+
%% TITLE PICTURE
32+
33+
% if a custom picture is to be used on the title page, copy it into the 'logos'
34+
% directory, in the line below, replace 'mypicture' with the
35+
% filename (without extension) and uncomment the following line
36+
% (picture proportions: 63 : 20 for standard, 169 : 40 for wide
37+
% *.eps format if you use latex+dvips+ps2pdf,
38+
% *.jpg/*.png/*.pdf if you use pdflatex)
39+
40+
\titleimage{greendrop}
41+
42+
%% TITLE LOGO
43+
44+
% for a custom logo on the front page, copy your file into the 'logos'
45+
% directory, insert the filename in the line below and uncomment it
46+
47+
%\titlelogo{mylogo}
48+
49+
% (*.eps format if you use latex+dvips+ps2pdf,
50+
% *.jpg/*.png/*.pdf if you use pdflatex)
51+
52+
%% TikZ INTEGRATION
53+
54+
% use these packages for PCM symbols and UML classes
55+
% \usepackage{templates/tikzkit}
56+
% \usepackage{templates/tikzuml}
57+
58+
% the presentation starts here
59+
60+
\title[Sichtbarkeit, Listen, Graphen]{Programmieren:\\ Sichtbarkeit, Listen, Graphen}
61+
\subtitle{Tutorium 30}
62+
\author{YouniS Bensalah}
63+
\date{November 27, 2015}
64+
65+
\institute{Chair for Software Design and Quality}
66+
67+
% Bibliography
68+
69+
\usepackage[citestyle=authoryear,bibstyle=numeric,hyperref,backend=biber]{biblatex}
70+
\addbibresource{templates/example.bib}
71+
\bibhang1em
72+
73+
\begin{document}
74+
75+
% change the following line to "ngerman" for German style date and logos
76+
\selectlanguage{english}
77+
78+
%title page
79+
\begin{frame}
80+
\titlepage
81+
\end{frame}
82+
83+
%table of contents
84+
\begin{frame}{Heute}
85+
\tableofcontents
86+
\end{frame}
87+
88+
89+
\section{Sichtbarkeit und Datenkapselung}
90+
91+
\section{Listen und abstrakte Datentypen}
92+
93+
\section{Graphen}
94+
95+
96+
\appendix
97+
\beginbackup
98+
99+
\begin{frame}{Fragen ?}
100+
\begin{figure}
101+
\includegraphics[scale=.3]{img/fragen.jpg}
102+
\end{figure}
103+
\end{frame}
104+
105+
\begin{frame}{Bis nächste Woche !}
106+
\begin{figure}
107+
\includegraphics[scale=.5]{img/computer_problems.png}
108+
\end{figure}
109+
110+
\begin{flushright}
111+
\footnotesize{xkcd.com}
112+
\end{flushright}
113+
\end{frame}
114+
115+
\backupend
116+
117+
\end{document}

0 commit comments

Comments
 (0)