forked from menegola/inf-beamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.tex
140 lines (111 loc) · 2.94 KB
/
example.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
%% 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}