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

# Beamer

**`Beamer`** Beamer は、見た目の良いプレゼンテーションを作成するための強力で柔軟な LaTeX クラスです。この記事では、タイトルページの作成、ロゴの追加、重要なポイントの強調、目次の作成、スライドショーへの効果の追加など、Beamer スライドショーを作るための基本的な手順を説明します。

## はじめに

簡単なものの最小動作例 **beamer** プレゼンテーションを以下に示します。

```latex
\documentclass{beamer}
%タイトルページに含める情報：
\title{サンプルタイトル}
\author{匿名}
\institute{Overleaf}
\date{2021}

\begin{document}

\frame{\titlepage}

\begin{frame}
\frametitle{サンプルフレームタイトル}
これは最初のフレームのテキストです。これは最初のフレームのテキストです。これは最初のフレームのテキストです。
\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/8ddf734c56f1da6744c66dc99c1fac681fd724b2)

コンパイル後、2ページの PDF ファイルが生成されます。1ページ目はタイトルページで、2ページ目にはサンプル内容が含まれます。

文書の最初の記述は、これが Beamer スライドショーであることを宣言しています： `\documentclass{beamer}`

プリアンブルの後の最初のコマンド、 `\frame{\titlepage}`、タイトルページを生成します。このページには著者、所属機関、イベント、ロゴなどの情報を含めることができます。 [タイトルページ](#the-title-page) より完全な例についてはセクションを参照してください。

この *frame* 環境は2枚目のスライドを作成します。自己説明的なコマンド `\frametitle{サンプルフレームタイトル}` は任意です。

Beamer では基本のコンテナが **frame**です。フレームはスライドと厳密には同じではなく、1つのフレームに複数のスライドが含まれることがあります。たとえば、複数の箇条書きを含むフレームでは、各項目を順に表示するために新しいスライドを生成するよう設定できます。

## 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}%
  物理学部\\
  Very Famous University
  \and
  \inst{2}%
  化学部\\
  Very Famous University
}

\date[VLC 2021] %（任意）
{Very Large Conference, 2021年4月}

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

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

&#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} コマンドもあります。これは任意で、著者が1人だけの場合や、列挙した著者が同じ機関に所属している場合は省略できます。

**\institute\[VFU]{\inst{1}学部...**

このコマンドの引数では、各著者の所属機関を宣言できます。角括弧内のパラメータは機関・大学の略称で、任意です。その後、波括弧内に機関名を追加します。機関が複数ある場合は \and コマンドで区切る必要があります。\institute コマンドは任意ですが、前のコードの \inst コマンドで挿入される上付き文字には必要です。

**\date\[VLC 2021]{Very Large Conference, 2021年4月}**

この宣言では、スライドを発表するイベント名と日付を設定できます。角括弧内のパラメータは短い省略名で、任意です。この例ではタイトルページ下部に表示されます。

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

これにより、表示するロゴが追加されます。このテーマでは、ロゴは右下に配置されます。テキストを使うことも、画像を挿入することもできます。

### 目次の作成

通常、長いプレゼンテーションでは、セクションや小節に分けると便利です。その場合、文書の冒頭に目次を追加できます。例を示します：

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

![BeamerEx2Overleaf.png](/files/0112e3e9c6db5952c8b2403cd89eda2ca3cc179f)

ご覧のとおり、簡単です。 *frame* 環境内でタイトルを設定し、コマンド `\titlepage`.

を各セクションの冒頭に置いて、現在のセクションのタイトルを強調表示することもできます。以下のコードを LaTeX 文書の ***プリアンブル*** に追加するだけです：

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

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

もし `\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{サンプルフレームタイトル}
これは2枚目のフレームのテキストです。
例を示すためです。

\begin{itemize}
 \item<1-> スライド1で表示されるテキスト
 \item<2-> スライド2で表示されるテキスト
 \item<3> スライド3で表示されるテキスト
 \item<4-> スライド4で表示されるテキスト
\end{itemize}
\end{frame}
```

&#x20;[このフレームを Overleaf で開くには（ `\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}` コマンドで宣言されたリストがあり、各 `項目` の隣には、2つの特別な文字で囲まれた数字があります： `< >`。これによって要素がどのスライドに表示されるかが決まります。番号の末尾に `-` を付けると、 *項目* は、そのスライドと現在の続くスライドに表示されます **frame**。そうでなければそのスライドにのみ表示されます。これをよく理解するにはアニメーションを確認してください。

これらの効果は、\itemize 環境だけでなく、あらゆる種類のテキストに適用できます。もう1つ、似た働きをするコマンドがありますが、表示するスライドを指定する必要がないので、より簡単です。 *itemize* この環境に対応するテキストを明らかにする必要がないので、

```latex
\begin{frame}
 このスライドでは \pause

 テキストが部分的に表示されます \pause

 そして最後にはすべてが表示されます
\end{frame}
```

&#x20;[このフレームを Overleaf で開くには（ `\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>" %}

このコードは、プレゼンテーションに視覚効果を加えるための3枚のスライドを生成します。 `\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{サンプルフレームタイトル}

このスライドでは、重要なテキストの一部が
\alert{強調表示}されます。重要だからです。
乱用しないでください。

\begin{block}{備考}
サンプルテキスト
\end{block}

\begin{alertblock}{重要な定理}
赤い枠内のサンプルテキスト
\end{alertblock}

\begin{examples}
緑の枠内のサンプルテキスト。ブロックのタイトルは「Examples」です。
\end{examples}
\end{frame}
```

&#x20;[このフレームを Overleaf で開くには（ `\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/474522d83aa7bf6c3e146731d5223f7c438165b6)

段落内の単語やフレーズを強調したい場合、コマンド `\alert{}` は波括弧内の単語のスタイルを変更します。囲まれたテキストの見た目は、使用しているテーマによって異なります。

概念、定義、定理、または例を含む段落を強調するには、ボックスに入れるのが最適です。ボックスには3種類あり、プレゼンテーションに最も合うものを選ぶのはあなた次第です：

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

block ボックスは、テキストをプレゼンテーションの他の部分と同じスタイルの बॉックスに入れます。\begin{block} コードの後の波括弧内のテキストはボックスのタイトルです。

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

block と同じですが、スタイルはプレゼンテーションで使われているものと対照的です。

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

これも block に非常によく似ていて、ボックスのスタイルは異なりますが alertblock ほど対照的ではありません。

## プレゼンテーションのカスタマイズ

〜にはいくつかの要素があり **Beamer** プレゼンテーションは簡単にカスタマイズできます。たとえば、異なるテーマや色を設定したり、既定のテキスト配置を2カラム形式に変更したりできます。

&#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}`

以下にさらに2つの例を示します。

#### Berkeley テーマ

次のことができます  [この LaTeX コードを 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}>) して `Berkeley` テーマを試せます。

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

#### Copenhagen テーマ

次のことができます  [この LaTeX コードを 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}>) して `Copenhagen` テーマを試せます。

![CopenhagenThemeExample.png](/files/57fa5c96c5ed8b7c18543a86b2970ccf07672cc5)

#### カラーテーマの使用

テーマは `カラーテーマ` と組み合わせて、各要素に使われる色を変更できます。

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

以下を `\usecolortheme` ステートメントを `\usetheme` コマンドの下に置く必要があります。  [この LaTeX コードを 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}>) して `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}%
  物理学部\\
  Very Famous University
  \and
  \inst{2}%
  化学部\\
  Very Famous University
}

\date[VLC 2021] %（任意）
{Very Large Conference, 2021年4月}

% ロゴの位置を示すために簡単な TikZ 図形を使用
\logo{\begin{tikzpicture}
\filldraw[color=red!50, fill=red!25, very thick](0,0) circle (0.5);
\node[draw,color=white] at (0,0) {ここにロゴ};
\end{tikzpicture}}
\begin{document}
\frame{\titlepage}
%テキストの強調表示
\begin{frame}
\frametitle{大きなフォントのデモ}

このスライドでは、重要なテキストの一部が
\alert{強調表示}されます。重要だからです。
乱用しないでください。

\begin{block}{備考}
サンプルテキスト
\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/0b3c83b2898f12fd9c57c45036d85a16cd747c58)

利用可能なフォントサイズは 8pt、9pt、10pt、11pt、12pt、14pt、17pt、20pt です。既定のフォントサイズは 11pt です（フルスクリーンモードでは 22pt に相当します）。

#### フォントの種類

Beamer プレゼンテーションのフォント種類を変更するには2つの方法があります。1つは *フォントテーマ* を使う方法、もう1つは直接 *フォント* をシステムから読み込む方法です。まずはフォントテーマから始めましょう：

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

&#x20;[1つ開く `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;[1つ開く `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 です。

### カラム

場合によっては、プレゼンテーションの情報は2カラム形式のほうが見やすくなります。そのような場合は *columns* 環境を使用しなければならないことに注意してください:

```latex
\begin{frame}
\frametitle{2カラムのスライド}
\begin{columns}
\column{0.5\textwidth}
これは1列目のテキストです。
$$E=mc^2$$
\begin{itemize}
\item 1つ目の項目
\item 2つ目の項目
\end{itemize}

\column{0.5\textwidth}
このテキストは2列目に入ります
そして、考えてみると、これは見栄えのよい
レイアウトになる場合があります。
\end{columns}
\end{frame}
```

&#x20;[このフレームを Overleaf で開くには（ `\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;[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) セクションを参照してください。

|             | デフォルト                                                                                                                                                       | beaver                                                                                                                                                    | beetle                                                                                                                                                    | seahorse                                                                                                                                                      | wolverine                                                                                                                                                       |
| ----------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| デフォルト       | ![Default default 1.png](/files/f3c071dab8e8520b342bba079593d5de0dd6e08a) ![Default default 2.png](/files/0859fe66ac028e30d346e72c729b33db8a99ba33)         | ![Default beaver 1a.png](/files/57cdb59980647b57c934bf28ea08d9b8518e42f7) ![Default beaver 2a.png](/files/9a85f8c913b483870d080ec30e922b73c08b9d0a)       | ![Default beetle 1.png](/files/5ecfc4dee856c2a2b65720907ec3650c9a289022) ![Default beetle 2.png](/files/a776b5648d4c13796011b2372eaeb203b878ac77)         | ![Default seahorse 1.png](/files/b1b7ba771ebe32f2d590b9cd4792a17b5dda8618) ![Default seahorse 2.png](/files/06890a9edc0c741281f24dca26e33a3577786ed6)         | ![Default wolverine 1.png](/files/caca41e5af78abd84f21bd8e865bf3f5eb21aeb4) ![Default wolverine 2.png](/files/b82727fc8eaeaed7b318dd7e8d4840688d0a6da3)         |
| AnnArbor    | ![Annarbor default 1.png](/files/4f0f21675849c3ee923fabade556abd7d0b85d19) ![Annarbor default 2.png](/files/de4db700f7e023614a5678d1f26a882d8e5290eb)       | ![Annarbor beaver 1.png](/files/5fb3441b999e6c99147f401bc95eb789eebbd9b8) ![Annarbor beaver 2.png](/files/99fe20971074a0f50e74499a5a4fe6a4954b757c)       | ![Annarbor beetle 1.png](/files/8787b14ea6123f88c9da29622093ccceae990b06) ![Annarbor beetle 2.png](/files/1fe74149dba05ae4dd092517ca789813f7fcb37c)       | ![Annarbor seahorse 1.png](/files/f608be45fe451f7159cac3b9e060f2126c7f7b15) ![Annarbor seahorse 2.png](/files/0b9334e3a74596a76cec5bb9090e11d956d05905)       | ![Annarbor wolverine 1.png](/files/f599cd430f0d2fdab380c5a39c760b117f8768b9) ![Annarbor wolverine 2.png](/files/196a3ea4e5a4bb63a44c6bd0790de627c34574bc)       |
| Antibes     | ![Antibes default 1.png](/files/167376122730bdd8d22da0cdec3b543c019ea457) ![Antibes default 2.png](/files/7dea7aab8843652c46462fc0174c52fb76e37c85)         | ![Antibes beaver 1.png](/files/f5930658f6258716e44aa4bea310140bf3cccca5) ![Antibes beaver 2.png](/files/4f86ae0c63cf65d95ee3af362a54124f9e2a58ae)         | ![Antibes beetle 1.png](/files/34c9470b60c6cbd0059470ee18950e6d645401b9) ![Antibes beetle 2.png](/files/ba1524355b6355940797c4637882b6fa69fe4784)         | ![Antibes seahorse 1.png](/files/3222295d1eff97745dc5f785f95897ff04ea7ff3) ![Antibes seahorse 2.png](/files/b93a71db83a3b89a571b5231249e271f4e79745c)         | ![Antibes wolverine 1.png](/files/a6d71639d130d39d1376c2a59b5db43fca023859) ![Antibes wolverine 2.png](/files/eb6ef93d0ad59084e858491b48601099d78133cd)         |
| Bergen      | ![Bergen default 1.png](/files/6c5d3d5fdbd40f48318fab84bd1608537f1249fb) ![Bergen default 2.png](/files/bb08d140172a2d7f6b30230b5a2724279b020b2d)           | ![Bergen beaver 1.png](/files/b7e9598617b19cc5f758bd649dacde9abdae9130) ![Bergen beaver 2.png](/files/f1b6fafa81f31ace590a9fcadab29b2b6fc7c6f1)           | ![Bergen beetle 1.png](/files/77a9be61e858692e34e26511127a1228dccec7ac) ![Bergen beetle 2.png](/files/f407d41511e508d5a8e299262020ec8665e45b8f)           | ![Bergen seahorse 1.png](/files/33e4b1349a2cefecea12501ed1c7b05706242949) ![Bergen seahorse 2.png](/files/202410dff3519bad592a11b703a781fdcd391f80)           | ![Bergen wolverine 1.png](/files/be2ffaa92cd0e78b0a0c55ba173a21560bdb2281) ![Bergen wolverine 2.png](/files/3dbc2f6976030ccd58da633ec5a3a5cec0bcbb0b)           |
| Berkeley    | ![Berkeley default 1.png](/files/a16332201c6f7833cafd500c0ef02571532c2f94) ![Berkeley default 2.png](/files/c06c777f6774e41ef1f043ec52328efc6605224f)       | ![Berkeley beaver 1.png](/files/701b0a959901143d4516c8ed4d821f3e74d26c0b) ![Berkeley beaver 2.png](/files/23ec291d8bd501c35cca829925b0330b3f272b27)       | ![Berkeley beetle 1.png](/files/99b5f0b8760ce575bb5c82761565291a3cf18227) ![Berkeley beetle 2.png](/files/bbd305b4ec824ac70d3dd17db46b48a6fa380cf1)       | ![Berkeley seahorse 1.png](/files/ee423088e6359d6faa5bb323b6f756b4590b2697) ![Berkeley seahorse 2.png](/files/1d3a9a2dc9cf71ad815fa42b231946c3cb8e16d1)       | ![Berkeley wolverine 1.png](/files/fee2eb97f7ac620f4c9669fc2951768cd3778987) ![Berkeley wolverine 2.png](/files/757de2245ae5e02d288a26b44dde0b2a9a6d25b5)       |
| Berlin      | ![Berlin default 1.png](/files/b6014c2059f220959453719f99001fd17064b764) ![Berlin default 2.png](/files/eb36fc4fabd2663fd677dd924dfebb2703d235da)           | ![Berlin beaver 1.png](/files/a0304ecdb06122cd1cadbbb883c88f56d0e5632f) ![Berlin beaver 2.png](/files/7f950f0d06a3a199b28ee19d747f5cbd8cd55451)           | ![Berlin beetle 1.png](/files/29cabf21f2a4bd8fb84e5fb9633f0afd6a028781) ![Berlin beetle 2.png](/files/b43f7835a2edb85aa04d7c6d4d5ec34bcd82f51e)           | ![Berlin seahorse 1.png](/files/0757b71bc79a8bd71909c01d8c5d6a904a9ea7ca) ![Berlin seahorse 2.png](/files/c16a0e2b4e5111c3402feb3499f46129bff45f6d)           | ![Berlin wolverine 1.png](/files/57619089fe08559f216df6f5464b8709bf0b0694) ![Berlin wolverine 2.png](/files/cd6182bd7e411f2ccfb80d20aaf210bb73660f16)           |
| Boadilla    | ![Boadilla default 1.png](/files/53a9b2c575cc7d6c52b99f578cbf9515bd1c2c42) ![Boadilla default 2.png](/files/f8ebfc52064e859ad22041bf4c00f0ee2dc831ae)       | ![Boadilla beaver 1.png](/files/d1395d41bd758a59bbdd10281e3fd567ea1dbea2) ![Boadilla beaver 2.png](/files/2a5101b465157e00c27433e9c41b954a5644293e)       | ![Boadilla beetle 1.png](/files/f7d0f3b863bd88d74eab94cd716420486a77daa5) ![Boadilla beetle 2.png](/files/09a5f7a1f240d284361a44da5a386d05b5916582)       | ![Boadilla seahorse 1.png](/files/12cc9182ed8fb7d5b5f9db8c4a3ca9078370ae4c) ![Boadilla seahorse 2.png](/files/0b1c8032520296d1af6dc4015dd4c18dc4853b9c)       | ![Boadilla wolverine 1.png](/files/a68829b4ed0ccb26336501befda2a0711dbe4b8d) ![Boadilla wolverine 2.png](/files/996527cd64202d86968c4e8ae0fee1d61b551dce)       |
| CambridgeUS | ![CambridgeUS default 1.png](/files/dc0b6618ab207f8e9134d9f389e337cac1b1f5f6) ![CambridgeUS default 2.png](/files/1685eafbc71f23100a923952594a0e6935ed7472) | ![CambridgeUS beaver 1.png](/files/b178b3713bc88e6fd6a8be1d70f330ee76aac796) ![CambridgeUS beaver 2.png](/files/5b4c234e6733488c2f0e9f0dbbe63846c753cc28) | ![CambridgeUS beetle 1.png](/files/d45dd85d9d95ca6bba52db2d127a33e99676cb80) ![CambridgeUS beetle 2.png](/files/c6f400f8ff70497b143004aff7e35cfbe5ba388c) | ![CambridgeUS seahorse 1.png](/files/a2f2c51dfe0b927db7ecf8286c879b96cc7d4a8f) ![CambridgeUS seahorse 2.png](/files/7c68eadb234715ef5c9ba55d3063da55c0743f66) | ![CambridgeUS wolverine 1.png](/files/024a1dc89e828b53a7d74052a9af10982b6c1680) ![CambridgeUS wolverine 2.png](/files/3c2220831d1b8036aff47c41c3679984614c3a95) |
| Copenhagen  | ![Copenhagen default 1.png](/files/6585fc22d947a3196a9500e20055f81fea2d558a) ![Copenhagen default 2.png](/files/e27c226255884c2e8bf19704aec2b966717b56ed)   | ![Copenhagen beaver 1.png](/files/3bb33ee7fd670381add2de408c1bd46c2b359f0c) ![Copenhagen beaver 2.png](/files/0fa7d561633e9cf90678fa801a2082cc35d3c823)   | ![Copenhagen beetle 1.png](/files/a23fc07f24e50da2761ceef97ef00c45f6938360) ![Copenhagen beetle 2.png](/files/1b5123304d4f0f2d3b8bf109df1d650e767a0a87)   | ![Copenhagen seahorse 1.png](/files/6276516d80573ca58cc5dbd43db602b9b8b5a1e6) ![Copenhagen seahorse 2.png](/files/923dc26744412cb7bb6c38059f9b401a1536c17c)   | ![Copenhagen wolverine 1.png](/files/fe80eb6dad15ab33aac2664203f6c80067f7a132) ![Copenhagen wolverine 2.png](/files/18e2fbc801a8ef7442a8434c0d92c2e3e3298ca5)   |
| Darmstadt   | ![Darmstadt default 1.png](/files/9389835ff2512a99ee6566f8d779fb4bcc6aafb7) ![Darmstadt default 2.png](/files/283e7f22ce7767a42d9d54adb4f1f9a58bf11295)     | ![Darmstadt beaver 1.png](/files/9892bb5aeb8289e491c36195fcca90c65405f4cd) ![Darmstadt beaver 2.png](/files/7827a3e4a03a4e6c0f3ddb830162f33699c32c0e)     | ![Darmstadt beetle 1.png](/files/c9b28cc8cf15b442bfd1394154db298948395db8) ![Darmstadt beetle 2.png](/files/f81c3651cd210152486291492fa84c61ac47b68c)     | ![Darmstadt seahorse 1.png](/files/17b4df986495c87437e7c46214b05ab3e816e3e6) ![Darmstadt seahorse 2.png](/files/b18ae1c08b39cb51125234314b0c8366a6de4771)     | ![Darmstadt wolverine 1.png](/files/6fef89e1a766dda84bcd47f89c7b1e36750c0284) ![Darmstadt wolverine 2.png](/files/8612ec30317d221b1a3b18c2dea1a236ba5101fe)     |
| Goettingen  | ![Goettingen default 1.png](/files/c017958e0b561ff5d20eb0c21d2fe16b407f2a0b) ![Goettingen default 2.png](/files/d1710339d597f8e890d116cb2ea62b97b12cc8da)   | ![Goettingen beaver 1.png](/files/228b980fbe039c37913e6978e833eb481ae0a48f) ![Goettingen beaver 2.png](/files/a5480d3f025d7a831fe161960a636a36ea2f5f8b)   | ![Goettingen beetle 1.png](/files/9335c7657df670350169fe89fdeb879fbc803c8e) ![Goettingen beetle 2.png](/files/70f7f99a0d297a51b0d5dba32add4c2002bc78e8)   | ![Goettingen seahorse 1.png](/files/a3310afde2491913cc1b0543718e382de6aa6a34) ![Goettingen seahorse 2.png](/files/713a21a45b2142ca05f22e89b6f5f9b7350f8ba7)   | ![Goettingen wolverine 1.png](/files/a9e408116f1a4931467996cd0e7ef517240f7108) ![Goettingen wolverine 2.png](/files/df23047fb546d913ba15c100a230d3552c4c078a)   |
| PaloAlto    | ![Paloalto default 1.png](/files/471a3f298adcf455d20d0c5f4cc7635d6cb3acca) ![Paloalto default 2.png](/files/948ea1ae4bdad13cd4f7c26d7f14e9b36c7f4d25)       | ![Paloalto beaver 1.png](/files/c42019319b19e61f23f521c9aa026338814a82e0) ![Paloalto beaver 2.png](/files/ff860d02b1b2b0f08d2ce7a9f1b9f41190c1cdf6)       | ![Paloalto beetle 1.png](/files/566d5b1d0736999cd1c2fff962b482838202fa69) ![Paloalto beetle 2.png](/files/e7b8b105e009af123d99005b3fd54915d3fbe861)       | ![Paloalto seahorse 1.png](/files/b87db0b7df90180b7042720d8902cc5017940f03) ![Paloalto seahorse 2.png](/files/bdd63233fe245b51a72d156f3d98ecc66f3aded1)       | ![Paloalto wolverine 1.png](/files/faaa845c3ebe1b9783366c5d0bfffa62dfea721c) ![Paloalto wolverine 2.png](/files/bed6a6fcf73f09b5a3b9da5460399faaa34e09be)       |
| Szeged      | ![Szeged default 1.png](/files/1cb025e65d5046f1492f2f0cc8517210c8279ea0) ![Szeged default 2.png](/files/0a33493a6cbec3f10db783a7ddb806b0c6a2a9e3)           | ![Szeged beaver 1.png](/files/27bd5b37819674371d41b1e7c0c961bcf1c8d3c8) ![Szeged beaver 2.png](/files/50a3627524a145c42dcf0f168a10240b17b07a49)           | ![Szeged beetle 1.png](/files/5d832fe960941e3b111cb5e41ae69bc2ccee99ef) ![Szeged beetle 2.png](/files/6c62881d1e45ca0b184ca3a5df9324339113d2cb)           | ![Szeged seahorse 1.png](/files/4b77818d9d92a5680163a4914e8c40dae23ca53c) ![Szeged seahorse 2.png](/files/7f8d0e0fc43bb5a4e74bf00e27342871ae4bc4e3)           | ![Szeged wolverine 1.png](/files/afa0efe72b1dd060914124f6b69bafbb2327f0f8) ![Szeged wolverine 2.png](/files/0f82f476fdf708cbf155f802b0974b6aea7b9d7f)           |
| Warsaw      | ![Warsaw default 1.png](/files/3f6bc335e53dabc7e283f64700e1d66f3666868e) ![Warsaw default 2.png](/files/8f7095e19b8341c17791e64acac21fc9da05dd02)           | ![Warsaw beaver 1.png](/files/c5c2d849f933e4783ced5dbc12813790f687ea73) ![Warsaw beaver 2.png](/files/9e6c4d47f6f9a5c1e0ed9d57fe3acd3447b013c7)           | ![Warsaw beetle 1.png](/files/fb2283302f99bc8c353a40332110a319633dd653) ![Warsaw beetle 2.png](/files/de803016c21e92109b5266cc2e7c34be107a7d5f)           | ![Warsaw seahorse 1.png](/files/1a70eb5fa057d5ba7d7286047c20ef7057348ed3) ![Warsaw seahorse 2.png](/files/f4a4bff386430e70776303abdecc2928f34ee5fb)           | ![Warsaw wolverine 1.png](/files/19a1916b49060f8c5b6f2316184d4627d8b9002b) ![Warsaw wolverine 2.png](/files/4c1262d44074de079e4ddfc0cb1b16a555d687b2)           |

## さらに読む

詳細については、パッケージの完全なドキュメントを参照してください [こちら](http://texdoc.net/pkg/beamer)。次のリソースも役立つかもしれません：

* [Powerdot](/latex/ja/purezentshon/02-powerdot.md)
* [ポスター](/latex/ja/purezentshon/03-posters.md)
* [太字、斜体、下線](/latex/ja/latexno/03-bold-italics-and-underlining.md)
* [フォントサイズ、ファミリー、スタイル](/latex/ja/fonto/01-font-sizes-families-and-styles.md)
* [テキスト配置](/latex/ja/shu-shi-she-ding/06-text-alignment.md)
* [フォントの書体](/latex/ja/fonto/02-font-typefaces.md)
* [画像の挿入](/latex/ja/sononotopikku/27-inserting-images.md)
* [LaTeXで色を使う](/latex/ja/shu-shi-she-ding/13-using-colors-in-latex.md)
* [LaTeX における長さ](/latex/ja/shu-shi-she-ding/01-lengths-in-latex.md)
* [国際言語サポート](/latex/ja/yan-yu/03-international-language-support.md)
* [TikZパッケージ](/latex/ja/to/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/ja/purezentshon/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.
