view theme/tum_beamer/example.tex @ 165:65599f4edb72

TUM theme
author Markus Kaiser <markus.kaiser@in.tum.de>
date Sun, 26 Oct 2014 00:00:35 +0200
parents
children
line wrap: on
line source

\input{preamble.tex}

\title{Minimal Presentation}
\subtitle{Fancy Latex}
\author{\href{mailto:markus.kaiser@in.tum.de}{Markus Kaiser}}

\begin{document}

\begin{frame}
    \titlepage
\end{frame}

\begin{frame}
    \frametitle{Listings}

    \begin{itemize}
        \item Stuff can be itemized
        \item Even recursively
        \begin{itemize}
            \item All the way
            \item down
                \begin{itemize}
                    \item down
                \end{itemize}
        \end{itemize}
    \end{itemize}

    \vfill

    \begin{enumerate}[(a)]
        \item Or enumerated
        \item With different numerals
        \item Which can be changed in the argument
    \end{enumerate}

    \vfill

    \begin{description}[For proper spacing]
        \item[Words] Can be explained
        \item[For proper spacing] beamer provides an optional argument to description
    \end{description}
\end{frame}

\begin{frame}
    \frametitle{Blocks}

    \begin{definition}[Blockification]
        \structure{Blockification} describes the process of putting words in pretty boxes. For \alert{Blockification} to work nicely, one has to observe the following relation between $\tau$, the complete area of the slide and $\mathfrak{B}$, the blockificated content.
        \begin{align}
            \tau^\mathfrak{B} = \frac{\pi}{\sqrt{3}} &\neq 5\\
            \intertext{and}
            1 &\defeq 1
        \end{align}
    \end{definition}

    \vfill

    \begin{example}[Block of different colors]
        This is a block of different color and semantic.
    \end{example}
\end{frame}

\begin{frame}[c]
    \frametitle{Columns}

    \begin{block}{Statement}
        Graphs are cool.
    \end{block}

    \vfill

    \begin{columns}[c]
        \begin{column}{.4\textwidth}
            \begin{itemize}
                \item One can organize things next to each other.
                \item Using columns
                \item There are some tricky details concearning alignment
                \item You might want to \alert{read the manual}!
                \item Which you should use anyway.
            \end{itemize}
        \end{column}
        \begin{column}{.6\textwidth}
            \centering
            \begin{tikzpicture}
                \tikzstyle{vertex} = [circle,thick,draw,fill=tumblue!10]
                \tikzstyle{edge} = [draw, thick, -]

                \draw
                    (0, 0)
                    +(0, 0) node[vertex] (va) {}
                    +(1, 0) node[vertex] (vb) {}
                    +(0, 1) node[vertex] (vc) {}
                    +(1, 1) node[vertex] (vd) {}
                    +(0.5, -0.5) node {$K_4$};

                \draw[edge]
                    (va) -- (vb) -- (vc) -- (vd) -- (va) -- (vc) (vb) -- (vd);
            \end{tikzpicture}
        \end{column}
    \end{columns}
\end{frame}

\end{document}