%% example.tex
%% Copyright 2012 Bruno Menegola
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in
%   http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status ‘maintained’.
%
% The Current Maintainer of this work is Bruno Menegola.
%
% This work consists of all files listed in MANIFEST
%
%
% Description
% ===========
%
% This is an example latex document to build presentation slides based on
% the beamer class using the Inf theme.
\documentclass{beamer}
\usepackage[T1]{fontenc}
\usepackage[brazil]{babel}
\usepackage[utf8]{inputenc}
% Choose the Inf theme
\usetheme{Inf}
% Define the title with \title[short title]{long title}
% Short title is optional
\title[Template Beamer para Slides da INF]
      {Template Beamer para Slides do Instituto de Informática}
% Optional subtitle
\subtitle{Congresso XYZ}
\date{Setembro de 2012}
% Author information
\author{Bruno Menegola}
\institute{Instituto de Informática --- UFRGS\\\texttt{inf.ufrgs.br/\~{}bmenegola}}
\begin{document}
% Command to create title page
\InfTitlePage
\begin{frame}
  \frametitle{Agenda}
  \tableofcontents
\end{frame}
\section{Detalhes}
\frame{
    \frametitle{História}
    \begin{itemize}
        \item O Instituto de Informática mudou de logotipo quando completou 20 anos
        \item Entretanto os templates para slides continuaram os mesmos
        \item Um manual de identidade visual veio junto com o artigo
        \item Esse template que você vê é baseado nele
    \end{itemize}
}
\frame{
    \frametitle{Listas}
    \begin{enumerate}
        \item Listas não numeradas você já viu no slide anterior
        \item Listas numeradas também são possíveis
        \begin{itemize}
            \item Assim como ambos os tipos em vários níveis
        \end{itemize}
    \end{enumerate}
}
\section{Outra seção}
\subsection{Primeira subseção}
\frame{
    \frametitle{Seções}
    \begin{itemize}
        \item O número a esquerda do cabeçalho marca a seção atual
        \item Logo a direita ele é seguido por:
        \begin{itemize}
            \item nome da seção
            \item subseção
            \item título do slide
        \end{itemize}
    \end{itemize}
}
\section{Blocos}
\begin{frame}[plain]
 \sectionpage
\end{frame}
\frame{
    \frametitle{Teoremas}
    \begin{theorem}
        foo
    \end{theorem}
    \begin{proof}
        bar
    \end{proof}
}
\frame{
    \frametitle{Exemplos}
    \begin{exampleblock}{exemplo}
        foo
    \end{exampleblock}
}
\frame{
    \frametitle{Alertas}
    \begin{alertblock}{alerta}
        foo
    \end{alertblock}
}
\section*{}
\begin{frame}
    \frametitle{Obrigado!}
    \InfContacts
\end{frame}
\end{document}