Advertisement
Hirwanto

Org. Beamer

Nov 15th, 2014
644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.19 KB | None | 0 0
  1. %% beamercolorthemeorg.sty
  2. %%
  3. %% Copyright 2007 by Till Tantau and 2013 by Marcin Borkowski
  4. %%
  5. %% This beamer theme is based on Till Tantau's default Beamer theme,
  6. %% with modifications by Marcin Borkowski.
  7. %
  8. % This work may be distributed and/or modified under the
  9. % conditions of the LaTeX Project Public License, version 1.3c,
  10. % found in the file lppl.txt.
  11. %
  12. % This work has the LPPL maintenance status `maintained'.
  13. %
  14. % The Current Maintainer of this work is Marcin Borkowski .
  15. %
  16. % This work consists of the files:
  17. %   beamercolorthemeorg.sty
  18. %   beamerfontthemeorg.sty
  19. %   beamerinnerthemeorg.sty
  20. %   beamerouterthemeorg.sty
  21. %   beamerthemeorg.sty
  22. %   beamerthemeorg-demo.tex
  23.  
  24. \documentclass{beamer}
  25.  
  26. \usetheme{org}
  27. \setbeamertemplate{itemize subitem}[plus]
  28.  
  29. \begin{document}
  30.  
  31. \author{Marcin Borkowski}
  32. \title{An example presentation}
  33. \subtitle{using the \texttt{beamer} package and the \orgbf{org} theme}
  34. \date{\today}
  35. \institute{\texttt{http://mbork.pl}}
  36.  
  37. \begin{frame}
  38.  \maketitle
  39. \end{frame}
  40.  
  41. \begin{frame}
  42.  \frametitle{Contents}
  43.  \tableofcontents
  44. \end{frame}
  45.  
  46. \section{First section}
  47.  
  48. \subsection{Subsection}
  49. \begin{frame}
  50.  An example frame.
  51. \end{frame}
  52.  
  53. \begin{frame}
  54.  \frametitle{A frame with a definition and an example}
  55.  \begin{definition}
  56.    Very \alert{cool} definition.
  57.  \end{definition}
  58.  \begin{example}
  59.    And a~fine example.
  60.  \end{example}
  61.  \begin{alertblock}{Look here!}
  62.    And this is an \orgit{alert block}.
  63.  \end{alertblock}
  64. \end{frame}
  65.  
  66. \begin{frame}[label=enumerations]
  67.  \frametitle{Enumerations}
  68.  \begin{itemize}[<+->]
  69.  \item qwerty
  70.  \item asdf
  71.    \begin{itemize}[<+->]
  72.    \item as
  73.    \item df
  74.    \end{itemize}
  75.  \item zxcvbnm
  76.    \begin{itemize}[<+->]
  77.    \item 1234
  78.      \begin{itemize}[<+->]
  79.      \item 567
  80.      \end{itemize}
  81.    \end{itemize}
  82.  \end{itemize}
  83. \end{frame}
  84.  
  85. \subsection{Second subsection}
  86. \begin{frame}
  87.  \frametitle{A frame with a theorem}
  88.  \begin{theorem}
  89.    A cool theorem.
  90.    \begin{equation*}
  91.      a^2+b^2=c^2\cdot\int_0^\infty f(x)\,dx
  92.    \end{equation*}
  93.  \end{theorem}
  94.  \pause
  95.  \begin{proof}
  96.    With a cool proof.
  97.  \end{proof}
  98. \end{frame}
  99.  
  100. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement