> For the complete documentation index, see [llms.txt](https://ayakaleaf-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://ayakaleaf-pro.ayaka.space/latex/zh-cn/yan-shi-wen-gao/01-beamer.md).

# Beamer

**`Beamer`** Beamer 是一个强大而灵活的 LaTeX 类，用于创建外观精美的演示文稿。本文概述了制作 Beamer 幻灯片放映的基本步骤：创建标题页、添加徽标、突出显示重点、制作目录以及为幻灯片添加效果。

## 引言

一个简单的 **beamer** 演示文稿的最小工作示例如下。

```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}
这是第一帧中的一些文本。这是第一帧中的一些文本。这是第一帧中的一些文本。
\end{frame}

\end{document}
```

&#x20;[打开此 `beamer` 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/f66d8aaba9dd499741a8bc5a0faa5d5181dbc175)

编译后，将生成一个两页的 PDF 文件。第一页是标题页，第二页包含示例内容。

文档中的第一句声明这是一个 Beamer 幻灯片放映： `\documentclass{beamer}`

导言区之后的第一条命令， `\frame{\titlepage}`，会生成标题页。此页可以包含作者、机构、活动、徽标等信息。更多完整示例请参见 [标题页](#the-title-page) 部分。

该 *frame* 环境会创建第二张幻灯片，自解释命令 `\frametitle{Sample frame title}` 是可选的。

值得注意的是，在 beamer 中，基本容器是一个 **frame**。frame 并不完全等同于一张 slide，一个 frame 可能包含多张 slide。例如，包含多个项目符号的 frame 可以设置为生成新的 slide，以逐个显示后续的项目符号。

## Beamer 的主要功能

Beamer 类提供了一些有用的功能，可以让你的演示文稿更生动、更有吸引力。最重要的功能如下所列。

### 标题页

标题页还有一些比 [引言](#introduction)中所展示的更多选项。下面的示例是一个完整示例，其中大多数命令都是可选的。

```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/2e66db88db8e587ee9cb51c8e197a4ef5d92bdce)

&#x20;[打开一个……的示例 `beamer` 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) 小节。下面是每个命令的说明：

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

这一点很重要，你的演示文稿标题必须放在花括号内。你可以在方括号中设置一个较短的可选标题：在这个例子中，就是 About Beamer。

**\subtitle**

你演示文稿的副标题。不需要时可以省略。

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

首先，可以在方括号中添加作者姓名的简写版本，多个作者之间用逗号分隔。这是可选的；如果省略，则会显示全名（在示例中显示在标题页底部）。然后，在花括号中是作者的全名，并用 \and 命令分隔。还有一个 \inst{1} 命令会添加上标，用于引用每位作者所在的机构；这也是可选的，如果只有一位作者，或者列出的作者都在同一机构工作，就可以省略。

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

在这个命令的参数中，你可以声明每位作者所属的机构。方括号中的参数，即机构/大学的缩写，是可选的。然后在花括号中添加机构名称；如果有多个机构，必须用 \and 命令分隔。\institute 命令是可选的，但对于前面代码中由 \inst 命令插入的上标，它是必需的。

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

在这个声明中，你可以设置你要展示幻灯片的活动名称和日期。方括号中的参数是一个可选的较短名称，在这个示例中会显示在标题页底部。

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

这会添加一个要显示的徽标。在这个主题中，徽标放在右下角。你可以使用文本，或插入一张图片。

### 创建目录

通常，当你的演示文稿很长时，将其划分为若干章节甚至小节会更方便。在这种情况下，你可以在文档开头添加目录。下面是一个示例：

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

![BeamerEx2Overleaf.png](/files/2c170b5f8f0a5bc87e5096b4e8e14220fac6c61a)

如你所见，这很简单。在 *frame* 环境中，你设置标题并添加命令 `\titlepage`.

你也可以在每个章节开始时放置目录，并突出显示当前章节的标题。只需将下面的代码添加到你的 LaTeX 文档的 ***导言区*** 中：

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

![BeamerEx3Overleaf.png](/files/0796c0a87a594f3a1174e0a95f7514e6bcfaef6d)

如果你使用 `\AtBeginSubsection[]` 而不是 `\AtBeginSection[]`，目录就会出现在每个小节的开头。

&#x20;[打开一个……的示例 `beamer` 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=)

### 为演示文稿添加效果

在 [引言](#introduction)中，我们看到了一个使用 `\begin{frame} \end{frame}` 分隔符的简单幻灯片。前面提到过， *frame* 并不等同于一个 *幻灯片*，下面的示例将通过给幻灯片放映添加一些效果来说明原因。在这个示例中，生成的 PDF 文件将包含 4 张幻灯片——这是为了在演示文稿中提供一种视觉效果。

```latex
\begin{frame}
\frametitle{Sample frame title}
这是第二个帧中的一段文本。
为了展示一个示例。

\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;[在 Overleaf 中打开这个 frame（使用 `\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>" %}

在代码中，有一个列表，由 `\begin{itemize} \end{itemize}` 命令声明，并且在每个 `项目` 旁边都有一个由两个特殊字符包裹的数字： `< >`。这将决定该元素出现在第几张幻灯片中；如果你在数字后面添加一个 `-` 在数字末尾加上 *项目* ，则该内容将在当前 **frame**及后续幻灯片中显示；否则它只会出现在那一张幻灯片中。查看动画可以更好地理解这一点。

这些效果可应用于任何类型的文本，不仅限于 *itemize* 环境。还有一个行为类似的第二个命令，不过它更简单，因为你不必指定文本将在哪些幻灯片中显示。

```latex
\begin{frame}
 在这一张幻灯片中 \pause

 文本将部分可见 \pause

 最后所有内容都会显示出来
\end{frame}
```

&#x20;[在 Overleaf 中打开这个 frame（使用 `\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>" %}

这段代码会生成三张幻灯片，为演示文稿添加视觉效果。 `\pause` 会阻止此处以下、下一个 `\pause` 声明之前的文本出现在当前幻灯片中。

&#x20;[打开一个……的示例 `beamer` 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=)

## 突出显示重要句子/单词

在演示文稿中突出重点是个好做法，这样你的听众更容易识别主要主题。

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

在这一张幻灯片中，一些重要文本将被
\alert{highlighted} 因为它很重要。
请不要滥用它。

\begin{block}{Remark}
示例文本
\end{block}

\begin{alertblock}{Important theorem}
红色框中的示例文本
\end{alertblock}

\begin{examples}
绿色框中的示例文本。该块的标题是“Examples”。
\end{examples}
\end{frame}
```

&#x20;[在 Overleaf 中打开这个 frame（使用 `\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/baadd29ff0e8c9c484e017258fbc028c37214c9e)

如果你想在段落中突出一个单词或短语，可以使用命令 `\alert{}` 它会改变花括号内单词的样式。括号内文本的显示方式取决于你使用的主题。

要突出一个包含概念、定义、定理或示例的段落，最佳做法是把它放在一个框中。框有三种类型，你可以自行决定哪一种更适合你的演示文稿：

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

block 框会用与演示文稿其余部分相同的样式将文本包裹在框中。\begin{block} 代码后花括号中的文本是该框的标题。

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

与 block 类似，但其样式与演示文稿所用样式形成对比。

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

同样，它与 block 很相似，框具有不同的样式，但与 alertblock 相比对比度较弱。

## 自定义你的演示文稿

有些方面的 **Beamer** 演示文稿可以轻松自定义。例如，你可以设置不同的主题、颜色，并将默认文本布局改为双栏格式。

&#x20;[打开一个……的示例 `beamer` 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=)

### 主题和颜色主题

在你的幻灯片放映中使用不同主题真的很容易。例如， `Madrid` 主题（本文中的大多数幻灯片放映都使用该主题）可以通过在导言区添加以下命令来设置：

`\usetheme{Madrid}`

下面还有两个示例。

#### Berkeley 主题

你可以  [在 Overleaf 中打开这段 LaTeX 代码](<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}>) 以了解 `Berkeley` 主题。

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

#### Copenhagen 主题

你可以  [在 Overleaf 中打开这段 LaTeX 代码](<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}>) 以了解 `Copenhagen` 主题。

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

#### 使用颜色主题

主题可以与一个 `颜色主题` 结合使用，以更改不同元素所使用的颜色。

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

你必须把 `\usecolortheme` 语句放在 `\usetheme` 命令的下方。你可以  [在 Overleaf 中打开这段 LaTeX 代码](<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}>) 以了解 `Madrid` 将主题与 `beaver` 颜色主题结合使用。有关各种选项，请查看下方不同主题和颜色主题截图的表格。 [参考指南](#reference-guide) 下方。

### 字体

你可以更改字体的若干参数。这里我们将介绍如何调整字体大小以及更改所使用的字体类型。

#### 字体大小

字体大小，这里是 `17pt`，可以在文档导言区开始时作为参数传递给 beamer 类： `\documentclass[17pt]{beamer}`。下面是一个使用 17pt 字号选项的结果示例：

```latex
\documentclass[17pt]{beamer}
\usepackage{tikz}
\usetheme{Madrid}
\usecolortheme{beaver}
\title[About Beamer] %optional
{Madrid 主题 + 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}

在这一张幻灯片中，一些重要文本将被
\alert{highlighted} 因为它很重要。
请不要滥用它。

\begin{block}{Remark}
示例文本
\end{block}

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

&#x20;[打开此 `beamer` 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/62858cddd74d3a08463e429c8be16afcdf4ee057)

可用的字号有 8pt、9pt、10pt、11pt、12pt、14pt、17pt、20pt。默认字号是 11pt（在全屏模式下相当于 22pt）。

#### 字体类型

要更改 beamer 演示文稿中的字体类型，有两种方法：要么使用 *字体主题* ，要么直接导入一个 *字体* 来自系统的字体。我们先从字体主题开始：

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

&#x20;[打开一个 `beamer` 在 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)

该 `\usefonttheme{}` 顾名思义。可用的主题有：structurebold、structurebolditalic、structuresmallcapsserif、structureitalicsserif、serif 和 default。

你还可以导入系统中已安装的字体族。

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

&#x20;[打开一个 `beamer` 在 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)

命令 `\usepackage{bookman}` 会导入 *bookman* 字体族，用于演示文稿。可用字体取决于你的 LaTeX 安装，最常见的有：mathptmx、helvet、avat、bookman、chancery、charter、culer、mathtime、mathptm、newcent、palatino 和 pifont。

### 分栏

有时，演示文稿中的信息以双栏格式呈现会更好。在这种情况下，请使用 *columns* 环境：

```latex
\begin{frame}
\frametitle{Two-column slide}
\begin{columns}
\column{0.5\textwidth}
这是第一栏中的一段文字。
$$E=mc^2$$
\begin{itemize}
\item First item
\item Second item
\end{itemize}

\column{0.5\textwidth}
这段文字将位于第二栏
再仔细想想，这是一个很好看的
布局，在某些情况下。
\end{columns}
\end{frame}
```

&#x20;[在 Overleaf 中打开这个 frame（使用 `\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)

在 *frame* 和 *frametitle* 声明之后，开始一个新的 *columns* 由以下内容界定的环境： `\begin{columns} \end{columns}`。你可以使用 `\column{0.5\textwidth}` 代码声明每一栏的宽度，数值越小，宽度越窄。

&#x20;[打开一个……的示例 `beamer` 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=)

## 参考指南

下方是一个包含以下内容截图的表格： *标题页* 以及 Beamer 中正常幻灯片使用不同组合的 **主题** （行）和 **颜色主题** （列）。要查看完整的主题和颜色主题列表，请参见 [进一步阅读](#further-reading) 部分中的参考资料。

|             | default                                                                                                                                                     | beaver                                                                                                                                                    | beetle                                                                                                                                                    | seahorse                                                                                                                                                      | wolverine                                                                                                                                                       |
| ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| default     | ![Default default 1.png](/files/2c4c576442a1468885900ab15c7942715a428fdd) ![Default default 2.png](/files/41c7b0dca898af97407fc9059281f473bf54af72)         | ![Default beaver 1a.png](/files/17706568cd6a85dfa4344a0bd89680a79b66e0a8) ![Default beaver 2a.png](/files/522b7a5bb0cbd5160d6ae6d5a5b22fbdba1bd9dc)       | ![Default beetle 1.png](/files/bf54ffbf2ce20d30f775082d70dc58105e6b95a0) ![Default beetle 2.png](/files/c0c609c9e1ab51c9ee5ce1ace893a5d62b89bb77)         | ![Default seahorse 1.png](/files/76f6f83aba6e5be363555ffbc181cebe4bd4ca6c) ![Default seahorse 2.png](/files/498cc67b168a5021045cc01e457c6d8123738021)         | ![Default wolverine 1.png](/files/01c2e19b46c25183ac40e20997104b568430e70d) ![Default wolverine 2.png](/files/d73bc4bb5f4d2f5325ab1423684eb85b196d526a)         |
| AnnArbor    | ![Annarbor default 1.png](/files/6989f61df8dfff0510141f3d11c012d6a4208330) ![Annarbor default 2.png](/files/633272f462f53a3bc1a3d5510e6e8d8a22f2e70e)       | ![Annarbor beaver 1.png](/files/65d2d840b575096ffb18fb527593f8467b4ab4f6) ![Annarbor beaver 2.png](/files/ec354b592f3254f085c8600337d62c2e0a81abd1)       | ![Annarbor beetle 1.png](/files/446627b3b703b3e0b1a2fb3b9e8bfc906e724699) ![Annarbor beetle 2.png](/files/15bfe3ccea0b4598ea505fa87dd5f5e0927bb2b2)       | ![Annarbor seahorse 1.png](/files/d4f23409215212757ec497c292a508657f0fe709) ![Annarbor seahorse 2.png](/files/af1034e82a1416107d95a2f18918d098245b44f0)       | ![Annarbor wolverine 1.png](/files/e89566a0b00ba5a36a91d435ab701e38d8370be4) ![Annarbor wolverine 2.png](/files/13c1acd2fb9a1a0920f56842f1e3f3e15ac65120)       |
| Antibes     | ![Antibes default 1.png](/files/a8665b12de9f3b338e5483c5599d22ae73918971) ![Antibes default 2.png](/files/1c9c6f28aa58b4077121cb9aaee553d3857232ba)         | ![Antibes beaver 1.png](/files/84a01878ed33089092c8eff8dc6d6734dedb9d91) ![Antibes beaver 2.png](/files/aafff859f4b736c459960b72f2bde692a27c093d)         | ![Antibes beetle 1.png](/files/474010b4c60ffb799bc2337fc1becb2030684c37) ![Antibes beetle 2.png](/files/352b60da969fbeb7c9d1a00d8a3247ef1d1fa130)         | ![Antibes seahorse 1.png](/files/57a1a1581eff3405193f0c0aab659c0898ccff81) ![Antibes seahorse 2.png](/files/dbd4d968a962cd00897300d14c2d91e02667c3a4)         | ![Antibes wolverine 1.png](/files/7e3ec8f092ae93f6c2e5d2af92eeb67b7f5a7f12) ![Antibes wolverine 2.png](/files/e9e2919933eb3fd052d46284022a8a2245fd35f2)         |
| Bergen      | ![Bergen default 1.png](/files/9621e41f158ec0b694d728f58aef21a95183421e) ![Bergen default 2.png](/files/f89e8c4a97fc93a47f624854f1529d98fe5177e7)           | ![Bergen beaver 1.png](/files/3baecb1151444c57c1d0bb0f8e6135c8575b0858) ![Bergen beaver 2.png](/files/457d6cc31966bef82b7e82bd64a0aabb0fac8106)           | ![Bergen beetle 1.png](/files/975d084346dc05c1ce8b024943f8772d09ecf6b5) ![Bergen beetle 2.png](/files/fffaa872a0114185859371cb94c86e12de333aa7)           | ![Bergen seahorse 1.png](/files/f6d6b37688d42be9b0d87dc3bccd8b9dea0d4073) ![Bergen seahorse 2.png](/files/a0eadc1f1cb815fde99039c19ce80d973e2a7390)           | ![Bergen wolverine 1.png](/files/41773d6aa1fade6385caa74fe01eab62ba3d1f19) ![Bergen wolverine 2.png](/files/2162b43d8a998ffc844ef610e746c5e907d63072)           |
| Berkeley    | ![Berkeley default 1.png](/files/5bb934cd29fd93500e07ea9edfd12fcc069666d5) ![Berkeley default 2.png](/files/5e639bbe0e6d2b11d172297d2532db4e51145172)       | ![Berkeley beaver 1.png](/files/8bbd453c71ed7b077be6730e3e607bf8c35fd37b) ![Berkeley beaver 2.png](/files/81efee324577e67dab7c907d77794168b0a996cc)       | ![Berkeley beetle 1.png](/files/1e72527036d1d670a8858d5191043be81771c934) ![Berkeley beetle 2.png](/files/de60dc1af62fd15024abe3e530a5e8083472ca49)       | ![Berkeley seahorse 1.png](/files/804ee1c00e6cb9ade5ffaf20ee52548e59f4f614) ![Berkeley seahorse 2.png](/files/6c5857ef1ea1372589c379c3c521ecc1c778009a)       | ![Berkeley wolverine 1.png](/files/1a425b42d636f496541311f1bc95a1de2cbde675) ![Berkeley wolverine 2.png](/files/90a4c0560aab88bdc385ce5beae00ef88d6d3576)       |
| Berlin      | ![Berlin default 1.png](/files/84865d064cbb13556a16e0960868a511c3df2635) ![Berlin default 2.png](/files/e1c15aad7b0a692023508dcfedbd456e6f5f88d2)           | ![Berlin beaver 1.png](/files/38f12d6eb7ed773ee85eab33dc1eb55526ed6efd) ![Berlin beaver 2.png](/files/ffb9e29cd89aa91796bc1e7c32d52f250e8a5aa9)           | ![Berlin beetle 1.png](/files/47b9e5f4e6a54bce5eb914564c7014243bcd9006) ![Berlin beetle 2.png](/files/662f1c5b4c25a6a6548333d5b85ced90f3812674)           | ![Berlin seahorse 1.png](/files/aea0ca243da9b589fa538730ba7c1f8bd182e5c6) ![Berlin seahorse 2.png](/files/1ce2c7eeff2e3f803032a9052ca0515e57c8af9f)           | ![Berlin wolverine 1.png](/files/6aeba3addc21c5aa722e04c5afd510c993a0be98) ![Berlin wolverine 2.png](/files/2c45a96a2bc05608ed47e8cb73ac0de6a89845c1)           |
| Boadilla    | ![Boadilla default 1.png](/files/0b52f2134db0957a976bd839f2cacc6df5495b10) ![Boadilla default 2.png](/files/0bc726127cc68307acd05c45fe9c002d21b31f5f)       | ![Boadilla beaver 1.png](/files/b1e2f3985a7e8ffbf36a56260e7d472a813581d4) ![Boadilla beaver 2.png](/files/3744f332181316a5e79d55ba66d7a89c3ce50cbf)       | ![Boadilla beetle 1.png](/files/f2e999880988e1d98ed9849e83f01f6f9d49c275) ![Boadilla beetle 2.png](/files/e1ee549bda7b554daf02f5e3ba9e94905dc03c4b)       | ![Boadilla seahorse 1.png](/files/213f209f27155b61ef3f8a33bcacbe16ebfd7a26) ![Boadilla seahorse 2.png](/files/66e6d131aa9c73f93178472f7b1724cb704af603)       | ![Boadilla wolverine 1.png](/files/2580e67deee7f20321467916ba55a2ebcc503389) ![Boadilla wolverine 2.png](/files/4607c367d3ce154c24d96979470ebef81560628f)       |
| CambridgeUS | ![CambridgeUS default 1.png](/files/3e5e2c2ce3562ba62291c27860aec7437731fa1a) ![CambridgeUS default 2.png](/files/949d8993199ac40576f547bee8d43178cf87f620) | ![CambridgeUS beaver 1.png](/files/b4a9c1044f80107c14d369fdaf089ea599873dca) ![CambridgeUS beaver 2.png](/files/70d1b1d859836258a740c3d0146a0f2c8d11a261) | ![CambridgeUS beetle 1.png](/files/ffc8738f18d5cfca21289f4b26d954b0dcf1f090) ![CambridgeUS beetle 2.png](/files/5005d29883901e24a6ab9488d31aa8bc7bb8720c) | ![CambridgeUS seahorse 1.png](/files/22837462e76adbe24d19b6c3ff774c1148a905a6) ![CambridgeUS seahorse 2.png](/files/d74b1302a2b54e57471e6053331a14aaca1211c7) | ![CambridgeUS wolverine 1.png](/files/f6a7a81cffe1a0d93f8e2236c2dc433213f5ecd9) ![CambridgeUS wolverine 2.png](/files/d6604fe54ce4c7ade2155f773eee6bd2db611fb7) |
| Copenhagen  | ![Copenhagen default 1.png](/files/b5edcb8ee81638c8271b23d310da73599ce1cf52) ![Copenhagen default 2.png](/files/9ef8b55ac67e6d183c7254dc918bd13b0a4b9453)   | ![Copenhagen beaver 1.png](/files/4c958d22de1ae6241c77bf62f223cd3374897af5) ![Copenhagen beaver 2.png](/files/591f553106b36599917d4a38767797e3c9dc21cd)   | ![Copenhagen beetle 1.png](/files/39c3825b75d8389580345619d75ecd1c6a3f483f) ![Copenhagen beetle 2.png](/files/db36ab089118cabc60fd9954b5a0f8a31a3c126f)   | ![Copenhagen seahorse 1.png](/files/3b6d31b40be4a7d613b27a937b74d8966fc601e4) ![Copenhagen seahorse 2.png](/files/24a6ebbf368b809d0233bc3eeeab91aa5078dea8)   | ![Copenhagen wolverine 1.png](/files/f2990c25f2de7ad15fddf2fb369cc9b3532ee387) ![Copenhagen wolverine 2.png](/files/417a6423f79b26f8b25bf0fe50eff6a81de524d9)   |
| Darmstadt   | ![Darmstadt default 1.png](/files/793e0563026a00e141adfe08b808c2c06064444a) ![Darmstadt default 2.png](/files/fb1c5b175d89fb87d899520756f119c0e1a66b48)     | ![Darmstadt beaver 1.png](/files/1901f5faece58e7ff99f10b75866822680853f1c) ![Darmstadt beaver 2.png](/files/7c8b58f2bb0d1859923fd539da0e2cf22398090c)     | ![Darmstadt beetle 1.png](/files/8df2cf4ed51442f31d0d2d2d3c9b8ac7290c129c) ![Darmstadt beetle 2.png](/files/acf170adad487e0583e0b383b865061274cafe48)     | ![Darmstadt seahorse 1.png](/files/cdb9d974c9e91ea5e82dcd9071231f5211997f78) ![Darmstadt seahorse 2.png](/files/1b8f082cefcec864b84f8e2a06f207c17df8b1dd)     | ![Darmstadt wolverine 1.png](/files/c0422cf6363d0ae1d79d645b92493501527018ef) ![Darmstadt wolverine 2.png](/files/e99347f7eb42d1b4f9b766095f21d6161aba424b)     |
| Goettingen  | ![Goettingen default 1.png](/files/158831a3754caf087d23d2a7c4fcb645970d0287) ![Goettingen default 2.png](/files/2f436ea67236b7ef2e61fa23bbeb453b21001e22)   | ![Goettingen beaver 1.png](/files/ebf21e1fb868e60b2bf7ecb9272bb8c77833e111) ![Goettingen beaver 2.png](/files/fc8ca001614662b51e2749981cc8b51adeeebf57)   | ![Goettingen beetle 1.png](/files/d39e35adbed9eb9c5f1a095c96d69a12776d14fe) ![Goettingen beetle 2.png](/files/fc4683e9e8a8a1405c5c7f16453ae58f3eab9126)   | ![Goettingen seahorse 1.png](/files/3d3c1da2dd0aebfbae048f0fbc712393fd911427) ![Goettingen seahorse 2.png](/files/02747fb1448db3825551556db14611ced48a4d19)   | ![Goettingen wolverine 1.png](/files/6bce22b2f6a1607a1a4de6acfd5647942184c971) ![Goettingen wolverine 2.png](/files/04d680ef1fe05291c1a50f3a35c438f27e26d31d)   |
| PaloAlto    | ![Paloalto default 1.png](/files/b55013ef1e3e049bd6d05930505a327d01a99bd0) ![Paloalto default 2.png](/files/e647d7acc6d782bf216d263b319d8b8673e94c11)       | ![Paloalto beaver 1.png](/files/ba711551cf63eb7207ffb5cf57121562e04c8e3c) ![Paloalto beaver 2.png](/files/c41030104d1fd268098ab5ccc656efec87d52239)       | ![Paloalto beetle 1.png](/files/2320061e8f3dc47ec00936acff5c70724275ac11) ![Paloalto beetle 2.png](/files/b2100dc929e889fd8fc54f5ceb47864fc6098c3d)       | ![Paloalto seahorse 1.png](/files/1bc70084ff388801fb2bca41be8aeaefd3e3d4f6) ![Paloalto seahorse 2.png](/files/c1292afa7ce7085e0e7a30af0cb7271d971a6c60)       | ![Paloalto wolverine 1.png](/files/b0333a2857d9153eaa74364461e73f5ffba4861b) ![Paloalto wolverine 2.png](/files/7aae051176bd439e7f6dd8f0b33bb98b40b3c551)       |
| Szeged      | ![Szeged default 1.png](/files/050ab0b6a1524f76fbc7ad116599b43871330be4) ![Szeged default 2.png](/files/8254c9aac385cfa8283176d889108b68f5c5c908)           | ![Szeged beaver 1.png](/files/66eb282ff0c2589c3374c6bf3569cb60430c4e9d) ![Szeged beaver 2.png](/files/07cd7ea9bf88d077bc86174254bc74be336f918d)           | ![Szeged beetle 1.png](/files/c9655478fdcf692377c7a72fecf63df0b3ca108f) ![Szeged beetle 2.png](/files/56fbda425ec75894a1a627d06d51ce8c22b08f2b)           | ![Szeged seahorse 1.png](/files/9dfc3785e9d59a8dfe1a32188dff1840684473d7) ![Szeged seahorse 2.png](/files/63ec63826eed632e3c5dff1305ac2f81fb657949)           | ![Szeged wolverine 1.png](/files/672b00a19a15bda0d2869fd33f7dc87b4a898af4) ![Szeged wolverine 2.png](/files/ffb3cfaf9cb7ba39dabbd7c8e45572b3b20901c2)           |
| Warsaw      | ![Warsaw default 1.png](/files/059ea693072e13aaa9da0d06fc1ba3862559c4d4) ![Warsaw default 2.png](/files/7f4082030b7ec50fe3847b9fbb7a72c846195e24)           | ![Warsaw beaver 1.png](/files/4658a32987231224cb77264c3655ea27ec77dd13) ![Warsaw beaver 2.png](/files/51f7990331ca135daf6ea835ee52e35d54e5b826)           | ![Warsaw beetle 1.png](/files/38828278b651f4cab2d507cf69e2ba593eb435ee) ![Warsaw beetle 2.png](/files/b74bf35656d80fef09078f571486a897b5bdaad5)           | ![Warsaw seahorse 1.png](/files/26c4a3b4c8bb2b8a4e0c490cf698e3c3a55c9a8c) ![Warsaw seahorse 2.png](/files/174691b61662714901876c5850bcb1b61badaf85)           | ![Warsaw wolverine 1.png](/files/d7b413fcfe92df8c1535ff3d956e91d6d98ca02e) ![Warsaw wolverine 2.png](/files/bd05df73a8184ecb8dc80ba2bd8d99d140d110a0)           |

## 进一步阅读

更多信息，请参阅完整的宏包文档 [此处](http://texdoc.net/pkg/beamer)。以下资源也可能有用：

* [Powerdot](/latex/zh-cn/yan-shi-wen-gao/02-powerdot.md)
* [海报](/latex/zh-cn/yan-shi-wen-gao/03-posters.md)
* [粗体、斜体和下划线](/latex/zh-cn/latex-ji-chu/03-bold-italics-and-underlining.md)
* [字体大小、字体族和样式](/latex/zh-cn/zi-ti/01-font-sizes-families-and-styles.md)
* [文本对齐](/latex/zh-cn/ge-shi-hua/06-text-alignment.md)
* [字体类型](/latex/zh-cn/zi-ti/02-font-typefaces.md)
* [插入图片](/latex/zh-cn/geng-duo-zhu-ti/27-inserting-images.md)
* [在 LaTeX 中使用颜色](/latex/zh-cn/ge-shi-hua/13-using-colors-in-latex.md)
* [LaTeX 中的长度](/latex/zh-cn/ge-shi-hua/01-lengths-in-latex.md)
* [国际语言支持](/latex/zh-cn/yu-yan/03-international-language-support.md)
* [TikZ 宏包](/latex/zh-cn/tu-xing-he-biao-ge/05-tikz-package.md)
* [Beamer 用户指南 - 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://ayakaleaf-pro.ayaka.space/latex/zh-cn/yan-shi-wen-gao/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.
