-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.tex
90 lines (65 loc) · 2.3 KB
/
presentation.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
%% 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}
%% SLIDE FORMAT
% use 'beamerthemekit' for standard 4:3 ratio
% for widescreen slides (16:9), use 'beamerthemekitwide'
\usepackage{multimedia}
\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{code}
%% 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{scc}
% (*.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[rootJS - implementation]{rootJS - results of the implementation phase}
\subtitle{Software Engineering Practice - Winter Term 2015/16}
\author{C. Wolff, M. Fr\"uh, S. Rajgopal, C. Haas, J. Schwabe, T. Beffart}
\institute{Steinbuch Center for Computing}
% Bibliography
\usepackage[citestyle=authoryear,bibstyle=numeric,hyperref,backend=biber]{biblatex}
\addbibresource{templates/example.bib}
\bibhang1em
% create a checkmark with tikz
\usepackage{tikz}
\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;}
\begin{document}
% change the following line to "ngerman" for German style date and logos
\selectlanguage{english}
%title page
\begin{frame}
\titlepage
\end{frame}
%table of contents
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\setbeamercovered{invisible}
\input{./sections/criteria.tex}
\input{./sections/designchanges.tex}
\input{./sections/workflow.tex}
\input{./sections/statistics.tex}
\end{document}