Advanced.tex 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. \documentclass{beamer}
  2. \usetheme{Frankfurt}
  3. \usecolortheme{default}
  4. \usepackage{hyperref}
  5. \usepackage[utf8]{inputenc} % this is needed for german umlauts
  6. \usepackage[english]{babel} % this is needed for german umlauts
  7. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  8. \begin{document}
  9. \title{The title of your presentation}
  10. \subtitle{A subtitle}
  11. \author{Martin Thoma}
  12. \date{25. March 2013}
  13. \subject{Computer Science}
  14. \frame{\titlepage}
  15. % Show table of contents
  16. \frame{
  17. \frametitle{Contents}
  18. \setcounter{tocdepth}{1}
  19. \tableofcontents
  20. \setcounter{tocdepth}{2}
  21. }
  22. %\AtBeginSection[]{
  23. % \InsertToC[sections={\thesection}] % shows only subsubsections of one subsection
  24. %}
  25. \section{Introduction}
  26. \subsection{A subsection!}
  27. \begin{frame}{Slide title}
  28. Slide content
  29. \end{frame}
  30. \begin{frame}{Another title}
  31. Some text\\
  32. \uncover<2->{Uncover me on slide 2 (-)\\}
  33. \visible<3->{visible from slide 3 on (-)\\}
  34. \only<4->{only from slide 4 (-)\\}
  35. \onslide<5->{on slide 5 and further (-)\\}
  36. \uncover<6>{Uncover me on slide 6 \\}
  37. \visible<7>{visible on 7\\}
  38. \only<8>{only on slide 8 \\}
  39. \alt<8>{I am on slide 8\\}{I am not on slide 8\\}
  40. \onslide<9>{on slide 9\\}
  41. \end{frame}
  42. \begin{frame}{Third title}
  43. \begin{block}{Title}
  44. This is a block.
  45. \end{block}
  46. \begin{exampleblock}{my Title}
  47. This is an example block.
  48. \end{exampleblock}
  49. \begin{alertblock}{another Title}
  50. This is an alert block.
  51. \end{alertblock}
  52. \end{frame}
  53. \end{document}