Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. documentclass[presentation]{beamer}
  2. usepackage[english]{babel}
  3. usetheme{Singapore}
  4. useoutertheme{sidebar}
  5. usecolortheme{rose}
  6. setbeamercovered{transparent}
  7. beamertemplatenavigationsymbolsempty
  8. begin{document}
  9. section{Section1}
  10. subsection{Subsection1}
  11. begin{frame}
  12. First frame without title.
  13. end{frame}
  14. subsection{Subsection2}
  15. begin{frame}
  16. Second frame without title.
  17. end{frame}
  18. section{Section2}
  19. subsection{Subsection1}
  20. begin{frame}
  21. Third frame without title.
  22. end{frame}
  23. subsection{Subsection2}
  24. begin{frame}
  25. Fourth frame without title.
  26. end{frame}
  27. end{document}
  28.  
  29. ├── blank
  30. │   ├── defaults
  31. │   ├── files
  32. │   ├── handlers
  33. │   ├── LICENSE
  34. │   ├── meta
  35. │   ├── README.md
  36. │   ├── tasks
  37. │   ├── templates
  38. │   └── vars
  39. └── Blank
  40. ├── ansible.cfg
  41. ├── dev
  42. │   ├── group_vars
  43. │   │   └── all
  44. │   └── hosts
  45. ├── LICENSE
  46. ├── plays
  47. ├── prod
  48. │   ├── group_vars
  49. │   │   └── all
  50. │   └── hosts
  51. ├── README.md
  52. ├── requirements.yml
  53. ├── roles
  54. │   ├── external
  55. │   └── internal
  56. │   └── blank
  57. └── site.yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement