> 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/zh-tw/jian-bao/01-beamer.md).

# Beamer

**`Beamer`** Beamer 是一個強大且靈活的 LaTeX 類別，可用來製作美觀的簡報。本文概述建立 Beamer 投影片簡報的基本步驟：建立標題頁、加入 logo、強調重點、製作目錄，以及為投影片簡報加入效果。

## 簡介

一個簡單的 **beamer** 簡報的最小可運作範例如下。

```latex
\documentclass{beamer}
%要包含在標題頁中的資訊：
\title{範例標題}
\author{匿名者}
\institute{Overleaf}
\date{2021}

\begin{document}

\frame{\titlepage}

\begin{frame}
\frametitle{範例 frame 標題}
這是第一個 frame 中的一些文字。這是第一個 frame 中的一些文字。這是第一個 frame 中的一些文字。
\end{frame}

\end{document}
```

&#x20;[在 Overleaf 中開啟這個 `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/7d9738186e280118073eb24bd8503d389bf93390)

編譯後會產生一個兩頁的 PDF 檔案。第一頁是標題頁，第二頁包含範例內容。

文件中的第一個敘述宣告這是一個 Beamer 投影片簡報： `\documentclass{beamer}`

前言區之後的第一個指令， `\frame{\titlepage}`，會產生標題頁。此頁可包含作者、機構、活動、logo 等資訊。請參閱 [標題頁](#the-title-page) 章節以取得更完整的範例。

該 *框線* 環境會建立第二張投影片，而具自我說明性的指令 `\frametitle{範例 frame 標題}` 是選填的。

值得注意的是，在 beamer 中，基本容器是 **框線**。frame 並不完全等同於一張投影片，一個 frame 可能包含多於一張投影片。例如，含有幾個項目的 frame 可以設定成每次顯示下一個項目時產生新的投影片。

## Beamer 主要功能

Beamer 類別提供一些實用功能，能讓你的簡報更生動、更吸引人。最重要的列在下方。

### 標題頁

標題頁還有一些比 [引言](#introduction)中介紹的更多選項。下一個範例是完整範例，其中大多數指令都是選填的。

```latex
\title[關於 Beamer] %（選填）
{關於用於製作簡報的 Beamer 類別}

\subtitle{短篇故事}

\author[Arthur, Doe] %（選填，適用於多位作者）
{A.~B.~Arthur\inst{1} \and J.~Doe\inst{2}}

\institute[VFU] %（選填）
{
  \inst{1}%
  物理學院\\
  非常知名大學
  \and
  \inst{2}%
  化學學院\\
  非常知名大學
}

\date[VLC 2021] %（選填）
{大型會議，2021 年 4 月}

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

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

&#x20;[在 Overleaf 中開啟一個 `beamer` 套件範例](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\[關於 Beamer] {關於 Beamer 類別...}**

這很重要，你的簡報標題必須放在大括號內。你可以在方括號中設定一個較短的選用標題：在這個例子中，就是 About Beamer。

**\subtitle**

你簡報的副標題。若不需要，可以省略。

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

首先，可以在方括號中加入作者姓名的簡短版本，以逗號分隔。這是選填的；若省略，會顯示完整姓名（在範例中會顯示在標題頁底部）。接著，在大括號內放入作者的完整姓名，並以 \and 指令分隔。還有一個 \inst{1} 指令會加上上標來標示每位作者所屬的機構；這是選填的，如果只有一位作者，或列出的作者都在同一機構工作，就可以省略。

**\institute\[VFU]{\inst{1}學院...**

在這個指令的參數中，你可以宣告每位作者所屬的機構。方括號中的參數，也就是機構／大學的縮寫，是選填的。接著在大括號中加入機構名稱；若有多個機構，必須以 \and 指令分隔。\institute 指令是選填的，但前面程式碼中由 \inst 指令插入的上標需要它。

**\date\[VLC 2021]{大型會議，2021 年 4 月}**

在這個宣告中，你可以設定你要發表投影片的活動名稱與日期。方括號中的參數是一個可選的較短名稱，在這個例子中會顯示在標題頁底部。

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

這會加入一個要顯示的 logo。在這個主題中，logo 設定在右下角。你可以使用文字，或加入一張圖片。

### 建立目錄

通常當簡報很長時，將其分成章節甚至子章節會更方便。在這種情況下，你可以在文件開頭加入目錄。以下是一個範例：

```latex
\begin{frame}
\frametitle{目錄}
\tableofcontents
\end{frame}
```

![BeamerEx2Overleaf.png](/files/4749c223b022f0c09e123f3958f9122c3477fe80)

如你所見，這很簡單。在 *框線* 環境中設定標題，並加入指令 `\titlepage`.

你也可以將目錄放在每個章節的開頭，並強調目前章節的標題。只要將下列程式碼加入 ***前言區*** 到你的 LaTeX 文件中：

```latex
\AtBeginSection[]
{
  \begin{frame}
    \frametitle{目錄}
    \tableofcontents[currentsection]
  \end{frame}
}
```

![BeamerEx3Overleaf.png](/files/06fff7c826e24d6362879dce8e76b5db24841abd)

如果你使用 `\AtBeginSubsection[]` 而不是 `\AtBeginSection[]`，目錄就會出現在每個子章節的開頭。

&#x20;[在 Overleaf 中開啟一個 `beamer` 套件範例](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{範例 frame 標題}
這是第二個 frame 中的一段文字。
為了示範一個範例。

\begin{itemize}
 \item<1-> 第 1 張投影片可見的文字
 \item<2-> 第 2 張投影片可見的文字
 \item<3> 第 3 張投影片可見的文字
 \item<4-> 第 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}` 指令宣告的清單，而且在每個 `項目` 後面會有一個由兩個特殊字元包住的數字： `< >`。這將決定該元素會出現在第幾張投影片；如果你在數字後面加上一個 `-` 放在數字後面， *項目* 則會顯示在該頁以及目前 **框線**的後續投影片中，否則只會出現在那一張投影片。請查看動畫以更好地理解這一點。

這些效果可套用於任何類型的文字，不僅限於 *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;[在 Overleaf 中開啟一個 `beamer` 套件範例](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{範例 frame 標題}

在這張投影片中，一些重要文字將會被
\alert{強調}，因為它很重要。
請不要濫用。

\begin{block}{備註}
範例文字
\end{block}

\begin{alertblock}{重要定理}
紅色方框中的範例文字
\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/163dba20d5be398be74b947a4b0d0bb78c8af8e8)

如果你想在段落中強調一個單字或片語，指令 `\alert{}` 會改變大括號內單字的樣式。包住文字的外觀取決於你所使用的主題。

如果你想用概念、定義、定理或範例來強調一段文字，最好的方式是將它放進一個方框中。方框有三種類型，該選哪一種最適合你的簡報，就由你決定：

**\begin{block}{備註} \end{block}**

block 方框會用與簡報其餘部分相同風格的方框包住文字。\begin{block} 程式碼後面大括號中的文字，就是方框的標題。

**\begin{alertblock}{重要定理} \end{block}**

與 block 相同，但其樣式與簡報所使用的樣式形成對比。

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

同樣地，這也與 block 非常相似；方框有不同的樣式，但不像 alertblock 那麼強烈對比。

## 自訂你的簡報

有些 **Beamer** 簡報可以很容易自訂的部分。例如，你可以設定不同的主題與色彩，並將預設的文字版面改成雙欄格式。

&#x20;[在 Overleaf 中開啟一個 `beamer` 套件範例](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/061bee4c6b4542e557d3306a198ef9938ff783e8)

#### 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/b59a28c426a14702c681a724922d2750af687bb5)

#### 使用色彩主題

主題可以搭配 `色彩主題` 來變更不同元素所使用的顏色。

```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[關於 Beamer] %（選填）
{Madrid 主題 + beaver}
\subtitle{展示較大的字型}
\author[Arthur, Doe] %（選填）
{A.~B.~Arthur\inst{1} \and J.~Doe\inst{2}}

\institute[VFU] %（選填）
{
  \inst{1}%
  物理學院\\
  非常知名大學
  \and
  \inst{2}%
  化學學院\\
  非常知名大學
}

\date[VLC 2021] %（選填）
{大型會議，2021 年 4 月}

% 使用簡單的 TikZ 圖形來顯示 logo 的位置
\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}
%強調文字
\begin{frame}
\frametitle{展示較大的字型}

在這張投影片中，一些重要文字將會被
\alert{強調}，因為它很重要。
請不要濫用。

\begin{block}{備註}
範例文字
\end{block}

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

&#x20;[在 Overleaf 中開啟這個 `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/57fd5413ff6c7a280cec36f37b1e5d15adceadd7)

可用的字型大小有 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。

### 欄位

有時簡報中的資訊以雙欄格式呈現會更好。在這種情況下，請使用 *欄位* 環境：

```latex
\begin{frame}
\frametitle{雙欄投影片}
\begin{columns}
\column{0.5\textwidth}
這是第一欄中的文字。
$$E=mc^2$$
\begin{itemize}
\item 第一項
\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)

在 *框線* 和 *frametitle* 宣告之後，開始一個新的 *欄位* 環境，其界定由 `\begin{columns} \end{columns}`。你可以使用 `\column{0.5\textwidth}` 來宣告每一欄的寬度，較小的數值會縮小寬度。

&#x20;[在 Overleaf 中開啟一個 `beamer` 套件範例](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/2edc3818b182cef260926009861cf482f70a2c71) ![Default default 2.png](/files/2b7a2106e50105ee65bff8e4ba2fd76b63b156ab)         | ![Default beaver 1a.png](/files/b0bcb601137639f0578737f6d6edd5fc40ca9e28) ![Default beaver 2a.png](/files/d31bfce66ef9933f3fa646b214bdcebb75188022)       | ![Default beetle 1.png](/files/c3a2aa2b155d409e00916875e5f6c96aeafbf26f) ![Default beetle 2.png](/files/2bed16c3ed6d94cf572836d9d7c179bf9b1671d7)         | ![Default seahorse 1.png](/files/cd7c613bbc48488d44ab848ce5c25251d4101531) ![Default seahorse 2.png](/files/535eef1ef40250fc99248a2ff156122d602d1d9e)         | ![Default wolverine 1.png](/files/5b46887dc15ed67c763c2af756001d78135f87f2) ![Default wolverine 2.png](/files/3403d9db6b08edf6397257624de13cb546ded197)         |
| AnnArbor    | ![Annarbor default 1.png](/files/5f6741a800984bf0d3b43caee9e84fddaac4bee5) ![Annarbor default 2.png](/files/ac7e3cfbd9966ce1c3d079cc05ecde4374987e91)       | ![Annarbor beaver 1.png](/files/463579b745fc63f8e086c982bb10dfde859083ce) ![Annarbor beaver 2.png](/files/55111e6963ff5fea0b9a467990af663663c77222)       | ![Annarbor beetle 1.png](/files/7f59ae0929c5937dddb20d30d84d12b4ab16597d) ![Annarbor beetle 2.png](/files/e2efae69540647ee970f0e47c6632042c14ce0f3)       | ![Annarbor seahorse 1.png](/files/de898dcd7de27f3dff081e98397d09472b20f1ac) ![Annarbor seahorse 2.png](/files/60ed89f297d61289013ae7f1b9fed9254cc71088)       | ![Annarbor wolverine 1.png](/files/abaf2e19f3b0a3befa84ca4862b4e56c0033f2b1) ![Annarbor wolverine 2.png](/files/1e249827cf357d6a1534f184de12a5da85d5bf43)       |
| Antibes     | ![Antibes default 1.png](/files/a716fe59fb317ad944f2ecfa55d75bf196f04222) ![Antibes default 2.png](/files/3fde594e1bee0eccc79d9d80c021c0da035ae9d1)         | ![Antibes beaver 1.png](/files/03a550b7bb83c77d426359afb60cf4e2734e4356) ![Antibes beaver 2.png](/files/13f28ab40a4b1aa3615e9130e2890fd62f554b39)         | ![Antibes beetle 1.png](/files/9e1c5ab117ae46589bdb67f41eeaa6e3aad4215b) ![Antibes beetle 2.png](/files/80130ff312467cf968029138b93c6662c134c6c5)         | ![Antibes seahorse 1.png](/files/7dd3b6b60af4fd8acf9b26abbd2c61b21fc7edcc) ![Antibes seahorse 2.png](/files/71d943da32b3093a9a4b9a08457b5d779c3872c5)         | ![Antibes wolverine 1.png](/files/aad3eac15a145aaca4fe67017bff47de3b80bdca) ![Antibes wolverine 2.png](/files/946302656d77aaa0fc3d87ef3fb07415b27e5f25)         |
| Bergen      | ![Bergen default 1.png](/files/b3715b51532765697bce896dc5d61dd7d78482de) ![Bergen default 2.png](/files/fd9f09b71a468b97b6680eb7842fa34891633047)           | ![Bergen beaver 1.png](/files/51de11250feaf07f157d9aa7e7acdaa5ee245667) ![Bergen beaver 2.png](/files/28740c08e9b2d0962387aaa9b8068c5d39a5307a)           | ![Bergen beetle 1.png](/files/7a54b9227a4bb25eae29f502d665c86ce17ee121) ![Bergen beetle 2.png](/files/4a372d0259b536829c968b7821ce6882e7ad86bb)           | ![Bergen seahorse 1.png](/files/eb4d64d6d739f889344d1f9cc9c6fe9afeb3659d) ![Bergen seahorse 2.png](/files/6926fceb1d828777b844c9d0ad579aa03dd32946)           | ![Bergen wolverine 1.png](/files/f29d7f9ce89093c822708bd8696167bfe0efb556) ![Bergen wolverine 2.png](/files/7d118c691f2c1f2bea3f59b97fe28972fb3c412d)           |
| Berkeley    | ![Berkeley default 1.png](/files/03bd7d427ce5603c738c77b3a92fec19cd90d55e) ![Berkeley default 2.png](/files/91a49493583334115c3955929cdcf65697b2df54)       | ![Berkeley beaver 1.png](/files/63d0ec433e67dc90494e202bd9d5168f3fbf5562) ![Berkeley beaver 2.png](/files/bd3c064bc191d804a164575503858cd1b8acef67)       | ![Berkeley beetle 1.png](/files/07387cfaacccad41d107d8194abd27ff1471996a) ![Berkeley beetle 2.png](/files/41c81754047461132027dc842cbfaffc4d228b10)       | ![Berkeley seahorse 1.png](/files/9718d63dea9630caf6f845de82eec20a41a4d7c8) ![Berkeley seahorse 2.png](/files/df8bbcccabffcf92391d7b8d5fc806580f800960)       | ![Berkeley wolverine 1.png](/files/bdad1713ed7da6250ac3591433341171f7d9c9fd) ![Berkeley wolverine 2.png](/files/ab2420d5cc4cd307523159558c42f2b7eb406b05)       |
| Berlin      | ![Berlin default 1.png](/files/3e16792c8bb025de2ae81277ff3215f91adf8f9a) ![Berlin default 2.png](/files/8c7883ab116d61adb398384bec5841806847b411)           | ![Berlin beaver 1.png](/files/2a93e611ff4ccec8f7764501e31ce46b0aa84871) ![Berlin beaver 2.png](/files/527a395e39e4b1d1641298051a506ad92e656061)           | ![Berlin beetle 1.png](/files/250008c32031f372a06daeb682fb8e3818775f04) ![Berlin beetle 2.png](/files/348abb92dd3e55e9d10be8a6ae3a99906539697e)           | ![Berlin seahorse 1.png](/files/6d2501138bffa188c0debb0113f6603fb17b89ef) ![Berlin seahorse 2.png](/files/a3a47c75cf7f476010f637aee87a583bd6a689a2)           | ![Berlin wolverine 1.png](/files/3af292de4ee2528bdcdbff6d4c45968c3c29717d) ![Berlin wolverine 2.png](/files/ad71c2127babc2fca7e74139f699a3c6f2ae314f)           |
| Boadilla    | ![Boadilla default 1.png](/files/afcd618682df96fea478e3a254addba22de470d0) ![Boadilla default 2.png](/files/37379c93d88fa5c071ee09370f658deea4cc2937)       | ![Boadilla beaver 1.png](/files/fb4b7c75fccf72989ba8f2a1f9a0296c6dc7f91d) ![Boadilla beaver 2.png](/files/a4251ce471b75924923c3c9b6ea4b0ed5b93d277)       | ![Boadilla beetle 1.png](/files/485a4d9a531ac0998f1cb51302c0b3edb750c7dc) ![Boadilla beetle 2.png](/files/e1c1cd283b6da637ab2e528e51f937aec6121810)       | ![Boadilla seahorse 1.png](/files/78c6cfb0b0cd17f13683ce1f13dcd6947c50d54c) ![Boadilla seahorse 2.png](/files/eb680bd2f62c4ebac1581863582a726c1b9b4e33)       | ![Boadilla wolverine 1.png](/files/8b9cb49a26f350a206295f90eada04dd6b3dd7bd) ![Boadilla wolverine 2.png](/files/f0c209dae53511f2dc6d7ff268b104c3626862c9)       |
| CambridgeUS | ![CambridgeUS default 1.png](/files/da96c5e91e2fb43b4666517903d14f276859a027) ![CambridgeUS default 2.png](/files/99ef0efc8626401bcf475f7d977cddd68f727101) | ![CambridgeUS beaver 1.png](/files/3279ea90917875e3c39a48d2edb44eb4606c3f6d) ![CambridgeUS beaver 2.png](/files/70dacaff0711dd374381c4234afb0feff2c3d5f6) | ![CambridgeUS beetle 1.png](/files/a9d43f26e0332d8dce493d0d18cf5f59057be94c) ![CambridgeUS beetle 2.png](/files/da888f3658c3deb2e5d92c3590403de8d5fd5282) | ![CambridgeUS seahorse 1.png](/files/40c54bf97386675ca7864f5362f919d47228795a) ![CambridgeUS seahorse 2.png](/files/4776f17a60e2286c5299b2a35e1aee3d2047d398) | ![CambridgeUS wolverine 1.png](/files/a89fbecd3b146fb580b7b346a341f22e3749549a) ![CambridgeUS wolverine 2.png](/files/3ab0be1687f0910fb3221edde50be9c41266353e) |
| Copenhagen  | ![Copenhagen default 1.png](/files/ccda08f5cbc992ada0def3e5bbf5c89d2b410e71) ![Copenhagen default 2.png](/files/efe145d4a3e7e818a3d42bfd25019e7e4f31299f)   | ![Copenhagen beaver 1.png](/files/df5b922d580750125508d236710bcf10015f2fec) ![Copenhagen beaver 2.png](/files/1ddee5849a86d7db651c654370d01d67ac0e0f1a)   | ![Copenhagen beetle 1.png](/files/281a90648deccab731622279fd11a460cc27e549) ![Copenhagen beetle 2.png](/files/59ec34610be11b4eb69d767dfc5c0179104bc4dd)   | ![Copenhagen seahorse 1.png](/files/3f8b8899bda35e2d81a7ec377e07dc7bb4285d5e) ![Copenhagen seahorse 2.png](/files/ceb642b4a854ce3805ebea8ffa1411d8f256514a)   | ![Copenhagen wolverine 1.png](/files/c025d0b4b83b0b5ca7a32cbd525b9661536b5cd0) ![Copenhagen wolverine 2.png](/files/952969801ffb9d3479fe06c686c5c18f6a14f0b2)   |
| Darmstadt   | ![Darmstadt default 1.png](/files/0a550fcaa09f1215fc00020888f4b6f70d869ac0) ![Darmstadt default 2.png](/files/c8ce08c00993682812ae0532d93bedaf4f0d30d1)     | ![Darmstadt beaver 1.png](/files/d6d5b3f0234987a1f9c028106043543d5f9189a6) ![Darmstadt beaver 2.png](/files/42388d7d16b81c11411c41a64edf53997944775b)     | ![Darmstadt beetle 1.png](/files/30b86c58b5c98539bbc3f079555d74ffd75a5f21) ![Darmstadt beetle 2.png](/files/59ab87048e24c1d391edbbc87b5ebcf6ff2beac7)     | ![Darmstadt seahorse 1.png](/files/0ae2cb5122c3fc37ea01157b337ea98430338362) ![Darmstadt seahorse 2.png](/files/2beefa1288d55388440bd05dd2114339f459f8d2)     | ![Darmstadt wolverine 1.png](/files/fc2a33e22cfe6ccfca28961eb3a4542d6d9001ca) ![Darmstadt wolverine 2.png](/files/d474a79b4d48fc0d3310cd40c3a03f22b668de34)     |
| Goettingen  | ![Goettingen default 1.png](/files/c809e6a619b8c4b97ad3384863b9d49f19d805d5) ![Goettingen default 2.png](/files/53715cf77e05aa8f0620faffe4b3f2a4a6173d1d)   | ![Goettingen beaver 1.png](/files/a2e2d26076d6489ff4f920a9cc1ae75c27516fbe) ![Goettingen beaver 2.png](/files/e81ed48227715072c1e23b285a50397699800a75)   | ![Goettingen beetle 1.png](/files/b5a4118f3f04014735b65275af8b5678ebe3e1ee) ![Goettingen beetle 2.png](/files/07e5a97fe28f8680b236faa7a08aaeb09979521a)   | ![Goettingen seahorse 1.png](/files/aa2ed19d5e794784ec0eaaf4400cc87256a83c43) ![Goettingen seahorse 2.png](/files/75af97266ccae0ba05c784244e688d0cf72aeb4c)   | ![Goettingen wolverine 1.png](/files/0320c3acf91b11fe2b4faf22a20a0e0bce17a6a6) ![Goettingen wolverine 2.png](/files/42a0f191bd85fa91fef3215eca1457a497942d0e)   |
| PaloAlto    | ![Paloalto default 1.png](/files/e180eed82aa2938f420539b6f00723c761b469ac) ![Paloalto default 2.png](/files/230d3e05993c17370377f45c1c57fa915136e652)       | ![Paloalto beaver 1.png](/files/edf0e0c87f5bd914378ebf0674255ec748b4ca92) ![Paloalto beaver 2.png](/files/b8e29da2fe94297519825d2d541dc86f8c779c92)       | ![Paloalto beetle 1.png](/files/f1ecb714c72fb723d808565623a3ffe394ea3336) ![Paloalto beetle 2.png](/files/992135d58acb6f6f0fe43b75547850a32fa5907c)       | ![Paloalto seahorse 1.png](/files/af7911631f3454250e6786e2a2040c36134370b4) ![Paloalto seahorse 2.png](/files/e84d270f61f095e48369fd7e3df6631881db9c11)       | ![Paloalto wolverine 1.png](/files/057f7a28854ac75eb65354b871218ae850f0f5a4) ![Paloalto wolverine 2.png](/files/ea705b315d3130b44f47815c268b25cdd4ccf278)       |
| Szeged      | ![Szeged default 1.png](/files/cbf7f656efff4f8d42f732da64b12f1cf64d3811) ![Szeged default 2.png](/files/5fd6ff086022c252ae59dba014791065cfd1ecdd)           | ![Szeged beaver 1.png](/files/5c568c7ff58ab24902daac929ebc4ec311376964) ![Szeged beaver 2.png](/files/7570a04b2200c96cf4ad7a1532d6a67075c99162)           | ![Szeged beetle 1.png](/files/f3323c27113e0bb97a94c04ee2f50aec4d9ba9ae) ![Szeged beetle 2.png](/files/3c4a6ee7ef6726b035853d6d3eb6ddf12ff2a405)           | ![Szeged seahorse 1.png](/files/0ee838bf65f96e26437e4e4852bea2bbd869a708) ![Szeged seahorse 2.png](/files/15ca496673234bde7c551f847182ce4b4394b6ee)           | ![Szeged wolverine 1.png](/files/cf690375a58ebfdc795299bf19214377a690852f) ![Szeged wolverine 2.png](/files/689ab7adffa4630599b708ce9d2f875e2140658a)           |
| Warsaw      | ![Warsaw default 1.png](/files/ba6bb061a90a96884d1f1e679bfa883422471f0e) ![Warsaw default 2.png](/files/3489fefd47cff28d2cf2608038f7c4616df1e2b9)           | ![Warsaw beaver 1.png](/files/e0a495443410ed5142dc34ae662b878469400e50) ![Warsaw beaver 2.png](/files/68325e2d4b8dd3c783f3e232b5ab6e8ca3a61380)           | ![Warsaw beetle 1.png](/files/84a335968ed2791a5ccc65c1ee3dec93eeb39130) ![Warsaw beetle 2.png](/files/3db3dc1ecefed4860e5d9ae161a1ed8d29fcfbd4)           | ![Warsaw seahorse 1.png](/files/9b6aa0e19a3831e14830b5088d7ed3e13ec97df5) ![Warsaw seahorse 2.png](/files/3d565e42d86ba9812b0cae9e3bf6371660aeb185)           | ![Warsaw wolverine 1.png](/files/8e36a45f5b7a1c87349e55a365d5c9990570cd64) ![Warsaw wolverine 2.png](/files/27aa8f00e3fc6b7ace9feb17561efb1a51816f97)           |

## 延伸閱讀

如需更多資訊，請參閱完整的套件文件 [這裡](http://texdoc.net/pkg/beamer)。以下資源也可能有幫助：

* [Powerdot](/latex/zh-tw/jian-bao/02-powerdot.md)
* [海報](/latex/zh-tw/jian-bao/03-posters.md)
* [粗體、斜體與底線](/latex/zh-tw/latex-ji-chu/03-bold-italics-and-underlining.md)
* [字型大小、字族與樣式](/latex/zh-tw/zi-xing/01-font-sizes-families-and-styles.md)
* [文字對齊](/latex/zh-tw/ge-shi-hua/06-text-alignment.md)
* [字型字體](/latex/zh-tw/zi-xing/02-font-typefaces.md)
* [插入圖片](/latex/zh-tw/geng-duo-zhu-ti/27-inserting-images.md)
* [在 LaTeX 中使用顏色](/latex/zh-tw/ge-shi-hua/13-using-colors-in-latex.md)
* [LaTeX 中的長度](/latex/zh-tw/ge-shi-hua/01-lengths-in-latex.md)
* [國際語言支援](/latex/zh-tw/yu-yan/03-international-language-support.md)
* [TikZ 套件](/latex/zh-tw/tu-biao-yu-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://overleaf-pro.ayaka.space/latex/zh-tw/jian-bao/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.
