> 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/presentations/01-beamer.md).

# Beamer

**`Beamer`** is a powerful and flexible LaTeX class to create great looking presentations. This article outlines the basis steps to making a Beamer slideshow: creating the title page, adding a logo, highlighting important points, making a table of contents and adding effects to the slideshow.

## Introduction

A minimal working example of a simple **beamer** presentation is provided below.

```latex
\documentclass{beamer}
%Information to be included in the title page:
\title{Sample title}
\author{Anonymous}
\institute{Overleaf}
\date{2021}

\begin{document}

\frame{\titlepage}

\begin{frame}
\frametitle{Sample frame title}
This is some text in the first frame. This is some text in the first frame. This is some text in the first frame.
\end{frame}

\end{document}
```

&#x20;[Open this `beamer` document in 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/cQuMIE5ZBBpiEwoTlupX)

After compilation, a two-page PDF file will be produced. The first page is the titlepage, and the second one contains sample content.

The first statement in the document declares this is a Beamer slideshow: `\documentclass{beamer}`

The first command after the preamble, `\frame{\titlepage}`, generates the title page. This page may contain information about the author, institution, event, logo, and so on. See [the title page](#the-title-page) section for a more complete example.

The *frame* environment creates the second slide, the self-descriptive command `\frametitle{Sample frame title}` is optional.

It is worth noting that in beamer the basic container is a **frame**. A frame is not exactly equivalent to a slide, one frame may contain more than one slides. For example, a frame with several bullet points can be set up to produce a new slide to reveal each consecutive bullet point.

## Beamer main features

The Beamer class offers some useful features to bring your presentation to life and make it more attractive. The most important ones are listed below.

### The title page

There are some more options for the title page than the ones presented in the [introduction](#introduction). The next example is a complete one, most of the commands are optional.

```latex
\title[About Beamer] %optional
{About the Beamer class in presentation making}

\subtitle{A short story}

\author[Arthur, Doe] % (optional, for multiple authors)
{A.~B.~Arthur\inst{1} \and J.~Doe\inst{2}}

\institute[VFU] % (optional)
{
  \inst{1}%
  Faculty of Physics\\
  Very Famous University
  \and
  \inst{2}%
  Faculty of Chemistry\\
  Very Famous University
}

\date[VLC 2021] % (optional)
{Very Large Conference, April 2021}

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

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

&#x20;[Open an example of the `beamer` package in 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=)

The distribution of each element in the title page depends on the theme, see the [Themes](#themes-and-colorthemes) subsection for more information. Here is a description of each command:

**\title\[About Beamer] {About the Beamer class...}**

This is important, the title of your presentation must be inside braces. You can set an optional shorter title in the square brackets: in the example, this is About Beamer.

**\subtitle**

Subtitle for you presentation. This can be omitted if unnecessary.

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

First, a short version of the authors' names, comma separated, can be added inside square brackets. This is optional, if omitted the full name is displayed (at the bottom of the title page in the example). Then, inside braces, are the full names of the authors, separated by an \and command. There's also a \inst{1} command that puts a superscript to reference the institution where each author works; it's optional and can be omitted if there is only one author or the listed authors work at the same institution.

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

In the argument of this command, you can declare the institute each author belongs to. The parameter inside brackets, the acronym of the institute/university, is optional. Then the name of the institute is added inside braces; if there's more than one institute they must be separated with an \and command. The \institute command is optional, but it is required for the superscripts inserted by the \inst commands in the previous code.

**\date\[VLC 2021]{Very Large Conference, April 2021}**

In this declaration, you can set the name and date of the event where you are going to present your slides. The parameter inside brackets is an optional shorter name, in this example is displayed at the bottom of the title page.

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

This adds a logo to be displayed. In this theme, the logo is set at the lower right corner. You can use text, or include an image.

### Creating a table of contents

Usually when you have a long presentation, it's convenient to divide it into sections or even subsections. In this case, you can add a table of contents at the beginning of the document. Here is an example:

```latex
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents
\end{frame}
```

![BeamerEx2Overleaf.png](/files/37Rir2nvLM1IH527LbZj)

As you see, is simple. Inside the *frame* environment you set the title and add the command `\titlepage`.

It's also possible to put the table of contents at the beginning of each section and highlight the title of the current section. Just add the code below to the ***preamble*** of your LaTeX document:

```latex
\AtBeginSection[]
{
  \begin{frame}
    \frametitle{Table of Contents}
    \tableofcontents[currentsection]
  \end{frame}
}
```

![BeamerEx3Overleaf.png](/files/LkSYRcsIBhF4fdJC9bdo)

If you use `\AtBeginSubsection[]` instead of `\AtBeginSection[]`, the table of contents will appear at the beginning of each subsection.

&#x20;[Open an example of the `beamer` package in 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=)

### Adding effects to a presentation

In the [introduction](#introduction), we saw a simple slide using the `\begin{frame} \end{frame}` delimiters. It was mentioned that a *frame* is not equivalent to a *slide*, and the next example will illustrate why, by adding some effects to the slideshow. In this example, the PDF file produced will contain 4 slides—this is intended to provide a visual effect in the presentation.

```latex
\begin{frame}
\frametitle{Sample frame title}
This is a text in second frame.
For the sake of showing an example.

\begin{itemize}
 \item<1-> Text visible on slide 1
 \item<2-> Text visible on slide 2
 \item<3> Text visible on slide 3
 \item<4-> Text visible on slide 4
\end{itemize}
\end{frame}
```

&#x20;[Open this frame in Overleaf (using `\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>" %}

In the code there's a list, declared by the `\begin{itemize} \end{itemize}` commands, and next to each `item` is a number enclosed in two special characters: `< >`. This will determine in which slide the element will appear, if you append a `-` at the end of the number, the *item* will be shown in that and the subsequent slides of the current **frame**, otherwise it will appear only in that slide. Check the animation for a better understanding of this.

These effects can be applied to any type of text, not only to the *itemize* environment. There's a second command whose behaviour is similar, but it's simpler since you don't have to specify the slides where the text will be unveiled.

```latex
\begin{frame}
 In this slide \pause

 the text will be partially visible \pause

 And finally everything will be there
\end{frame}
```

&#x20;[Open this frame in Overleaf (using `\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>" %}

This code will generate three slides to add a visual effect to the presentation. `\pause` will prevent the text below this point and above the next `\pause` declaration to appear in the current slide.

&#x20;[Open an example of the `beamer` package in 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=)

## Highlighting important sentences/words

In a presentation is a good practice to highlight the important points to make it easier for your audience to identify the main topic.

```latex
\begin{frame}
\frametitle{Sample frame title}

In this slide, some important text will be
\alert{highlighted} because it's important.
Please, don't abuse it.

\begin{block}{Remark}
Sample text
\end{block}

\begin{alertblock}{Important theorem}
Sample text in red box
\end{alertblock}

\begin{examples}
Sample text in green box. The title of the block is ``Examples".
\end{examples}
\end{frame}
```

&#x20;[Open this frame in Overleaf (using `\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/MM4HmGvwYbnmXxPSrDZa)

If you want to highlight a word or a phrase within a paragraph, the command `\alert{}` will change the style of the word inside the braces. The way the enclosed text will look depends on the theme you are using.

To highlight a paragraph with concepts, definitions, theorems or examples, the best option is to put it inside a box. There are three types of box, and it's up to you to decide which one better fits in your presentation:

**\begin{block}{Remark} \end{block}**

A block box will wrap the text in a box with the same style as the rest of the presentation. The text inside the braces after the \begin{block} code is the title of the box.

**\begin{alertblock}{Important theorem} \end{alertblock}**

The same as block but the style contrasts the one used by the presentation.

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

Again, is very similar to block, the box has a different style but less contrasting than alertblock.

## Customizing your presentation

There are some aspects of a **Beamer** presentation that can be easily customized. For instance, you can set different themes, colours and change the default text layout into a two-column format.

&#x20;[Open an example of the `beamer` package in 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=)

### Themes and colorthemes

It's really easy to use a different theme in your slideshow. For example, the `Madrid` theme (most of the slideshows in this article use this theme) is set by adding the following command to the preamble:

`\usetheme{Madrid}`

Below are two more examples.

#### Berkeley theme

You can  [open this LaTeX code in 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}>) to explore the `Berkeley` theme.

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

#### Copenhagen theme

You can  [open this LaTeX code in 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}>) to explore the `Copenhagen` theme.

![CopenhagenThemeExample.png](/files/CqgMyjOapPOrUHiy5hpJ)

#### Using a colortheme

A theme can be combined with a `colortheme` to change the colour used for different elements.

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

You must put the `\usecolortheme` statement below the `\usetheme` command. You can  [open this LaTeX code in 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}>) to explore the `Madrid` theme with the `beaver` colortheme. For various options, check out the table of screenshots of different themes and colorthemes in the [Reference guide](#reference-guide) below.

### Fonts

You can change several parameters about the fonts. Here we will mention how to resize them and change the type of font used.

#### Font sizes

The font size, here `17pt`, can be passed as a parameter to the beamer class at the beginning of the document preamble: `\documentclass[17pt]{beamer}`. Below is an example showing the result of using the 17pt font-size option:

```latex
\documentclass[17pt]{beamer}
\usepackage{tikz}
\usetheme{Madrid}
\usecolortheme{beaver}
\title[About Beamer] %optional
{Madrid theme + beaver}
\subtitle{Demonstrating larger fonts}
\author[Arthur, Doe] % (optional)
{A.~B.~Arthur\inst{1} \and J.~Doe\inst{2}}

\institute[VFU] % (optional)
{
  \inst{1}%
  Faculty of Physics\\
  Very Famous University
  \and
  \inst{2}%
  Faculty of Chemistry\\
  Very Famous University
}

\date[VLC 2021] % (optional)
{Very Large Conference, April 2021}

% Use a simple TikZ graphic to show where the logo is positioned
\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}
%Highlighting text
\begin{frame}
\frametitle{Demonstrating large fonts}

In this slide, some important text will be
\alert{highlighted} because it's important.
Please, don't abuse it.

\begin{block}{Remark}
Sample text
\end{block}

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

&#x20;[Open this `beamer` document in 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/FtSCruP8RBr5aMVIXm3E)

Available font sizes are 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt. Default font size is 11pt (which corresponds to 22pt at the full screen mode).

#### Font types

To change the font types in your beamer presentation there are two ways, either you use a *font theme* or import directly a *font* from your system. Let's begin with a font theme:

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

&#x20;[Open a `beamer` document using these settings in 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)

The `\usefonttheme{}` is self-descriptive. The available themes are: structurebold, structurebolditalic, structuresmallcapsserif, structureitalicsserif, serif and default.

You can also import font families installed in your system.

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

&#x20;[Open a `beamer` document using these settings in 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)

The command `\usepackage{bookman}` imports the *bookman* family font to be used in the presentation. The available fonts depend on your LaTeX installation, the most common are: mathptmx, helvet, avat, bookman, chancery, charter, culer, mathtime, mathptm, newcent, palatino, and pifont.

### Columns

Sometimes the information in a presentation looks better in a two-column format. In such cases use the *columns* environment:

```latex
\begin{frame}
\frametitle{Two-column slide}
\begin{columns}
\column{0.5\textwidth}
This is a text in first column.
$$E=mc^2$$
\begin{itemize}
\item First item
\item Second item
\end{itemize}

\column{0.5\textwidth}
This text will be in the second column
and on a second thoughts, this is a nice looking
layout in some cases.
\end{columns}
\end{frame}
```

&#x20;[Open this frame in Overleaf (using `\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)

After the *frame* and *frametitle* declarations start a new *columns* environment delimited by the `\begin{columns} \end{columns}`. You can declare each column's width with the `\column{0.5\textwidth}` code, a lower number will shrink the width size.

&#x20;[Open an example of the `beamer` package in 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=)

## Reference guide

Below is a table with screenshots of the *title page* and a normal slide in Beamer using different combinations of **themes** (rows) and **colorthemes** (columns). To have a complete list of themes and colorthemes see the [further reading](#further-reading) section for references.

|             | default                                                                                                             | beaver                                                                                                            | beetle                                                                                                            | seahorse                                                                                                              | wolverine                                                                                                               |
| ----------- | ------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| default     | ![Default default 1.png](/files/TME73ehmoNMV0S0uRBIy) ![Default default 2.png](/files/o8gXnvMfP6MNkLJIm20f)         | ![Default beaver 1a.png](/files/NEI0O783FhRXjaTikWb9) ![Default beaver 2a.png](/files/moXhavkG3YpLH1C4M8qn)       | ![Default beetle 1.png](/files/7BdmRoudgxEn3MxLWJTB) ![Default beetle 2.png](/files/mdE7mFT7gbxaYMrG26WW)         | ![Default seahorse 1.png](/files/EcuWUzSEQhKzSeLJ1GMk) ![Default seahorse 2.png](/files/ce4g6kEdvPYkMCyouTlQ)         | ![Default wolverine 1.png](/files/Q3iz3XLYBA01KTKRDGDe) ![Default wolverine 2.png](/files/T00cUPMeahLGPxyy5ppK)         |
| AnnArbor    | ![Annarbor default 1.png](/files/YA42ImkndatSFOym1dXI) ![Annarbor default 2.png](/files/nyTOD9clPlg4i4py2ezh)       | ![Annarbor beaver 1.png](/files/DMYPsWLSgBZ8rGonBdY9) ![Annarbor beaver 2.png](/files/eImq6yrNMkfmHiAPfR3u)       | ![Annarbor beetle 1.png](/files/CCVspSiqMmLvHA4bt8Nn) ![Annarbor beetle 2.png](/files/HGDcz3vQa9dsIz6A1zpu)       | ![Annarbor seahorse 1.png](/files/GWliftNjJKoRCXwSRD1g) ![Annarbor seahorse 2.png](/files/eNoAXuouU4PaGallx0OT)       | ![Annarbor wolverine 1.png](/files/dyoU4rUQnslkKOjMGRRZ) ![Annarbor wolverine 2.png](/files/GI0CCoAZsMXQ4PLCv6j6)       |
| Antibes     | ![Antibes default 1.png](/files/391ehkD0d7ppCmndWfve) ![Antibes default 2.png](/files/QcEYiFN1RW0eOVsum5wY)         | ![Antibes beaver 1.png](/files/ZUdwZxCMQrKTW8Y4wUmk) ![Antibes beaver 2.png](/files/a9R1ms1UcPzsbk7kh7oD)         | ![Antibes beetle 1.png](/files/EfQxYvYfomv3EWgsVsZM) ![Antibes beetle 2.png](/files/ilDPbSIVjFkwlJXGfV2G)         | ![Antibes seahorse 1.png](/files/TvgpSRdZFqUhOraF9ZG8) ![Antibes seahorse 2.png](/files/bAVER0Rh3hpWWmav2zhP)         | ![Antibes wolverine 1.png](/files/y9TsNaoF3k0zetiO1CVy) ![Antibes wolverine 2.png](/files/JvVRawJTAjaIUSwgVCIe)         |
| Bergen      | ![Bergen default 1.png](/files/qWIJIGFQfpNNctKz3kO4) ![Bergen default 2.png](/files/VLDuHxQDOxzqAgpOxZO3)           | ![Bergen beaver 1.png](/files/oIofrA5QAprF4yGcp5kb) ![Bergen beaver 2.png](/files/PvZpg9sL7xfZMhkl1pMy)           | ![Bergen beetle 1.png](/files/oQV8aNduwMPWADmTXp0c) ![Bergen beetle 2.png](/files/BaGpiKqL20NFWFVdFtro)           | ![Bergen seahorse 1.png](/files/kCqoX2yX85n74Xq1H7B6) ![Bergen seahorse 2.png](/files/4fwup4es3Mkoahb5uMRy)           | ![Bergen wolverine 1.png](/files/TbRYxfHlD4S6dLFuLHRo) ![Bergen wolverine 2.png](/files/S26I6YhZSZZwCi9f5QyM)           |
| Berkeley    | ![Berkeley default 1.png](/files/4GzQGeUUGBsf83JF1JbU) ![Berkeley default 2.png](/files/uiXsm1NXQJD2h4mT2nPK)       | ![Berkeley beaver 1.png](/files/Xf3JlYsemMyxgd5riqsb) ![Berkeley beaver 2.png](/files/D7qHBu7QnZlmC4f618S2)       | ![Berkeley beetle 1.png](/files/c7tTLqz8klK0e4TDNSHs) ![Berkeley beetle 2.png](/files/pG2wUrsW0IbswnVOyqP1)       | ![Berkeley seahorse 1.png](/files/4EZsvmu3YtWrwywOkgik) ![Berkeley seahorse 2.png](/files/kLooKOISQonhW0SobnXL)       | ![Berkeley wolverine 1.png](/files/o1Hy8XitNon5RFJPMA3X) ![Berkeley wolverine 2.png](/files/lVB2AkKnXKxZ2x779nD4)       |
| Berlin      | ![Berlin default 1.png](/files/ztKvnNGtxU5B4AhV5eKn) ![Berlin default 2.png](/files/XiKOe1yhh9zg5o5Vjf9E)           | ![Berlin beaver 1.png](/files/wBuQzvKknx0vZfywTCh4) ![Berlin beaver 2.png](/files/XxXrk32xKn9o3btYWihK)           | ![Berlin beetle 1.png](/files/gOObrbwFJULCwC9j6Mhe) ![Berlin beetle 2.png](/files/bc7ld4h8h94QLsDLk1sZ)           | ![Berlin seahorse 1.png](/files/OGJdjBcrvATB5Ytfw09F) ![Berlin seahorse 2.png](/files/ctbUuxDeWk26UEHSfFe7)           | ![Berlin wolverine 1.png](/files/I7ZZS33qxSje1RV9tpko) ![Berlin wolverine 2.png](/files/Fu9GQOaVGfmv5VoQ4onc)           |
| Boadilla    | ![Boadilla default 1.png](/files/5GKGi5W84DXpLm1dj0m4) ![Boadilla default 2.png](/files/9x1zoqZAsiNJvBxV5KnG)       | ![Boadilla beaver 1.png](/files/7TGmdnwTwcDeOo6yby3S) ![Boadilla beaver 2.png](/files/8t6QSUmAKWyJ5U12Vhv5)       | ![Boadilla beetle 1.png](/files/DCJvP3H2Wy97Kdp1DU49) ![Boadilla beetle 2.png](/files/7bj82dSQQszR1NMjYhim)       | ![Boadilla seahorse 1.png](/files/GOv1FV3JHuE2GKD3Usoo) ![Boadilla seahorse 2.png](/files/KjsxoGqkau5Jv6Y7fVPA)       | ![Boadilla wolverine 1.png](/files/MhEzbJyi6dNGasbwDhAU) ![Boadilla wolverine 2.png](/files/ZHdDPJq1kH7TAksWAYjZ)       |
| CambridgeUS | ![CambridgeUS default 1.png](/files/1V6NNXYC9hSDxkulTYQq) ![CambridgeUS default 2.png](/files/NoqEcK3qoX8f4AmlCRwo) | ![CambridgeUS beaver 1.png](/files/HW3KNHmkntXAlQBCHUB7) ![CambridgeUS beaver 2.png](/files/NU4tmDDsBAoZl0XeoREI) | ![CambridgeUS beetle 1.png](/files/Llmx5Jwcl0sAJpBjsOJK) ![CambridgeUS beetle 2.png](/files/y8nMz2myWiFhsXYhTOzr) | ![CambridgeUS seahorse 1.png](/files/rL9FjoAPMzrhe9dczjvO) ![CambridgeUS seahorse 2.png](/files/HUbW0NoHyBtwfSfTNLQt) | ![CambridgeUS wolverine 1.png](/files/UB4zA6Br0K9ITjuLGrLh) ![CambridgeUS wolverine 2.png](/files/JXEuXUMTHpGf3hlBmROK) |
| Copenhagen  | ![Copenhagen default 1.png](/files/b8tQcXVsmhsegbnL0lcO) ![Copenhagen default 2.png](/files/R0I2VdHbJYVqoa9KpKlK)   | ![Copenhagen beaver 1.png](/files/glHFwwlmUKuhjArPoJ0E) ![Copenhagen beaver 2.png](/files/u0fmtsChOlbCYLo2iGBY)   | ![Copenhagen beetle 1.png](/files/b12ZGof9nXYrzCdeiSRx) ![Copenhagen beetle 2.png](/files/9nFRG3rc9Tdb098q6K96)   | ![Copenhagen seahorse 1.png](/files/MllZXbA4n1dl9GjqMy2F) ![Copenhagen seahorse 2.png](/files/tn5WF5njyRuDkHf3rqFb)   | ![Copenhagen wolverine 1.png](/files/rKWHpFq2BUY2aKEg6K8L) ![Copenhagen wolverine 2.png](/files/syx9tvEEn22WzCZXg1rE)   |
| Darmstadt   | ![Darmstadt default 1.png](/files/CRTMs1nq2tm3pGc7tLHO) ![Darmstadt default 2.png](/files/NsoDDPd5OABvOBEWTiNd)     | ![Darmstadt beaver 1.png](/files/sI4f5glOPW83KdikoIvN) ![Darmstadt beaver 2.png](/files/dU5dGsliepck0vUUoXyN)     | ![Darmstadt beetle 1.png](/files/m0WEPVcvD7hK6GTzbO0C) ![Darmstadt beetle 2.png](/files/zRlYHxXWfHIPIwpNkAcn)     | ![Darmstadt seahorse 1.png](/files/yL6xwdsGnandcgL4Rni8) ![Darmstadt seahorse 2.png](/files/EqOhWQyeHkTg7H8NYfnX)     | ![Darmstadt wolverine 1.png](/files/YtLFuB6wUJJjDgIjglSX) ![Darmstadt wolverine 2.png](/files/XEf02ybb7qPARYFt2lTE)     |
| Goettingen  | ![Goettingen default 1.png](/files/o8bPdmYmhQ4gtnFFAQUl) ![Goettingen default 2.png](/files/NZHNhMnlz5p4D9IcpB6F)   | ![Goettingen beaver 1.png](/files/IFlfKITfIKKXUQVLJvxJ) ![Goettingen beaver 2.png](/files/Eu8XVYTBsXLN1uSFNUYY)   | ![Goettingen beetle 1.png](/files/TBSIeici5bWpoDWQTfW1) ![Goettingen beetle 2.png](/files/MOiyR7LfVm2H2DmfWmI3)   | ![Goettingen seahorse 1.png](/files/EVxHlEvRvNZMJq5C9Oth) ![Goettingen seahorse 2.png](/files/6HFanDDGL3arQ8ZAGM6C)   | ![Goettingen wolverine 1.png](/files/MNsoz68usd4hkEHEJtS1) ![Goettingen wolverine 2.png](/files/LKuuASo3M97LrOZlqlUT)   |
| PaloAlto    | ![Paloalto default 1.png](/files/qfrZtoCCufpTFk8S8aGW) ![Paloalto default 2.png](/files/c04gaQ8i6IAWyXbOGYyC)       | ![Paloalto beaver 1.png](/files/s2KiQzYaf29wgePtgE1z) ![Paloalto beaver 2.png](/files/h87baRmOKxrj7VoAMY8t)       | ![Paloalto beetle 1.png](/files/ASTFMWoa22stQPph2YXZ) ![Paloalto beetle 2.png](/files/oXyhfH9KfeSMacofpF0h)       | ![Paloalto seahorse 1.png](/files/GRbKYqNyjzYnxlauy6t1) ![Paloalto seahorse 2.png](/files/ao98gOe1313ICDJwI45d)       | ![Paloalto wolverine 1.png](/files/TXFOMqQtyYQEhuhTHCkw) ![Paloalto wolverine 2.png](/files/Dt6RPNKqeSNQjY9Qm23z)       |
| Szeged      | ![Szeged default 1.png](/files/uFAR3XRLPqD3AJW7tIRP) ![Szeged default 2.png](/files/viR4FnTOt1ThUOutDIrN)           | ![Szeged beaver 1.png](/files/UqoFiqNFmm8HfoxfhrhW) ![Szeged beaver 2.png](/files/VfszgLhE4sYOjMMBXKGg)           | ![Szeged beetle 1.png](/files/9SuyAZvGmzzI83Arm3RE) ![Szeged beetle 2.png](/files/AVMmyqY0Ic6Kewa9iY0Q)           | ![Szeged seahorse 1.png](/files/z0oRXwwo02e7OFS8FRFa) ![Szeged seahorse 2.png](/files/d3nkHMuniVTs9lUyZiQg)           | ![Szeged wolverine 1.png](/files/HBeeX8ejSGT1sq6yhRlp) ![Szeged wolverine 2.png](/files/UXXOvJ2hS0gnEm9c62CU)           |
| Warsaw      | ![Warsaw default 1.png](/files/lk786P6EbdFIc0sN4sf5) ![Warsaw default 2.png](/files/QXkIW3VrYs9IFUJ7gu5d)           | ![Warsaw beaver 1.png](/files/NPAvmutW2DR4jh74fPyV) ![Warsaw beaver 2.png](/files/LeuRQxMofqK2jy74GInN)           | ![Warsaw beetle 1.png](/files/ANdpTt6cHX1NcXd6azwI) ![Warsaw beetle 2.png](/files/vA1G2JgJChSi7P2SeqAA)           | ![Warsaw seahorse 1.png](/files/oCveDKJPGJuJEspDkFo5) ![Warsaw seahorse 2.png](/files/GIg6HMmbPPKFKmYU2uZ0)           | ![Warsaw wolverine 1.png](/files/tE3WQOZt1Bix6XCqoERM) ![Warsaw wolverine 2.png](/files/FtSmEdWzAKUNvTGeIC4U)           |

## Further reading

For more information, see the full package documentation [here](http://texdoc.net/pkg/beamer). The following resources may also be useful:

* [Powerdot](/latex/presentations/02-powerdot.md)
* [Posters](/latex/presentations/03-posters.md)
* [Bold, italics and underlining](/latex/latex-basics/03-bold-italics-and-underlining.md)
* [Font sizes, families, and styles](/latex/fonts/01-font-sizes-families-and-styles.md)
* [Text alignment](/latex/formatting/06-text-alignment.md)
* [Font typefaces](/latex/fonts/02-font-typefaces.md)
* [Inserting Images](/latex/more-topics/27-inserting-images.md)
* [Using colours in LaTeX](/latex/formatting/13-using-colors-in-latex.md)
* [Lengths in LaTeX](/latex/formatting/01-lengths-in-latex.md)
* [International language support](/latex/languages/03-international-language-support.md)
* [TikZ package](/latex/figures-and-tables/05-tikz-package.md)
* [Beamer User's Guide - The beamer class](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/presentations/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.
