Emacs personal configuration
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

38 lines
712B

  1. # -*- mode: snippet -*-
  2. # contributor: Claudio Marforio <marforio@gmail.com>
  3. # key: beamer
  4. # group: skeleton
  5. # name: \documentclass{beamer} ...
  6. # --
  7. \documentclass[xcolor=dvipsnames]{beamer}
  8. \usepackage{graphicx,subfigure,url}
  9. % example themes
  10. \usetheme{Frankfurt}
  11. \usecolortheme{seahorse}
  12. \usecolortheme{rose}
  13. % put page numbers
  14. % \setbeamertemplate{footline}[frame number]{}
  15. % remove navigation symbols
  16. % \setbeamertemplate{navigation symbols}{}
  17. \title{${1:Presentation Title}}
  18. \author{${2:Author Name}}
  19. \begin{document}
  20. \frame[plain]{\titlepage}
  21. \begin{frame}[plain]{Outline}
  22. \tableofcontents
  23. \end{frame}
  24. \section{${3:Example Section}}
  25. \begin{frame}{${4:Frame Title}}
  26. \end{frame}
  27. \end{document}