Advertisement
lswest

Beamer template

Jun 30th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.23 KB | None | 0 0
  1. \documentclass{beamer}
  2. %http://www.hartwork.org/beamer-theme-matrix/
  3. \usetheme{PaloAlto} % choose theme
  4. \usepackage[utf8]{inputenc} % display umlaute correctly
  5. \usepackage[ngerman]{babel} % use german date formats
  6. \usepackage[font=scriptsize,labelfont=bf]{caption} % configure captions for images
  7.  
  8. %configure title page (title, author, date)
  9. \title{Meilenstein 3}
  10. \author{Autoren}
  11. \date{datum}
  12.  
  13. \begin{document}
  14. %Disable the sidebar navigation on the first page
  15. \setbeamertemplate{sidebar left}{}
  16. %create the actual title page
  17. \begin{frame}
  18.     \titlepage
  19.     \includegraphics[scale=0.1]{logo.png} % include company logo
  20. \end{frame}
  21.  
  22. %Table of contents (also shown in left-hand sidebar)
  23. \begin{frame}
  24.     \frametitle{Inhaltsverzeichnis}
  25.     \tableofcontents[pausesections]
  26. \end{frame}
  27.  
  28. %Re-enable sidebar navigation
  29. \setbeamertemplate{sidebar left}[sidebar theme]
  30. %Create the section controls
  31. \section{Kontrollen}
  32. %Insert a subsection for the first control
  33. \subsection{Doppelte Anträge}
  34. %Create actual slide (called a "frame"
  35. \begin{frame}
  36.     \frametitle{1. Kontrolle: Doppelte Anträge}
  37.     \begin{figure}
  38.     \includegraphics[scale=0.3,trim=0 3px 2px 0, clip=true]{bild.png}
  39.     \caption{Example}
  40.     \end{figure}
  41. \end{frame}
  42. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement