snipMate für LaTeX Beamer

~/.vim/snippets/tex-beamer.snippet

# Frame with itemize
snippet frit
        \begin{frame}
          \frametitle{${1}}
            \begin{itemize}[<+->]
              \item ${2}
            \end{itemize}
        \end{frame}
 
          ${3}
 
# Frame with exampleblock
snippet frex
        \begin{frame}[fragile]
          \frametitle{${1}}
            \begin{exampleblock}{${2}}
              ${3}
            \end{exampleblock}
        \end{frame}
 
          ${4}
 
# Frame with exampleblock and verbatim
snippet frexverb
        \begin{frame}[fragile]
          \frametitle{${1}}
            \begin{exampleblock}{${2}}
              \begin{verbatim}
        ${3}
              \end{verbatim}
            \end{exampleblock}
        \end{frame}
 
        ${4}