> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/latex/overleaf-learn-latex-pt/apresentacoes/01-beamer.md).

# Beamer

**`Beamer`** é uma classe LaTeX poderosa e flexível para criar apresentações visualmente apelativas. Este artigo descreve os passos básicos para criar uma apresentação Beamer: criar a página de título, adicionar um logótipo, realçar pontos importantes, criar um índice e adicionar efeitos à apresentação.

## Introdução

Um exemplo mínimo funcional de uma **beamer** apresentação simples é fornecida abaixo.

```latex
\documentclass{beamer}
%Informações a incluir na página de título:
\title{Título de exemplo}
\author{Anónimo}
\institute{Overleaf}
\date{2021}

\begin{document}

\frame{\titlepage}

\begin{frame}
\frametitle{Título de exemplo do frame}
Este é algum texto no primeiro frame. Este é algum texto no primeiro frame. Este é algum texto no primeiro frame.
\end{frame}

\end{document}
```

&#x20;[Abra este `beamer` documento no Overleaf](https://www.overleaf.com/docs?engine=\&snip_name=Simple+beamer+example\&snip=%5Cdocumentclass%7Bbeamer%7D%0A%25Information+to+be+included+in+the+title+page%3A%0A%5Ctitle%7BSample+title%7D%0A%5Cauthor%7BAnonymous%7D%0A%5Cinstitute%7BOverleaf%7D%0A%5Cdate%7B2021%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%0A%5Cframe%7B%5Ctitlepage%7D%0A%0A%5Cbegin%7Bframe%7D%0A%5Cframetitle%7BSample+frame+title%7D%0AThis+is+some+text+in+the+first+frame.+This+is+some+text+in+the+first+frame.+This+is+some+text+in+the+first+frame.%0A%5Cend%7Bframe%7D%0A%0A%5Cend%7Bdocument%7D)

![BeamerExample1OverleafUpdated.png](/files/16fcdc2479c9a482928393bbe19cce69ebb3bd8a)

Após a compilação, será produzido um ficheiro PDF de duas páginas. A primeira página é a página de título, e a segunda contém conteúdo de exemplo.

A primeira declaração no documento afirma que isto é uma apresentação Beamer: `\documentclass{beamer}`

O primeiro comando após o preâmbulo, `\frame{\titlepage}`, gera a página de título. Esta página pode conter informações sobre o autor, instituição, evento, logótipo e assim por diante. Veja [a página de título](#the-title-page) secção para um exemplo mais completo.

O *frame* o ambiente cria o segundo slide, o comando autoexplicativo `\frametitle{Título de exemplo do frame}` é opcional.

Vale a pena notar que, no beamer, o contêiner básico é um **frame**. Um frame não é exatamente equivalente a um slide; um frame pode conter mais de um slide. Por exemplo, um frame com vários pontos pode ser configurado para produzir um novo slide e revelar cada ponto consecutivo.

## Principais funcionalidades do Beamer

A classe Beamer oferece algumas funcionalidades úteis para dar vida à sua apresentação e torná-la mais apelativa. As mais importantes estão listadas abaixo.

### A página de título

Há mais algumas opções para a página de título do que as apresentadas na [introdução](#introduction). O exemplo seguinte é completo; a maioria dos comandos é opcional.

```latex
\title[Sobre Beamer] %opcional
{Sobre a classe Beamer na criação de apresentações}

\subtitle{Uma breve história}

\author[Arthur, Doe] % (opcional, para vários autores)
{A.~B.~Arthur\inst{1} \and J.~Doe\inst{2}}

\institute[VFU] % (opcional)
{
  \inst{1}%
  Faculdade de Física\\
  Universidade Muito Famosa
  \and
  \inst{2}%
  Faculdade de Química\\
  Universidade Muito Famosa
}

\date[VLC 2021] % (opcional)
{Grande Conferência, Abril de 2021}

\logo{\includegraphics[height=1cm]{overleaf-logo}}
```

![Beamer-titlepageUpdated.png](/files/4e0cfbf0e366464cef13ee32ab6521483a357009)

&#x20;[Abra um exemplo do `beamer` pacote no Overleaf](https://www.overleaf.com/project/new/template/19345?id=65231945\&templateName=An+example+of+the+beamer+package\&latexEngine=\&texImage=texlive-full%3A2020.1\&mainFile=)

A distribuição de cada elemento na página de título depende do tema; veja a [Temas](#themes-and-colorthemes) subsecção para mais informações. Aqui está uma descrição de cada comando:

**\title\[Sobre Beamer] {Sobre a classe Beamer...}**

Isto é importante: o título da sua apresentação tem de estar entre chavetas. Pode definir um título mais curto opcional nos parênteses retos: no exemplo, é Sobre Beamer.

**\subtitle**

Subtítulo da sua apresentação. Pode ser omitido se não for necessário.

**\author\[Arthur, Doe]{A.\~B.\~Arthur\inst{1} \and J.\~Doe\inst{2}}**

Primeiro, pode ser adicionada uma versão curta dos nomes dos autores, separada por vírgulas, dentro de parênteses retos. Isto é opcional; se for omitido, é apresentado o nome completo (na parte inferior da página de título no exemplo). Depois, entre chavetas, estão os nomes completos dos autores, separados por um comando \and. Existe também um comando \inst{1} que coloca um sobrescrito para referenciar a instituição onde cada autor trabalha; é opcional e pode ser omitido se houver apenas um autor ou se os autores indicados trabalharem na mesma instituição.

**\institute\[VFU]{\inst{1}Faculdade...**

No argumento deste comando, pode declarar a instituição a que cada autor pertence. O parâmetro entre parênteses retos, o acrónimo da instituição/universidade, é opcional. Depois, o nome da instituição é acrescentado entre chavetas; se houver mais do que uma instituição, estas têm de ser separadas com um comando \and. O comando \institute é opcional, mas é necessário para os sobrescritos inseridos pelos comandos \inst no código anterior.

**\date\[VLC 2021]{Grande Conferência, Abril de 2021}**

Nesta declaração, pode definir o nome e a data do evento onde vai apresentar os seus slides. O parâmetro entre parênteses retos é um nome curto opcional; neste exemplo, é apresentado na parte inferior da página de título.

**\logo{\includegraphics...}**

Isto acrescenta um logótipo a ser exibido. Neste tema, o logótipo é colocado no canto inferior direito. Pode usar texto ou incluir uma imagem.

### Criar um índice

Normalmente, quando tem uma apresentação longa, é conveniente dividi-la em secções ou até subsecções. Neste caso, pode adicionar um índice no início do documento. Eis um exemplo:

```latex
\begin{frame}
\frametitle{Índice}
\tableofcontents
\end{frame}
```

![BeamerEx2Overleaf.png](/files/b8be23759bc10289ceef7b04d98da846f7ff0036)

Como vê, é simples. Dentro do *frame* ambiente, define o título e adiciona o comando `\titlepage`.

Também é possível colocar o índice no início de cada secção e realçar o título da secção atual. Basta adicionar o código abaixo ao ***preâmbulo*** do seu documento LaTeX:

```latex
\AtBeginSection[]
{
  \begin{frame}
    \frametitle{Índice}
    \tableofcontents[currentsection]
  \end{frame}
}
```

![BeamerEx3Overleaf.png](/files/178957725ce361ca1772ad05de477bcf07564d60)

Se usar `\AtBeginSubsection[]` em vez de `\AtBeginSection[]`, o índice aparecerá no início de cada subsecção.

&#x20;[Abra um exemplo do `beamer` pacote no Overleaf](https://www.overleaf.com/project/new/template/19345?id=65231945\&templateName=An+example+of+the+beamer+package\&latexEngine=\&texImage=texlive-full%3A2020.1\&mainFile=)

### Adicionar efeitos a uma apresentação

No [introdução](#introduction), vimos um slide simples usando os `\begin{frame} \end{frame}` delimitadores. Foi mencionado que um *frame* não é equivalente a um *slide*, e o exemplo seguinte ilustrará porquê, adicionando alguns efeitos à apresentação de slides. Neste exemplo, o ficheiro PDF produzido conterá 4 slides — isto destina-se a proporcionar um efeito visual na apresentação.

```latex
\begin{frame}
\frametitle{Título de exemplo do frame}
Este é um texto no segundo frame.
Só para mostrar um exemplo.

\begin{itemize}
 \item<1-> Texto visível no slide 1
 \item<2-> Texto visível no slide 2
 \item<3> Texto visível no slide 3
 \item<4-> Texto visível no slide 4
\end{itemize}
\end{frame}
```

&#x20;[Abra este frame no Overleaf (usando `\usetheme{Madrid}`)](https://www.overleaf.com/docs?engine=\&snip_name=Adding+effects+to+a+beamer+presentation\&snip=%5Cdocumentclass%7Bbeamer%7D%0A%5Cusetheme%7BMadrid%7D%0A%5Cusecolortheme%7Bdefault%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cbegin%7Bframe%7D%0A%5Cframetitle%7BSample+frame+title%7D%0AThis+is+a+text+in+second+frame.+%0AFor+the+sake+of+showing+an+example.%0A%0A%5Cbegin%7Bitemize%7D%0A+%5Citem%3C1-%3E+Text+visible+on+slide+1%0A+%5Citem%3C2-%3E+Text+visible+on+slide+2%0A+%5Citem%3C3%3E+Text+visible+on+slide+3%0A+%5Citem%3C4-%3E+Text+visible+on+slide+4%0A%5Cend%7Bitemize%7D%0A%5Cend%7Bframe%7D%0A%5Cend%7Bdocument%7D)

{% embed url="<https://videos.ctfassets.net/nrgyaltdicpt/5yCcxhdRtZ7Rzcz3S4fkAF/ba7f646bd837886e30b5393ef4822162/Beamer.mp4>" %}

No código há uma lista, declarada pelos `\begin{itemize} \end{itemize}` comandos, e ao lado de cada `item` há um número encerrado em dois caracteres especiais: `< >`. Isto determinará em que slide o elemento aparecerá; se acrescentar um `-` no fim do número, o *item* será mostrado nesse e nos slides subsequentes do atual **frame**, caso contrário aparecerá apenas nesse slide. Veja a animação para uma melhor compreensão disto.

Estes efeitos podem ser aplicados a qualquer tipo de texto, não apenas ao *itemize* ambiente. Há um segundo comando cujo comportamento é semelhante, mas é mais simples, pois não tem de especificar os slides onde o texto será revelado.

```latex
\begin{frame}
 Neste slide \pause

 o texto ficará parcialmente visível \pause

 E, por fim, tudo estará lá
\end{frame}
```

&#x20;[Abra este frame no Overleaf (usando `\usetheme{Madrid}`)](https://www.overleaf.com/docs?engine=\&snip_name=Adding+effects+to+a+beamer+presentation\&snip=%5Cdocumentclass%7Bbeamer%7D%0A%5Cusetheme%7BMadrid%7D%0A%5Cusecolortheme%7Bdefault%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cbegin%7Bframe%7D%0A+In+this+slide+%5Cpause%0A%0A+the+text+will+be+partially+visible+%5Cpause%0A%0A+And+finally+everything+will+be+there%0A%5Cend%7Bframe%7D%0A%5Cend%7Bdocument%7D)

{% embed url="<https://videos.ctfassets.net/nrgyaltdicpt/5ToIIRXGycszyDDgvcCnJK/ddb76c6c961013fb4946ee8beaaf43fc/Beamer2.mp4>" %}

Este código gerará três slides para adicionar um efeito visual à apresentação. `\pause` impedirá que o texto abaixo deste ponto e acima da próxima `\pause` declaração apareça no slide atual.

&#x20;[Abra um exemplo do `beamer` pacote no Overleaf](https://www.overleaf.com/project/new/template/19345?id=65231945\&templateName=An+example+of+the+beamer+package\&latexEngine=\&texImage=texlive-full%3A2020.1\&mainFile=)

## Realçar frases/palavras importantes

Numa apresentação, é uma boa prática realçar os pontos importantes para facilitar ao público a identificação do tema principal.

```latex
\begin{frame}
\frametitle{Título de exemplo do frame}

Neste slide, algum texto importante será
\alert{realçado} porque é importante.
Por favor, não abuse.

\begin{block}{Observação}
Texto de exemplo
\end{block}

\begin{alertblock}{Teorema importante}
Texto de exemplo na caixa vermelha
\end{alertblock}

\begin{examples}
Texto de exemplo na caixa verde. O título do bloco é ``Examples".
\end{examples}
\end{frame}
```

&#x20;[Abra este frame no Overleaf (usando `\usetheme{Madrid}`)](https://www.overleaf.com/docs?engine=\&snip_name=Highlighting+in+beamer\&snip=%5Cdocumentclass%7Bbeamer%7D%0A%5Cusetheme%7BMadrid%7D%0A%5Cusecolortheme%7Bdefault%7D%0A%5Ctitle%5BHighlights%5D%7BHighlighting+text+in+beamer%7D%0A%5Cauthor%7BAnonymous%7D%0A%5Cinstitute%7BOverleaf%7D%0A%5Cdate%7B2021%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cbegin%7Bframe%7D%0A%5Cframetitle%7BSample+frame+title%7D%0A%0AIn+this+slide%2C+some+important+text+will+be%0A%5Calert%7Bhighlighted%7D+because+it%27s+important.%0APlease%2C+don%27t+abuse+it.%0A%0A%5Cbegin%7Bblock%7D%7BRemark%7D%0ASample+text%0A%5Cend%7Bblock%7D%0A%0A%5Cbegin%7Balertblock%7D%7BImportant+theorem%7D%0ASample+text+in+red+box%0A%5Cend%7Balertblock%7D%0A%0A%5Cbegin%7Bexamples%7D%0ASample+text+in+green+box.+The+title+of+the+block+is+%60%60Examples%22.%0A%5Cend%7Bexamples%7D%0A%5Cend%7Bframe%7D%0A%5Cend%7Bdocument%7D)

![BeamerHighlights.png](/files/5a4ffbd54b1fcdaeabd21a7cb999379d530cc089)

Se quiser realçar uma palavra ou uma frase dentro de um parágrafo, o comando `\alert{}` alterará o estilo da palavra dentro das chavetas. O aspeto do texto contido depende do tema que estiver a usar.

Para realçar um parágrafo com conceitos, definições, teoremas ou exemplos, a melhor opção é colocá-lo dentro de uma caixa. Existem três tipos de caixa, e cabe-lhe a si decidir qual se adapta melhor à sua apresentação:

**\begin{block}{Observação} \end{block}**

Uma caixa block envolve o texto numa caixa com o mesmo estilo do resto da apresentação. O texto dentro das chavetas após o código \begin{block} é o título da caixa.

**\begin{alertblock}{Teorema importante} \end{alertblock}**

É o mesmo que block, mas o estilo contrasta com o utilizado pela apresentação.

**\begin{examples} \end{examples}**

Outra vez, é muito semelhante a block; a caixa tem um estilo diferente, mas menos contrastante do que alertblock.

## Personalizar a sua apresentação

Há alguns aspetos de uma **Beamer** apresentação que podem ser facilmente personalizados. Por exemplo, pode definir temas e cores diferentes e alterar a disposição de texto predefinida para um formato de duas colunas.

&#x20;[Abra um exemplo do `beamer` pacote no Overleaf](https://www.overleaf.com/project/new/template/19345?id=65231945\&templateName=An+example+of+the+beamer+package\&latexEngine=\&texImage=texlive-full%3A2020.1\&mainFile=)

### Temas e temas de cores

É realmente fácil usar um tema diferente na sua apresentação de slides. Por exemplo, o `Madrid` tema (a maioria das apresentações de slides neste artigo usa este tema) é definido adicionando o seguinte comando ao preâmbulo:

`\usetheme{Madrid}`

Abaixo estão mais dois exemplos.

#### Tema Berkeley

Pode  [abrir este código LaTeX no Overleaf](<https://www.overleaf.com/docs?engine=\&snip_name=\&snip=\documentclass{beamer}&#xA;\usepackage{tikz}&#xA;\usetheme{Berkeley}&#xA;\usecolortheme{default}&#xA;&#xA;\title\[About+Beamer]+%optional&#xA;{The+Berkeley+theme+with+a+TikZ+graphic+logo}&#xA;\subtitle{Demonstrating+the+Berkeley+theme}&#xA;\author\[Arthur,+Doe]+%+(optional)&#xA;{A.~B.~Arthur\inst{1}+\and+J.~Doe\inst{2}}&#xA;&#xA;\institute\[VFU]+%+(optional)&#xA;{&#xA;++\inst{1}%&#xA;++Faculty+of+Physics\\\\&#xA;++Very+Famous+University&#xA;++\and&#xA;++\inst{2}%&#xA;++Faculty+of+Chemistry\\\\&#xA;++Very+Famous+University&#xA;}&#xA;&#xA;\date\[VLC+2021]+%+(optional)&#xA;{Very+Large+Conference,+April+2021}&#xA;&#xA;%+Use+a+simple+TikZ+graphic+to+show+where+the+logo+is+positioned&#xA;\logo{\begin{tikzpicture}&#xA;\filldraw\[color=red!50,+fill=red!25,+very+thick](0,0)+circle+(0.5);&#xA;\node\[draw,color=white]+at+(0,0)+{LOGO+HERE};&#xA;\end{tikzpicture}}&#xA;&#xA;%End+of+title+page+configuration+block&#xA;%------------------------------------------------------------&#xA;%The+next+block+of+commands+puts+the+table+of+contents+at+the+&#xA;%beginning+of+each+section+and+highlights+the+current+section:&#xA;&#xA;\AtBeginSection\[]&#xA;{&#xA;++\begin{frame}&#xA;++++\frametitle{Table+of+Contents}&#xA;++++\tableofcontents\[currentsection]&#xA;++\end{frame}&#xA;}&#xA;%------------------------------------------------------------&#xA;\begin{document}&#xA;\frame{\titlepage}&#xA;%---------------------------------------------------------&#xA;%Highlighting+text&#xA;\begin{frame}&#xA;\frametitle{Highlighting+text}&#xA;&#xA;In+this+slide,+some+important+text+will+be&#xA;\alert{highlighted}+because+it's+important.&#xA;Please,+don't+abuse+it.&#xA;&#xA;\begin{block}{Remark}&#xA;Sample+text&#xA;\end{block}&#xA;&#xA;\begin{alertblock}{Important+theorem}&#xA;Sample+text+in+red+box&#xA;\end{alertblock}&#xA;&#xA;\begin{examples}&#xA;Sample+text+in+green+box.+The+title+of+the+block+is+``Examples".&#xA;\end{examples}&#xA;\end{frame}&#xA;\end{document}>) para explorar o `Berkeley` tema.

![BerkeleyThemeExample.png](/files/d900cebc687f68e572c9df1c3decc9cbdd4311cc)

#### Tema Copenhagen

Pode  [abrir este código LaTeX no Overleaf](<https://www.overleaf.com/docs?engine=\&snip_name=\&snip=\documentclass{beamer}&#xA;\usepackage{tikz}&#xA;\usetheme{Copenhagen}&#xA;\usecolortheme{default}&#xA;&#xA;\title\[About+Beamer]+%optional&#xA;{The+Copenhagen+theme+with+a+TikZ+graphic+logo}&#xA;\subtitle{Demonstrating+the+Copenhagen+theme}&#xA;\author\[Arthur,+Doe]+%+(optional)&#xA;{A.~B.~Arthur\inst{1}+\and+J.~Doe\inst{2}}&#xA;&#xA;\institute\[VFU]+%+(optional)&#xA;{&#xA;++\inst{1}%&#xA;++Faculty+of+Physics\\\\&#xA;++Very+Famous+University&#xA;++\and&#xA;++\inst{2}%&#xA;++Faculty+of+Chemistry\\\\&#xA;++Very+Famous+University&#xA;}&#xA;&#xA;\date\[VLC+2021]+%+(optional)&#xA;{Very+Large+Conference,+April+2021}&#xA;&#xA;%+Use+a+simple+TikZ+graphic+to+show+where+the+logo+is+positioned&#xA;\logo{\begin{tikzpicture}&#xA;\filldraw\[color=red!50,+fill=red!25,+very+thick](0,0)+circle+(0.5);&#xA;\node\[draw,color=white]+at+(0,0)+{LOGO+HERE};&#xA;\end{tikzpicture}}&#xA;&#xA;%End+of+title+page+configuration+block&#xA;%------------------------------------------------------------&#xA;%The+next+block+of+commands+puts+the+table+of+contents+at+the+&#xA;%beginning+of+each+section+and+highlights+the+current+section:&#xA;&#xA;\AtBeginSection\[]&#xA;{&#xA;++\begin{frame}&#xA;++++\frametitle{Table+of+Contents}&#xA;++++\tableofcontents\[currentsection]&#xA;++\end{frame}&#xA;}&#xA;%------------------------------------------------------------&#xA;\begin{document}&#xA;\frame{\titlepage}&#xA;%---------------------------------------------------------&#xA;%Highlighting+text&#xA;\begin{frame}&#xA;\frametitle{Highlighting+text}&#xA;&#xA;In+this+slide,+some+important+text+will+be&#xA;\alert{highlighted}+because+it's+important.&#xA;Please,+don't+abuse+it.&#xA;&#xA;\begin{block}{Remark}&#xA;Sample+text&#xA;\end{block}&#xA;&#xA;\begin{alertblock}{Important+theorem}&#xA;Sample+text+in+red+box&#xA;\end{alertblock}&#xA;&#xA;\begin{examples}&#xA;Sample+text+in+green+box.+The+title+of+the+block+is+``Examples".&#xA;\end{examples}&#xA;\end{frame}&#xA;\end{document}>) para explorar o `Copenhagen` tema.

![CopenhagenThemeExample.png](/files/001a3a656b9a154f045243f576c4d4496ca72f97)

#### Usar um tema de cores

Um tema pode ser combinado com um `tema de cores` para alterar a cor usada para diferentes elementos.

```latex
\documentclass{beamer}
\usetheme{Madrid}
\usecolortheme{beaver}
```

Tem de colocar o `\usecolortheme` comando abaixo do `\usetheme` comando. Pode  [abrir este código LaTeX no Overleaf](<https://www.overleaf.com/docs?engine=\&snip_name=\&snip=\documentclass{beamer}&#xA;\usepackage{tikz}&#xA;\usetheme{Madrid}&#xA;\usecolortheme{beaver}&#xA;&#xA;\title\[About+Beamer]+%optional&#xA;{The+Madrid+theme+with+a+TikZ+graphic+logo}&#xA;\subtitle{Demonstrating+the+Madrid+theme+with+the+beaver+colortheme}&#xA;\author\[Arthur,+Doe]+%+(optional)&#xA;{A.~B.~Arthur\inst{1}+\and+J.~Doe\inst{2}}&#xA;&#xA;\institute\[VFU]+%+(optional)&#xA;{&#xA;++\inst{1}%&#xA;++Faculty+of+Physics\\\\&#xA;++Very+Famous+University&#xA;++\and&#xA;++\inst{2}%&#xA;++Faculty+of+Chemistry\\\\&#xA;++Very+Famous+University&#xA;}&#xA;&#xA;\date\[VLC+2021]+%+(optional)&#xA;{Very+Large+Conference,+April+2021}&#xA;&#xA;%+Use+a+simple+TikZ+graphic+to+show+where+the+logo+is+positioned&#xA;\logo{\begin{tikzpicture}&#xA;\filldraw\[color=red!50,+fill=red!25,+very+thick](0,0)+circle+(0.5);&#xA;\node\[draw,color=white]+at+(0,0)+{LOGO+HERE};&#xA;\end{tikzpicture}}&#xA;&#xA;%End+of+title+page+configuration+block&#xA;%------------------------------------------------------------&#xA;%The+next+block+of+commands+puts+the+table+of+contents+at+the+&#xA;%beginning+of+each+section+and+highlights+the+current+section:&#xA;&#xA;\AtBeginSection\[]&#xA;{&#xA;++\begin{frame}&#xA;++++\frametitle{Table+of+Contents}&#xA;++++\tableofcontents\[currentsection]&#xA;++\end{frame}&#xA;}&#xA;%------------------------------------------------------------&#xA;\begin{document}&#xA;\frame{\titlepage}&#xA;%---------------------------------------------------------&#xA;%Highlighting+text&#xA;\begin{frame}&#xA;\frametitle{Highlighting+text}&#xA;&#xA;In+this+slide,+some+important+text+will+be&#xA;\alert{highlighted}+because+it's+important.&#xA;Please,+don't+abuse+it.&#xA;&#xA;\begin{block}{Remark}&#xA;Sample+text&#xA;\end{block}&#xA;&#xA;\begin{alertblock}{Important+theorem}&#xA;Sample+text+in+red+box&#xA;\end{alertblock}&#xA;&#xA;\begin{examples}&#xA;Sample+text+in+green+box.+The+title+of+the+block+is+``Examples".&#xA;\end{examples}&#xA;\end{frame}&#xA;\end{document}>) para explorar o `Madrid` tema com o `beaver` tema de cores. Para várias opções, consulte a tabela de capturas de ecrã de diferentes temas e temas de cores na [Guia de referência](#reference-guide) abaixo.

### Tipos de letra

Pode alterar vários parâmetros das fontes. Aqui iremos mencionar como redimensioná-las e alterar o tipo de letra utilizado.

#### Tamanhos de fonte

O tamanho da fonte, aqui `17pt`, pode ser passado como parâmetro para a classe beamer no início do preâmbulo do documento: `\documentclass[17pt]{beamer}`. Abaixo está um exemplo que mostra o resultado da utilização da opção de tamanho de fonte 17pt:

```latex
\documentclass[17pt]{beamer}
\usepackage{tikz}
\usetheme{Madrid}
\usecolortheme{beaver}
\title[Sobre Beamer] %opcional
{Tema Madrid + beaver}
\subtitle{A demonstrar tipos de letra maiores}
\author[Arthur, Doe] % (opcional)
{A.~B.~Arthur\inst{1} \and J.~Doe\inst{2}}

\institute[VFU] % (opcional)
{
  \inst{1}%
  Faculdade de Física\\
  Universidade Muito Famosa
  \and
  \inst{2}%
  Faculdade de Química\\
  Universidade Muito Famosa
}

\date[VLC 2021] % (opcional)
{Grande Conferência, Abril de 2021}

% Use um gráfico TikZ simples para mostrar onde o logótipo está posicionado
\logo{\begin{tikzpicture}
\filldraw[color=red!50, fill=red!25, very thick](0,0) circle (0.5);
\node[draw,color=white] at (0,0) {LOGO HERE};
\end{tikzpicture}}
\begin{document}
\frame{\titlepage}
%Realce de texto
\begin{frame}
\frametitle{A demonstrar tipos de letra grandes}

Neste slide, algum texto importante será
\alert{realçado} porque é importante.
Por favor, não abuse.

\begin{block}{Observação}
Texto de exemplo
\end{block}

\end{frame}
\end{document}
```

&#x20;[Abra este `beamer` documento no Overleaf](https://www.overleaf.com/docs?engine=\&snip_name=Using+larger+font+sizes+with+beamer\&snip=%5Cdocumentclass%5B17pt%5D%7Bbeamer%7D%0A%5Cusepackage%7Btikz%7D%0A%5Cusetheme%7BMadrid%7D%0A%5Cusecolortheme%7Bbeaver%7D%0A%5Ctitle%5BAbout+Beamer%5D+%25optional%0A%7BMadrid+theme+%2B+beaver%7D%0A%5Csubtitle%7BDemonstrating+larger+fonts%7D%0A%5Cauthor%5BArthur%2C+Doe%5D+%25+%28optional%29%0A%7BA.%7EB.%7EArthur%5Cinst%7B1%7D+%5Cand+J.%7EDoe%5Cinst%7B2%7D%7D%0A%0A%5Cinstitute%5BVFU%5D+%25+%28optional%29%0A%7B%0A++%5Cinst%7B1%7D%25%0A++Faculty+of+Physics%5C%5C%0A++Very+Famous+University%0A++%5Cand%0A++%5Cinst%7B2%7D%25%0A++Faculty+of+Chemistry%5C%5C%0A++Very+Famous+University%0A%7D%0A%0A%5Cdate%5BVLC+2021%5D+%25+%28optional%29%0A%7BVery+Large+Conference%2C+April+2021%7D%0A%0A%25+Use+a+simple+TikZ+graphic+to+show+where+the+logo+is+positioned%0A%5Clogo%7B%5Cbegin%7Btikzpicture%7D%0A%5Cfilldraw%5Bcolor%3Dred%2150%2C+fill%3Dred%2125%2C+very+thick%5D%280%2C0%29+circle+%280.5%29%3B%0A%5Cnode%5Bdraw%2Ccolor%3Dwhite%5D+at+%280%2C0%29+%7BLOGO+HERE%7D%3B%0A%5Cend%7Btikzpicture%7D%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cframe%7B%5Ctitlepage%7D%0A%25Highlighting+text%0A%5Cbegin%7Bframe%7D%0A%5Cframetitle%7BDemonstrating+large+fonts%7D%0A%0AIn+this+slide%2C+some+important+text+will+be%0A%5Calert%7Bhighlighted%7D+because+it%27s+important.%0APlease%2C+don%27t+abuse+it.%0A%0A%5Cbegin%7Bblock%7D%7BRemark%7D%0ASample+text%0A%5Cend%7Bblock%7D%0A%0A%5Cend%7Bframe%7D%0A%5Cend%7Bdocument%7D)

![BeamerLargeFontSize.png](/files/98663aab3768822ab88257eb99a72bb635237fe6)

Os tamanhos de fonte disponíveis são 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt. O tamanho de fonte predefinido é 11pt (o que corresponde a 22pt no modo de ecrã completo).

#### Tipos de letra

Para alterar os tipos de letra na sua apresentação Beamer há duas maneiras: ou usa um *tema de fontes* ou importa diretamente um *tipo de letra* do seu sistema. Comecemos com um tema de fontes:

```latex
\documentclass{beamer}
\usefonttheme{structuresmallcapsserif}
\usetheme{Madrid}
```

&#x20;[Abrir um `beamer` documento usando estas definições no Overleaf](https://www.overleaf.com/docs?engine=\&snip_name=test\&snip=%5Cdocumentclass%7Bbeamer%7D%0A%5Cusefonttheme%7Bstructuresmallcapsserif%7D%0A%5Cusetheme%7BMadrid%7D%0A%5Cusepackage%7Btikz%7D%0A%5Ctitle%5BAbout+Beamer%5D+%25optional%0A%7BMadrid+theme+%2B+usefonttheme%7D%0A%5Csubtitle%7BDemonstrating+usefonttheme%7D%0A%5Cauthor%5BArthur%2C+Doe%5D+%25+%28optional%29%0A%7BA.%7EB.%7EArthur%5Cinst%7B1%7D+%5Cand+J.%7EDoe%5Cinst%7B2%7D%7D%0A%0A%5Cinstitute%5BVFU%5D+%25+%28optional%29%0A%7B%0A++%5Cinst%7B1%7D%25%0A++Faculty+of+Physics%5C%5C%0A++Very+Famous+University%0A++%5Cand%0A++%5Cinst%7B2%7D%25%0A++Faculty+of+Chemistry%5C%5C%0A++Very+Famous+University%0A%7D%0A%0A%5Cdate%5BVLC+2021%5D+%25+%28optional%29%0A%7BVery+Large+Conference%2C+April+2021%7D%0A%0A%25+Use+a+simple+TikZ+graphic+to+show+where+the+logo+is+positioned%0A%5Clogo%7B%5Cbegin%7Btikzpicture%7D%0A%5Cfilldraw%5Bcolor%3Dred%2150%2C+fill%3Dred%2125%2C+very+thick%5D%280%2C0%29+circle+%280.5%29%3B%0A%5Cnode%5Bdraw%2Ccolor%3Dwhite%5D+at+%280%2C0%29+%7BLOGO+HERE%7D%3B%0A%5Cend%7Btikzpicture%7D%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cframe%7B%5Ctitlepage%7D%0A%25Highlighting+text%0A%5Cbegin%7Bframe%7D%0A%5Cframetitle%7BDemonstrating+fonts%7D%0A%0AIn+this+slide%2C+some+important+text+will+be%0A%5Calert%7Bhighlighted%7D+because+it%27s+important.%0APlease%2C+don%27t+abuse+it.%0A%0A%5Cbegin%7Bblock%7D%7BRemark%7D%0ASample+text%0A%5Cend%7Bblock%7D%0A%0A%5Cend%7Bframe%7D%0A%5Cend%7Bdocument%7D)

O `\usefonttheme{}` é autoexplicativo. Os temas disponíveis são: structurebold, structurebolditalic, structuresmallcapsserif, structureitalicsserif, serif e default.

Também pode importar famílias de fontes instaladas no seu sistema.

```latex
\documentclass{beamer}
\usepackage{bookman}
\usetheme{Madrid}
```

&#x20;[Abrir um `beamer` documento usando estas definições no Overleaf](https://www.overleaf.com/docs?engine=\&snip_name=Demonstrating+the+bookman+package+in+beamer\&snip=%5Cdocumentclass%7Bbeamer%7D%0A%5Cusepackage%7Bbookman%7D%0A%5Cusetheme%7BMadrid%7D%0A%5Cusepackage%7Btikz%7D%0A%5Ctitle%5BAbout+Beamer%5D+%25optional%0A%7BMadrid+theme+%2B+bookman%7D%0A%5Csubtitle%7BDemonstrating+the+bookman+package%7D%0A%5Cauthor%5BArthur%2C+Doe%5D+%25+%28optional%29%0A%7BA.%7EB.%7EArthur%5Cinst%7B1%7D+%5Cand+J.%7EDoe%5Cinst%7B2%7D%7D%0A%0A%5Cinstitute%5BVFU%5D+%25+%28optional%29%0A%7B%0A++%5Cinst%7B1%7D%25%0A++Faculty+of+Physics%5C%5C%0A++Very+Famous+University%0A++%5Cand%0A++%5Cinst%7B2%7D%25%0A++Faculty+of+Chemistry%5C%5C%0A++Very+Famous+University%0A%7D%0A%0A%5Cdate%5BVLC+2021%5D+%25+%28optional%29%0A%7BVery+Large+Conference%2C+April+2021%7D%0A%0A%25+Use+a+simple+TikZ+graphic+to+show+where+the+logo+is+positioned%0A%5Clogo%7B%5Cbegin%7Btikzpicture%7D%0A%5Cfilldraw%5Bcolor%3Dred%2150%2C+fill%3Dred%2125%2C+very+thick%5D%280%2C0%29+circle+%280.5%29%3B%0A%5Cnode%5Bdraw%2Ccolor%3Dwhite%5D+at+%280%2C0%29+%7BLOGO+HERE%7D%3B%0A%5Cend%7Btikzpicture%7D%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cframe%7B%5Ctitlepage%7D%0A%25Highlighting+text%0A%5Cbegin%7Bframe%7D%0A%5Cframetitle%7BDemonstrating+fonts%7D%0A%0AIn+this+slide%2C+some+important+text+will+be%0A%5Calert%7Bhighlighted%7D+because+it%27s+important.%0APlease%2C+don%27t+abuse+it.%0A%0A%5Cbegin%7Bblock%7D%7BRemark%7D%0ASample+text%0A%5Cend%7Bblock%7D%0A%0A%5Cend%7Bframe%7D%0A%5Cend%7Bdocument%7D)

O comando `\usepackage{bookman}` importa a *bookman* família de fontes a ser usada na apresentação. As fontes disponíveis dependem da sua instalação LaTeX; as mais comuns são: mathptmx, helvet, avat, bookman, chancery, charter, culer, mathtime, mathptm, newcent, palatino e pifont.

### Colunas

Por vezes, a informação numa apresentação fica melhor num formato de duas colunas. Nesses casos, use o *columns* ambiente:

```latex
\begin{frame}
\frametitle{Slide de duas colunas}
\begin{columns}
\column{0.5\textwidth}
Este é um texto na primeira coluna.
$$E=mc^2$$
\begin{itemize}
\item Primeiro item
\item Segundo item
\end{itemize}

\column{0.5\textwidth}
Este texto ficará na segunda coluna
e, pensando melhor, este é um bom
layout em alguns casos.
\end{columns}
\end{frame}
```

&#x20;[Abra este frame no Overleaf (usando `\usetheme{Madrid}`)](https://www.overleaf.com/docs?engine=\&snip_name=Two+columns+in+beamer\&snip=%5Cdocumentclass%7Bbeamer%7D%0A%5Cusetheme%7BMadrid%7D%0A%5Cusecolortheme%7Bdefault%7D%0A%5Ctitle%5BHighlights%5D%7BHighlighting+text+in+beamer%7D%0A%5Cauthor%7BAnonymous%7D%0A%5Cinstitute%7BOverleaf%7D%0A%5Cdate%7B2021%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cbegin%7Bframe%7D%0A%5Cframetitle%7BTwo-column+slide%7D%0A%5Cbegin%7Bcolumns%7D%0A%5Ccolumn%7B0.5%5Ctextwidth%7D%0AThis+is+a+text+in+first+column.%0A%24%24E%3Dmc%5E2%24%24%0A%5Cbegin%7Bitemize%7D%0A%5Citem+First+item%0A%5Citem+Second+item%0A%5Cend%7Bitemize%7D%0A%0A%5Ccolumn%7B0.5%5Ctextwidth%7D%0AThis+text+will+be+in+the+second+column%0Aand+on+a+second+thoughts%2C+this+is+a+nice+looking%0Alayout+in+some+cases.%0A%5Cend%7Bcolumns%7D%0A%5Cend%7Bframe%7D%0A%5Cend%7Bdocument%7D)

Depois do *frame* e *frametitle* as declarações iniciam um novo *columns* ambiente delimitado pelo `\begin{columns} \end{columns}`. Pode declarar a largura de cada coluna com o `\column{0.5\textwidth}` código; um número mais baixo reduzirá a largura.

&#x20;[Abra um exemplo do `beamer` pacote no Overleaf](https://www.overleaf.com/project/new/template/19345?id=65231945\&templateName=An+example+of+the+beamer+package\&latexEngine=\&texImage=texlive-full%3A2020.1\&mainFile=)

## Guia de referência

Abaixo está uma tabela com capturas de ecrã da *página de título* e de um slide normal no Beamer usando diferentes combinações de **temas** (linhas) e **temas de cores** (colunas). Para ter uma lista completa de temas e temas de cores, consulte a [leitura adicional](#further-reading) secção para referências.

|             | default                                                                                                                                                     | beaver                                                                                                                                                    | beetle                                                                                                                                                    | seahorse                                                                                                                                                      | wolverine                                                                                                                                                       |
| ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| default     | ![Default default 1.png](/files/87e1f6a0f379586a290026f21e3b8d201fc6b62f) ![Default default 2.png](/files/bccd437e6a9142ad6023bdef1136f5958d78b4a2)         | ![Default beaver 1a.png](/files/f519cc13276b89c578c7c739489c62ac022cdbc4) ![Default beaver 2a.png](/files/191b5846312e3946f72a825eb5b8fe4303116516)       | ![Default beetle 1.png](/files/0b55b33a94ab00447d7aa6377d976dbcdd7182b7) ![Default beetle 2.png](/files/76d4b32b352d760ba1c3f971a49650f722380a31)         | ![Default seahorse 1.png](/files/d664ebcd42ed27b48fa19a0b263970115e999818) ![Default seahorse 2.png](/files/2ce99423ec108f46c9d37f1aa52040669b99427b)         | ![Default wolverine 1.png](/files/4835645e4c7108e7cec38ebab7373877bd089cc3) ![Default wolverine 2.png](/files/f07cd2309185ad2b552925f2a0b574b79753ada8)         |
| AnnArbor    | ![Annarbor default 1.png](/files/a6797e5b362d7fab99540f857444139f9ee661bb) ![Annarbor default 2.png](/files/d273c37b2f5cc13eeefe5742f0547c3d385ca55b)       | ![Annarbor beaver 1.png](/files/cf8a94a4fab5ba264913f9bf9d6e2304999e0f96) ![Annarbor beaver 2.png](/files/b3454001e5c0c8ffa1fdaaf9fab1478a6dbd911b)       | ![Annarbor beetle 1.png](/files/459042378699f4839003e95542cf5b722d756da2) ![Annarbor beetle 2.png](/files/eafd09f0eba680a6f46255e1955658f571839cde)       | ![Annarbor seahorse 1.png](/files/5f437846a0d08c294de24d21d74220de3848e79d) ![Annarbor seahorse 2.png](/files/a75f2bd9a9f45e8f32e58c793e90b8115f3cdbfe)       | ![Annarbor wolverine 1.png](/files/f1f19f80b4811111b05ba8122fa5859d76cdedc9) ![Annarbor wolverine 2.png](/files/1fe74f7217122a2417191ba5742084de8c465a95)       |
| Antibes     | ![Antibes default 1.png](/files/3b5efa627128997240e53e86b709a0be7a67022f) ![Antibes default 2.png](/files/db0137dcfd98aa33428726cf66cf67057cc4bd44)         | ![Antibes beaver 1.png](/files/88016285fcf3af87d4a3f3276f98e1533f5ba339) ![Antibes beaver 2.png](/files/8d1597673ff3f631d38ae096d8d065ed64581988)         | ![Antibes beetle 1.png](/files/a5832786e5fae0461cfc956706c3726ed799d0c7) ![Antibes beetle 2.png](/files/8d0d3e04bd6d93bc3ba47b68a965454e691ddcda)         | ![Antibes seahorse 1.png](/files/dbfe858bb901a625ec20a907f33570cbcdeb53c4) ![Antibes seahorse 2.png](/files/8cbc527549c4f293616fcc9ce2125c637bc9cd99)         | ![Antibes wolverine 1.png](/files/6e0a7774ce10eb37aba58cb6a7799af374d72e5b) ![Antibes wolverine 2.png](/files/da80bd3bcf6ace2f47dee7bb46607450bef32767)         |
| Bergen      | ![Bergen default 1.png](/files/7cc143861ede5339495f8b00ee403850fe5cfd1f) ![Bergen default 2.png](/files/34702164dd4f514ace1fe3766dc1029aab92c906)           | ![Bergen beaver 1.png](/files/ba5f3a308764bcc6c12db22e85e5e908ad3318a3) ![Bergen beaver 2.png](/files/353c529252edc765fd8084d89c608fd62d59f402)           | ![Bergen beetle 1.png](/files/42b0478436c2ce49455b42184d3788bfe24a2144) ![Bergen beetle 2.png](/files/bd93dd37876ca0c7c02b89a8eb56151fc4fb6065)           | ![Bergen seahorse 1.png](/files/8a8d64a11a1f7e20e8bcf2cba9033a48a10a2aab) ![Bergen seahorse 2.png](/files/dafbb2330fe5f877d21d70746daec0a496de841b)           | ![Bergen wolverine 1.png](/files/fcf5f9bf9f77462a125f0b910175670f8b270386) ![Bergen wolverine 2.png](/files/6fb930a3ff8ac947a94f54452012f49682b66e8c)           |
| Berkeley    | ![Berkeley default 1.png](/files/70ee196278cf5df5031f8280d8f468d9fb761c1c) ![Berkeley default 2.png](/files/bba2f23f6f40b437a97c155e213cb1d401e66bb4)       | ![Berkeley beaver 1.png](/files/1640016f1ec6ef612af0a0b2a99c07f36b4f33a6) ![Berkeley beaver 2.png](/files/ffd782012cb01ab8b88feeb1158ec7ac2b535a32)       | ![Berkeley beetle 1.png](/files/e7ae6d9a2d0e97e003121bc480244c629665ed7d) ![Berkeley beetle 2.png](/files/ca1b3812a48ef5067fb2683c67ad9906832ef217)       | ![Berkeley seahorse 1.png](/files/ebea2d4bc583f4472725f66b18afbbdc338ebe70) ![Berkeley seahorse 2.png](/files/4f5b10e6c65d6b91ada95ea55029b6c0085a7cf3)       | ![Berkeley wolverine 1.png](/files/c3e47394dac13b5a8671eaed8b0596d1ffbe8525) ![Berkeley wolverine 2.png](/files/aea50da21feca7719f742022659232a18bc0857f)       |
| Berlin      | ![Berlin default 1.png](/files/088cc4c254395a5c05e06bde814943fce8ef46d7) ![Berlin default 2.png](/files/670a647f7b32d2df639303ce5d1b1c5946933a3d)           | ![Berlin beaver 1.png](/files/56aeab85b285aea20b0458262fef7bb0a7fd64ef) ![Berlin beaver 2.png](/files/4c1669c9fd2cc7277bf696fa446bdb96343fb4ae)           | ![Berlin beetle 1.png](/files/3ae0bbadf10bbcdf6e6e7eaa598b081aa092cb80) ![Berlin beetle 2.png](/files/a88165b848f22674e7ae62a977dea6a5e3961c10)           | ![Berlin seahorse 1.png](/files/fbac9503f7981540d4a28fa8d93323a6bbcabcbc) ![Berlin seahorse 2.png](/files/68cd99a066620c11ef9724f9f20f816e4486cc95)           | ![Berlin wolverine 1.png](/files/4b770f6565ae53afe159678588adb808b35d05c0) ![Berlin wolverine 2.png](/files/c0a21d6f5fe7cd590db9f88c3bbcb697e9cc6007)           |
| Boadilla    | ![Boadilla default 1.png](/files/a2941ce57b7cb95aeffd0cfc57eaef5a7b71500d) ![Boadilla default 2.png](/files/5af2227d138e35894a6610c6273c251a48bea47e)       | ![Boadilla beaver 1.png](/files/7f07b60e7c5bbfb571dd3d703a6f10e4d6d6a6e8) ![Boadilla beaver 2.png](/files/f2a2af32782d63912dec8b920d56d69c6bc263af)       | ![Boadilla beetle 1.png](/files/04fd9f1ce9584f54c16821d3bddcf7d2b39eb88d) ![Boadilla beetle 2.png](/files/654787862db64b4ff8e60446ca21bde676f9e836)       | ![Boadilla seahorse 1.png](/files/e1589f0a374c3c066aa5b211415692044fac14ca) ![Boadilla seahorse 2.png](/files/5708ba1007fe7027036d18dcdb8cd1c4ed037324)       | ![Boadilla wolverine 1.png](/files/3eff4391f430c548218ac5e62789022c2befeb08) ![Boadilla wolverine 2.png](/files/41b08b5e11d03703980f7da8d111ead99ccb01e6)       |
| CambridgeUS | ![CambridgeUS default 1.png](/files/6f4ec8b072158376f327b5ab123a82e8e6e6dcc9) ![CambridgeUS default 2.png](/files/7e21f92abaec88af41804ad15644dca14c4b67e9) | ![CambridgeUS beaver 1.png](/files/c09cea58a093a6f548a54dbdc14c1171108eadfd) ![CambridgeUS beaver 2.png](/files/33f51ee8bbf9dec532435a006e74d377a0e472b9) | ![CambridgeUS beetle 1.png](/files/7959cf73d9a18a60d517ac22e020440237588d15) ![CambridgeUS beetle 2.png](/files/8debb4e30479e46a0b8d8081ad6918c25184ee62) | ![CambridgeUS seahorse 1.png](/files/0d822a92a0c6085d8b3e15a39790352f213b134e) ![CambridgeUS seahorse 2.png](/files/127dfef46571459de41512291ecaa6873b4f8bc1) | ![CambridgeUS wolverine 1.png](/files/2e496189b43d728459ff4e8e841b1b234dbaa7a8) ![CambridgeUS wolverine 2.png](/files/520b2e002e5aed2f37abdceea3746171a02b686b) |
| Copenhagen  | ![Copenhagen default 1.png](/files/cdab7ab94b7bd33cdd9644e955e2532046985bef) ![Copenhagen default 2.png](/files/c6a0748567da3b90b0fd43b50ea9f8e78a3a102b)   | ![Copenhagen beaver 1.png](/files/c52669ccfaacd67e8f0e33ce8ec5fb244f3f82ae) ![Copenhagen beaver 2.png](/files/d6227287e67b7c06a0ff284b617542d22a87ec16)   | ![Copenhagen beetle 1.png](/files/691abe20c966124c1b74746600c43418f3953228) ![Copenhagen beetle 2.png](/files/73d124f218fa6656b52ae744c97d63a0e7babd12)   | ![Copenhagen seahorse 1.png](/files/3d2cd3858dc3a31f8a23c71c27e3efc83c54fbfc) ![Copenhagen seahorse 2.png](/files/330401950f2189c9f791c292f848240d6c399df0)   | ![Copenhagen wolverine 1.png](/files/2603c0eacc26f00e0212e0727f1b806e9f8175a3) ![Copenhagen wolverine 2.png](/files/e46ca2695cae0bcefe15181bcd3ca24cc3c4dfb6)   |
| Darmstadt   | ![Darmstadt default 1.png](/files/4dc0eeb6110e4166595891f0f080587ae52326e9) ![Darmstadt default 2.png](/files/3f4c26dace31418c18a6c01f1d45d11d79f39adb)     | ![Darmstadt beaver 1.png](/files/6c9fff1229bfbfa63cd87df2afbf75f1b7387de0) ![Darmstadt beaver 2.png](/files/4858bf3d58cbda76639b9671a4df90b828b012f4)     | ![Darmstadt beetle 1.png](/files/61a038db378a649a94fe68cec59637b8fb5877db) ![Darmstadt beetle 2.png](/files/e2249099909a29fa3858940cacf9ad9a9bb4f3b8)     | ![Darmstadt seahorse 1.png](/files/73d3ff89ce4666284fc72e956f389e7aff762dbb) ![Darmstadt seahorse 2.png](/files/0b4ead0f6a3fbace6c40fea0392667b70d5dbeaf)     | ![Darmstadt wolverine 1.png](/files/805986239ce5fc482ba5d78203052bf060acee93) ![Darmstadt wolverine 2.png](/files/372a083363f7db6c5fec2f9065cf3ea889c62376)     |
| Goettingen  | ![Goettingen default 1.png](/files/dc57291a450d8c55f9fa428cdd6920c49ac99f1b) ![Goettingen default 2.png](/files/d40986b48ea6186f4fb591d17e94cf678839c823)   | ![Goettingen beaver 1.png](/files/2929784728e00f93e604bc0a392820aaafc67dcb) ![Goettingen beaver 2.png](/files/d806b82e79e685b0780696fa54e4f47b40b436d7)   | ![Goettingen beetle 1.png](/files/ee43970641e235ffbe0ec76711bef97f7c44a0fd) ![Goettingen beetle 2.png](/files/110c58fbcbe8d22cdb8a1ee7cad59e3ab18ed87d)   | ![Goettingen seahorse 1.png](/files/bb58b90f0041d83e0ed57701b60b38a32b28e591) ![Goettingen seahorse 2.png](/files/a3d3d45e63f614af264b068fa2af474a1fc752eb)   | ![Goettingen wolverine 1.png](/files/ca6a12ff12965a54ce4afedbf5b20a6ad64a6fd0) ![Goettingen wolverine 2.png](/files/3d1f4308192978184bb4ac4e441b9e7491a80946)   |
| PaloAlto    | ![Paloalto default 1.png](/files/4f0b34191c1b7ca9feeca58fdab215f6597c280f) ![Paloalto default 2.png](/files/e8bf7d5aa94fb30f0df49a13e42144bbaccf3411)       | ![Paloalto beaver 1.png](/files/149fc7f2521b41606f30a8cae364a0d0a0a983de) ![Paloalto beaver 2.png](/files/c356e8f16bd473c8abaa8dabf4287e6cc3c55c1b)       | ![Paloalto beetle 1.png](/files/8fa09333308917ab75e1c2071d078004a5405591) ![Paloalto beetle 2.png](/files/56332497573f6aa70bce6ba332dfdd239eaf22ff)       | ![Paloalto seahorse 1.png](/files/11dd2079ebf29bfd5eb607d47641cd8b925bea8d) ![Paloalto seahorse 2.png](/files/c88552d7e9219ee2bb103dc32a7e285c6c534ab1)       | ![Paloalto wolverine 1.png](/files/910f1565c4b7921e05439fd168ad004a664c47a0) ![Paloalto wolverine 2.png](/files/d312c8371a83d7ce030407088d28176bd59b1c08)       |
| Szeged      | ![Szeged default 1.png](/files/3bcf38f9620d1f14908dd01678def945bb9e924e) ![Szeged default 2.png](/files/1f118d2940a67dc1fae116a16a090f89c137c93a)           | ![Szeged beaver 1.png](/files/f06801664c7964138057fdcc02c3ce173675092b) ![Szeged beaver 2.png](/files/10d54dfe29a4ae19223f88fa45543e4cf0f5a46b)           | ![Szeged beetle 1.png](/files/2c412f34fa7f8572881ab1bfffaed2256f638063) ![Szeged beetle 2.png](/files/13f0cf5b13d8954f796a40a4cf65202b299bff46)           | ![Szeged seahorse 1.png](/files/f3bad5e094768201e804116c4abe0fe99bddb122) ![Szeged seahorse 2.png](/files/5e8d1cbb566cf61882723b2d22441b6e39eb2808)           | ![Szeged wolverine 1.png](/files/ba09f12f98fec8451543f3d670a0151e7df9e8b5) ![Szeged wolverine 2.png](/files/c73e65366d4aca8616d6bbc8792aabb49b402ba5)           |
| Warsaw      | ![Warsaw default 1.png](/files/52e7b6c960ed97182113806352bedd3afcc3599a) ![Warsaw default 2.png](/files/95bba5b37e99010ed7a6619f1511c30d0b519b5a)           | ![Warsaw beaver 1.png](/files/870e10c36a77284951d8a2e5b23d5dac8f419996) ![Warsaw beaver 2.png](/files/5c7f5d81219834652f4fc91eab61743384419b52)           | ![Warsaw beetle 1.png](/files/083221133d3fce0dc23e5a80bc229465b1b598cf) ![Warsaw beetle 2.png](/files/d7900c53b5109309312453a1003fb9e1750a26e7)           | ![Warsaw seahorse 1.png](/files/0d3e6a168069d321d7fd7921cb4db854aec83976) ![Warsaw seahorse 2.png](/files/b797b0873ac6f36f80d33cb80d88a76fee92145c)           | ![Warsaw wolverine 1.png](/files/8380f9ddaf684e84eaee1cad8757849fd5009b8e) ![Warsaw wolverine 2.png](/files/d06f8615c83eaebc35ace22f1373d9b2da046ea2)           |

## Leitura adicional

Para mais informações, consulte a documentação completa do pacote [aqui](http://texdoc.net/pkg/beamer). Os recursos seguintes também podem ser úteis:

* [Powerdot](/latex/overleaf-learn-latex-pt/apresentacoes/02-powerdot.md)
* [Posters](/latex/overleaf-learn-latex-pt/apresentacoes/03-posters.md)
* [Negrito, itálico e sublinhado](/latex/overleaf-learn-latex-pt/nocoes-basicas-de-latex/03-bold-italics-and-underlining.md)
* [Tamanhos, famílias e estilos de fonte](/latex/overleaf-learn-latex-pt/fontes/01-font-sizes-families-and-styles.md)
* [Alinhamento do texto](/latex/overleaf-learn-latex-pt/formatacao/06-text-alignment.md)
* [Tipos de letra](/latex/overleaf-learn-latex-pt/fontes/02-font-typefaces.md)
* [Inserção de imagens](/latex/overleaf-learn-latex-pt/mais-topicos/27-inserting-images.md)
* [Utilizar cores no LaTeX](/latex/overleaf-learn-latex-pt/formatacao/13-using-colors-in-latex.md)
* [Comprimentos em LaTeX](/latex/overleaf-learn-latex-pt/formatacao/01-lengths-in-latex.md)
* [Suporte a línguas internacionais](/latex/overleaf-learn-latex-pt/idiomas/03-international-language-support.md)
* [Pacote TikZ](/latex/overleaf-learn-latex-pt/figuras-e-tabelas/05-tikz-package.md)
* [Guia do Utilizador do Beamer - A classe beamer](http://texdoc.net/pkg/beamer)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/latex/overleaf-learn-latex-pt/apresentacoes/01-beamer.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
