2012-11-21 11:22:39 +01:00
|
|
|
\documentclass[usepdftitle=false,hyperref={pdfpagelabels=false}]{beamer}
|
|
|
|
|
|
|
|
% use KIT-Theme
|
|
|
|
% see http://sdqweb.ipd.kit.edu/wiki/Dokumentvorlagen
|
|
|
|
%\usetheme{Frankfurt} % see http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html as fallback
|
|
|
|
\InputIfFileExists{../templates/beamerthemekit.sty}{\usepackage{../templates/beamerthemekit}}{\usetheme{Frankfurt}}
|
|
|
|
\usefonttheme{professionalfonts}
|
|
|
|
|
|
|
|
\usepackage{hyperref}
|
|
|
|
\usepackage{lmodern}
|
|
|
|
\usepackage{listings}
|
|
|
|
\usepackage{wrapfig} % see http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions
|
|
|
|
\usepackage[utf8]{inputenc} % this is needed for german umlauts
|
|
|
|
\usepackage[ngerman]{babel} % this is needed for german umlauts
|
|
|
|
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
|
|
|
|
\usepackage{verbatim}
|
|
|
|
\usepackage{relsize}
|
|
|
|
\usepackage{subfigure}
|
|
|
|
\usepackage{algorithm,algpseudocode}
|
|
|
|
\usepackage{minted} % needed for the inclusion of source code
|
|
|
|
\usepackage{menukeys}
|
|
|
|
\usepackage{xcolor}
|
|
|
|
\usepackage{../templates/myStyle}
|
|
|
|
|
2012-11-21 11:47:49 +01:00
|
|
|
\newcommand\titleText{Präsentationstechniken - Aufbau und Gliederung}
|
2012-11-21 11:22:39 +01:00
|
|
|
\institute{Fakultät für Informatik}
|
|
|
|
|
|
|
|
\hypersetup{pdftitle={\titleText}}
|
|
|
|
\beamertemplatenavigationsymbolsempty
|
|
|
|
|
|
|
|
\newcommand\InsertToC[1][]{
|
|
|
|
\begin{frame}{Outline}
|
|
|
|
\tableofcontents[subsectionstyle=show/show/show, subsubsectionstyle=show/show/show, #1]
|
|
|
|
\end{frame}
|
|
|
|
}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\title{\titleText}
|
2012-11-21 11:47:49 +01:00
|
|
|
\subtitle{Tutorenprogramm - Start in die Lehre}
|
2012-11-23 06:47:56 +01:00
|
|
|
\author{Martin Thoma, Nilan Marktanner, Timo Abele}
|
2012-11-21 11:22:39 +01:00
|
|
|
\date{\today}
|
|
|
|
\subject{Programmieren}
|
|
|
|
|
|
|
|
\frame{\titlepage}
|
|
|
|
|
|
|
|
\frame{
|
|
|
|
\frametitle{Inhaltsverzeichnis}
|
|
|
|
\setcounter{tocdepth}{1}
|
|
|
|
\tableofcontents
|
|
|
|
\setcounter{tocdepth}{2}
|
|
|
|
}
|
|
|
|
|
2012-11-21 11:47:49 +01:00
|
|
|
\section{Aufbau und Gliederung}
|
|
|
|
\input{Aufbau}
|
2012-11-21 11:22:39 +01:00
|
|
|
|
2012-11-21 11:47:49 +01:00
|
|
|
\section{Einleitung}
|
|
|
|
\input{Einleitung}
|
|
|
|
|
|
|
|
\section{Hauptteil}
|
|
|
|
\input{Hauptteil}
|
2012-11-21 11:22:39 +01:00
|
|
|
|
2012-11-21 11:47:49 +01:00
|
|
|
\section{Abschluss}
|
|
|
|
\input{Abschluss}
|
|
|
|
|
|
|
|
\section{Abspann}
|
2012-11-21 12:13:11 +01:00
|
|
|
\subsection{Comic}
|
2012-11-21 11:22:39 +01:00
|
|
|
\framedgraphic{Vielen Dank für eure Aufmerksamkeit!}{../images/Teach-yourself-C++-in-21-days.png}
|
|
|
|
|
|
|
|
\end{document}
|