presentation.tex 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. \documentclass[usepdftitle=false,hyperref={pdfpagelabels=false}]{beamer}
  2. % use KIT-Theme
  3. % see http://sdqweb.ipd.kit.edu/wiki/Dokumentvorlagen
  4. %\usetheme{Frankfurt} % see http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html as fallback
  5. \InputIfFileExists{../templates/beamerthemekit.sty}{\usepackage{../templates/beamerthemekit}}{\usetheme{Frankfurt}}
  6. \usefonttheme{professionalfonts}
  7. \usepackage{hyperref}
  8. \usepackage{lmodern}
  9. \usepackage{listings}
  10. \usepackage{wrapfig} % see http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions
  11. \usepackage[utf8]{inputenc} % this is needed for german umlauts
  12. \usepackage[ngerman]{babel} % this is needed for german umlauts
  13. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  14. \usepackage{verbatim}
  15. \usepackage{relsize}
  16. \usepackage{subfigure}
  17. \usepackage{algorithm,algpseudocode}
  18. \usepackage{minted} % needed for the inclusion of source code
  19. \usepackage{menukeys}
  20. \usepackage{xcolor}
  21. \usepackage{../templates/myStyle}
  22. \newcommand\titleText{Präsentationstechniken - Aufbau und Gliederung}
  23. \institute{Fakultät für Informatik}
  24. \hypersetup{pdftitle={\titleText}}
  25. \beamertemplatenavigationsymbolsempty
  26. \newcommand\InsertToC[1][]{
  27. \begin{frame}{Outline}
  28. \tableofcontents[subsectionstyle=show/show/show, subsubsectionstyle=show/show/show, #1]
  29. \end{frame}
  30. }
  31. \begin{document}
  32. \title{\titleText}
  33. \subtitle{Tutorenprogramm - Start in die Lehre}
  34. \author{Dominik, Martin, Nilan, Timo}
  35. \date{\today}
  36. \subject{Programmieren}
  37. \frame{\titlepage}
  38. \frame{
  39. \frametitle{Inhaltsverzeichnis}
  40. \setcounter{tocdepth}{1}
  41. \tableofcontents
  42. \setcounter{tocdepth}{2}
  43. }
  44. \section{Aufbau und Gliederung}
  45. \input{Aufbau}
  46. \section{Einleitung}
  47. \input{Einleitung}
  48. \section{Hauptteil}
  49. \input{Hauptteil}
  50. \section{Abschluss}
  51. \input{Abschluss}
  52. \section{Abspann}
  53. \subsection{Comic}
  54. \framedgraphic{Vielen Dank für eure Aufmerksamkeit!}{../images/Teach-yourself-C++-in-21-days.png}
  55. \end{document}