> 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/02-powerdot.md).

# Powerdot

**Powerdot** LaTeX 用の強力なプレゼンテーションクラスです。プレゼンターが短時間でプロフェッショナルな見た目のスライドを作成しやすくするいくつかの機能を備えています。この記事では、 `powerdot`.

## はじめに

『 **powerdot**、新しいスライドを作成するには、対応するテキストと画像を特別な環境内に囲む必要があります。以下の例を参照してください。

```latex
\documentclass[paper=smartboard]{powerdot}
\title{Powerdot Presentation}
\author{Overleaf}
\date{\today}

\begin{document}

\maketitle

\begin{slide}{Slide Title}
  \begin{itemize}
  \item これは項目です
  \item 2つ目の項目
  \item 3番目の項目
  \end{itemize}
\end{slide}
\end{document}
```

&#x20;[この基本的な `powerdot` Overleafでの例](https://www.overleaf.com/docs?engine=latex_dvipdf\&snip_name=Minimal+Powerdot+example\&snip=%5Cdocumentclass%5Bpaper%3Dsmartboard%5D%7Bpowerdot%7D%0A%5Ctitle%7BPowerdot+Presentation%7D%0A%5Cauthor%7BOverleaf%7D%0A%5Cdate%7B%5Ctoday%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%0A%5Cmaketitle%0A%0A%5Cbegin%7Bslide%7D%7BSlide+Title%7D%0A++%5Cbegin%7Bitemize%7D%0A++%5Citem+This+is+an+item%0A++%5Citem+Second+item%0A++%5Citem+Third+item%0A++%5Cend%7Bitemize%7D%0A%5Cend%7Bslide%7D%0A%5Cend%7Bdocument%7D)

上記の例を開くと、次の 2 枚のスライドを生成するプロジェクトが作成されます：

![OLPowerdot1f.png](/files/445d273962bfb80a06ab9f09aec3aef935da6e75)

![OLPowerdot2f.png](/files/e5cb90e67c359023777bdf978164fcdb78ddd962)

ある `powerdot` 文書の最初のコマンドは、 `powerdot` クラスを読み込むことです。たとえば：

```latex
\documentclass[paper=smartboard]{powerdot}
```

ここで `[paper=smartboard]` はプレゼンテーションスライドのサイズを設定します。追加の [`powerdot` ドキュメント](http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf) については `paper` オプション値を参照してください。その後、通常のデータ（著者、タイトル、日付）をプリアンブルに含めることができます。文書内では、 `\maketitle` と `\section` のコマンドが対応する情報を表示する新しいスライドを作成します。

タグの間に `\begin{slide}` と `\end{slide}` 新しいスライドの内容を入力します。スライドのタイトルは、開始コマンドの直後の中括弧内にあるオプション引数として設定できます。例では、タイトルは「Slide Title」です。

**注**：コンパイルするには `powerdot` 文書（例：Overleaf 上）では、 `LaTeX` コンパイラを使用する必要があり、 `pdflatex` または `xelatex`.

## 基本的な使い方

クラス宣言コマンドには、いくつかの追加パラメータを加えることができます。

```latex
\documentclass[
    mode=print,
    paper=smartboard,
    orient=landscape
]{powerdot}

% プレゼンテーションのメタデータ
\title{Powerdot Presentation}
\author{Overleaf}
\date{\today}

\begin{document}
\maketitle

% セクション：タイトルがスライド全体を占める
\section{第1節}

\begin{slide}{Slide Title}
    \begin{itemize}
    \item これは項目です
    \item 2つ目の項目
    \item 3番目の項目
    \end{itemize}
\end{slide}

\begin{slide}{Slide N 2}
    これはスライド 2 の内容です。
    数式 $x=2\pi r$。
\end{slide}
\end{document}
```

&#x20;[これを開く `powerdot` Overleaf の文書](https://www.overleaf.com/docs?engine=latex_dvipdf\&snip_name=Powerdot+document+example\&snip=%5Cdocumentclass%5B%0A++++mode%3Dprint%2C%0A++++paper%3Dsmartboard%2C%0A++++orient%3Dlandscape%0A%5D%7Bpowerdot%7D%0A%0A%25+Presentation+metadata%0A%5Ctitle%7BPowerdot+Presentation%7D%0A%5Cauthor%7BOverleaf%7D%0A%5Cdate%7B%5Ctoday%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%5Cmaketitle%0A+++++%0A%25+section%3A+title+takes+up+full+slide%0A%5Csection%7BFirst+section%7D%0A+++++++++++%0A%5Cbegin%7Bslide%7D%7BSlide+Title%7D%0A++++%5Cbegin%7Bitemize%7D%0A++++%5Citem+This+is+an+item%0A++++%5Citem+Second+item%0A++++%5Citem+Third+item%0A++++%5Cend%7Bitemize%7D%0A%5Cend%7Bslide%7D%0A+++++++++++++++++++++++++++++++++++++++++%0A%5Cbegin%7Bslide%7D%7BSlide+N+2%7D%0A++++This+is+the+content+of+slide+2.%0A++++Math+%24x%3D2%5Cpi+r%24.%0A%5Cend%7Bslide%7D%0A%5Cend%7Bdocument%7D)

この例では、コマンド `\documentclass[...]{powerdot}`:

**mode=print**

このモードはスライドを印刷するために使え、オーバーレイとトランジション効果を削除します。ほかに、プレゼンテーションの既定モードである present モードと、スライドの白黒概要を作成し 1 ページあたり 2 枚のスライドを印刷する handout モードがあります。

**paper=smartboard**

これは、スマートボードやワイドスクリーンでのプレゼンテーションに使用する用紙サイズです。ほかの用紙サイズには screen（4:3 比）、a4paper、letterpaper があります。

**orient=landscape**

文書の向き。指定可能な値は landscape と portrait です

**注**：より完全な例を見たい場合は、Overleaf で次のプロジェクトを開いてください：

&#x20;[より大きな `powerdot` Overleafでの例](https://www.overleaf.com/project/new/template/19031?id=63931899\&templateName=Powerdot+Presentation+Example\&latexEngine=latex_dvipdf\&texImage=texlive-full%3A2020.1\&mainFile=main.tex)

## ノートの追加

『 `powerdot` プレゼンターの補助として、スライドにノートを追加することができます。

```latex
\documentclass[
    display=notes,
    mode=print,
    paper=smartboard,
    orient=landscape
]{powerdot}

% プレゼンテーションのメタデータ
\title{Powerdot Presentation}
\author{Overleaf}
\date{\today}

\begin{document}
\maketitle

% セクション：タイトルがスライド全体を占める
\section{第1節}

\begin{slide}{Slide Title}
    \begin{itemize}
    \item これは項目です
    \item 2つ目の項目
    \item 3番目の項目
    \end{itemize}
\end{slide}
\begin{note}{About items}
    項目の一覧をカスタマイズできることに触れてください。
\end{note}
\end{document}
```

&#x20;[これを開く `powerdot` Overleafでの例](https://www.overleaf.com/docs?engine=latex_dvipdf\&snip_name=Powerdot+example+with+notes\&snip=%5Cdocumentclass%5B%0A++++display%3Dnotes%2C%0A++++mode%3Dprint%2C%0A++++paper%3Dsmartboard%2C%0A++++orient%3Dlandscape%0A%5D%7Bpowerdot%7D%0A%0A%25+Presentation+metadata%0A%5Ctitle%7BPowerdot+Presentation%7D%0A%5Cauthor%7BOverleaf%7D%0A%5Cdate%7B%5Ctoday%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%5Cmaketitle%0A+++++%0A%25+section%3A+title+takes+up+full+slide%0A%5Csection%7BFirst+section%7D%0A+++++++++++%0A%5Cbegin%7Bslide%7D%7BSlide+Title%7D%0A++++%5Cbegin%7Bitemize%7D%0A++++%5Citem+This+is+an+item%0A++++%5Citem+Second+item%0A++++%5Citem+Third+item%0A++++%5Cend%7Bitemize%7D%0A%5Cend%7Bslide%7D%0A%5Cbegin%7Bnote%7D%7BAbout+items%7D%0A++++Mention+that+lists+of+items+can+be+customised.%0A%5Cend%7Bnote%7D%0A%5Cend%7Bdocument%7D)

ノートを作成するには、対応するスライドのすぐ下で環境 `note` を使用する必要があります。構文は `slide` 環境と同じで、ノートのタイトルも設定できます。

ノートのみを表示するには、オプション `display=notes` を文書クラスコマンドに渡します。このパラメータのほかの値は次のとおりです： `slidesnotes` これはノートとスライドの両方を印刷し、 `スライド` これはスライドのみを印刷します。

**注**：より完全な例を見たい場合は、Overleaf で次のプロジェクトを開いてください：

&#x20;[より大きな `powerdot` Overleafでの例](https://www.overleaf.com/project/new/template/19031?id=63931899\&templateName=Powerdot+Presentation+Example\&latexEngine=latex_dvipdf\&texImage=texlive-full%3A2020.1\&mainFile=main.tex)

## スタイルとパレット

powerdot のプレゼンテーションの外観は、スタイルとパレットによって変更できます。スタイルはプレゼンテーション全体の見た目を変え、パレットはそのスタイルで使用される色のセットを決定します。

```latex
\documentclass[
    style=sailor,
    paper=smartboard
]{powerdot}

\pdsetup{palette=Chocolate}

...
```

![PowerdotEx4Chocolate.PNG](/files/84438c7745466ecc4a5b2fbe9c1af62577fff203)

前の例の `\documentclass` には、スライドの外観を変更する追加オプションをいくつか渡すことができます：

**style=sailor**

sailor スタイルを設定します。

次のようなほかのオプション `palette` を `\pdsetup{...}`.

**\pdsetup{palette=Chocolate}**

Chocolate のカラーパレットを設定します。

参照: [リファレンスガイド](#reference-guide) で利用可能なスタイルとパレットの一覧を参照してください。

&#x20;[Overleaf で powerdot パッケージの例を開く](https://www.overleaf.com/project/new/template/19031?id=63931899\&templateName=Powerdot+Presentation+Example\&latexEngine=latex_dvipdf\&texImage=texlive-full%3A2020.1\&mainFile=main.tex)

## トランジション

powerdot のプレゼンテーションには、より視覚的に魅力的にするためのトランジション効果を追加できます。

```latex
\documentclass[
    style=sailor,
    display=slides,
    paper=smartboard,
    orient=landscape,
]{powerdot}

\pdsetup{trans=Split}
...
```

![PowerdotEx5.png](/files/d43263337039dba8b9bb7505510cc7e13dd9f426)

この例では、 `Split` というトランジション効果が、コマンド

```latex
\pdsetup{trans=Split}
```

によってプレゼンテーションに追加されています。これはスライドを分割し、それぞれの半分が画面上に現れるようにアニメーション表示します。これらの効果は PDF ビューアに依存し、全画面モードでは最も一般的なビューアでサポートされています。

ほかに可能なトランジション効果は次のとおりです：

* `Blinds`
* `Box`
* `Wipe`
* `Dissolve`
* `Glitter`
* `Replace`
* `Fly`
* `Push`
* `Cover`
* `Uncover`
* `Fade`

&#x20;[Overleaf で powerdot パッケージの例を開く](https://www.overleaf.com/project/new/template/19031?id=63931899\&templateName=Powerdot+Presentation+Example\&latexEngine=latex_dvipdf\&texImage=texlive-full%3A2020.1\&mainFile=main.tex)

## オーバーレイ

スライドの内容全体ではなく、その一部の要素だけを順に表示するために、特別なコマンドを使うことができます。これを実現する方法は 2 つあります。

|                                                                                                                                                                                                                                |                                                                     |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------- |
| `latex<br>\begin{slide}{Slide Title}<br>以下に項目の一覧が表示されています。 \pause \\<br>それらを順番に表示するためのコマンドがあります<br> \begin{itemize}[type=1]<br> \item<2> これは項目です<br> \item<3> 2番目の項目<br> \item<4> 3番目の項目<br> \end{itemize}<br>\end{slide}<br>` | ![PowerdotEx6.gif](/files/0649d5f190a517a97a0ea9aa4a34422fa83f1307) |

オーバーレイ関連のコマンドは 2 つあります：

* `\pause` これにより、コマンドの後ろのテキストを次のオーバーレイまで表示します。
* `\begin{itemize}[type=1]` 追加パラメータにより、 `itemize` と `enumerate` 環境でオーバーレイを有効にできます。次の `\pause` コマンドをここで使うことも、例のように各 `item`に追加パラメータを渡すこともできます。この追加パラメータは、現在の項目をどのオーバーレイに表示するかを決定します。たとえば、最初の項目は 2 番目のオーバーレイにのみ表示されます。

の追加パラメータに対するほかの構文の例は次のとおりです： `\item` コマンドの例は次のとおりです：

* `\item<-2>`。この項目は 2 番目を除くすべてのオーバーレイに表示されます。
* `\item<2->`。この項目は 2 番目以降のすべてのオーバーレイに表示されます。
* `\item<2-5>`。この項目は 2 番目から 5 番目のオーバーレイまで印字されます。

&#x20;[Overleaf で powerdot パッケージの例を開く](https://www.overleaf.com/project/new/template/19031?id=63931899\&templateName=Powerdot+Presentation+Example\&latexEngine=latex_dvipdf\&texImage=texlive-full%3A2020.1\&mainFile=main.tex)

## スライド上での verbatim

ある `powerdot` プレゼンテーションでは特別なコマンドが必要な場合があります。たとえば、スライドに verbatim テキストを追加するには、 `slide` 環境です。

```latex
\documentclass[
    style=sailor,
    display=slides,
    paper=smartboard,
    orient=landscape,
]{powerdot}

\usepackage{listings}
\lstnewenvironment{code}{%
\lstset{frame=single,escapeinside=`',
  backgroundcolor=\color{yellow!20},
  basicstyle=\footnotesize \ttfamily}
}{}

\begin{document}
\begin{slide}[method=direct]{Slide 2}
 手順 1 と 2：
 \begin{code}
    compute a;

    compute b;
 \end{code}
\end{slide}
\end{document}
```

&#x20;[これを開く `powerdot` Overleaf の文書](https://www.overleaf.com/docs?engine=latex_dvipdf\&snip_name=Verbatim+code+in+Powerdot\&snip=%5Cdocumentclass%5B%0A++++style%3Dsailor%2C%0A++++display%3Dslides%2C%0A++++paper%3Dsmartboard%2C%0A++++orient%3Dlandscape%2C%0A%5D%7Bpowerdot%7D%0A%0A%5Cusepackage%7Blistings%7D%0A%5Clstnewenvironment%7Bcode%7D%7B%25%0A%5Clstset%7Bframe%3Dsingle%2Cescapeinside%3D%60%27%2C%0A++backgroundcolor%3D%5Ccolor%7Byellow%2120%7D%2C%0A++basicstyle%3D%5Cfootnotesize+%5Cttfamily%7D%0A%7D%7B%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%5Cbegin%7Bslide%7D%5Bmethod%3Ddirect%5D%7BSlide+2%7D%0A+Steps+1+and+2%3A%0A+%5Cbegin%7Bcode%7D%0A++++compute+a%3B%0A%0A++++compute+b%3B%0A+%5Cend%7Bcode%7D%0A%5Cend%7Bslide%7D%0A%5Cend%7Bdocument%7D)

![PowerdotEx7.png](/files/610bab00f801f55f66fb514aacf829f4ae307ae1)

角括弧内のパラメータ `method=direct` は、スライドに verbatim テキストを追加するために必須ですが、オーバーレイは使用できません。別の方法としては `method=file` を使う方法があります。これは verbatim テキストとオーバーレイを可能にしますが、多くのスライドでこの方法を使うと遅くなることがあります。

&#x20;[Overleaf で powerdot パッケージの例を開く](https://www.overleaf.com/project/new/template/19031?id=63931899\&templateName=Powerdot+Presentation+Example\&latexEngine=latex_dvipdf\&texImage=texlive-full%3A2020.1\&mainFile=main.tex)

## リファレンスガイド

以下にすべての公式 **powerdot** スタイルと、それぞれのスタイルで利用可能なすべてのパレットが一覧表示されています。

|           | メインページ                                                            | 内部ページ                                                             | パレット                                                                                                   |
| --------- | ----------------------------------------------------------------- | ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
| simple    | ![Style1P1.png](/files/3edf711ad208a5fd53a586b74d8fae881db8871b)  | ![Style1P2.png](/files/8514f30439154b6a55b87c116d7264df2907620e)  |                                                                                                        |
| tycja     | ![Style2P1.png](/files/b4418a90903139de7ec8c09959092365d41a7a93)  | ![Style2P2.png](/files/01ebfb550f9102019f5e66da9bbd38d3e702c84e)  |                                                                                                        |
| ikeda     | ![Style3P1.png](/files/ea9ec3f6ef0ea035b0fba15dd55b49f56eafb3a9)  | ![Style3P2.png](/files/19e325f21c9e735f16cac73821c524d3c4e07885)  |                                                                                                        |
| fyma      | ![Style4P1.png](/files/69e5f22d87e837665ec838e070b95bfca9dde6e5)  | ![Style4P2.png](/files/a7ffffb7ec2cb097ddd34c22c70419260459d7df)  | 青、緑、灰色、茶色、オレンジ                                                                                         |
| ciment    | ![Style5P1.png](/files/b8ab24e9f220d20245b13392e0eb10efea08e29c)  | ![Style5P2.png](/files/ddbc73b9562786dcc3133421d8fc78732419691f)  |                                                                                                        |
| elcolors  | ![Style6P1.png](/files/577529cccb1b3e587e0575fb70b210ed2b9af2d8)  | ![Style6P2.png](/files/2ea632cf5e40aa34c75f4121c98320c39df1c772)  |                                                                                                        |
| aggie     | ![Style7P1.png](/files/991d8476caad6ecf1c462fb3a3802a9e022ccb89)  | ![Style7P2.png](/files/447110370c7a589e3dc0c3bf48e7a0c8afbbc7a9)  |                                                                                                        |
| husky     | ![Style8P1.png](/files/c515ebc4d5b86b973c164073171ac70c00379e6d)  | ![Style8P2.png](/files/537291cede7153383442e4638ac3939b86074624)  |                                                                                                        |
| sailor    | ![Style9P1.png](/files/333438b0be010c905042a097132e5ccba2ccce4f)  | ![Style9P2.png](/files/d370f9b9a94bd44d5c27e7428f12d17fb323f762)  | River, Wine, Chocolate, Cocktail                                                                       |
| upen      | ![Style10P1.png](/files/c128e395b083600578ec4c3e64f8932be3a154cb) | ![Style10P2.png](/files/0d20f9f34a34b7b5e745aa8323ab32a82f7d4990) |                                                                                                        |
| bframe    | ![Style11P1.png](/files/0432e20cde813cd9b2fc89abc28aa2105b6d483a) | ![Style11P2.png](/files/8d08caa3ba44b61c370ad926465d1337290adffb) |                                                                                                        |
| horatio   | ![Style12P1.png](/files/d8ac08e2eac5d6d0c04b927cda21a9ee85d57d3d) | ![Style12P2.png](/files/f7606337b961ef7276deea873f82cc0a94139a4a) |                                                                                                        |
| paintings | ![Style13P1.png](/files/9c611f3d93b8890801e15cd028e47b733a785293) | ![Style13P2.png](/files/39f1845e309d5ab559bb760b2ad7ea1769c2e6fa) | Syndics, Skater, GoldenGate, Moitessier, PearlEarring, Lamentation, HolyWood, Europa, MayThird, Charon |
| klope     | ![Style14P1.png](/files/b8e237a45de7792465fe674242b3e41ed124ea97) | ![Style14P2.png](/files/aa43c03c444a666a50d864369e0f045750818dbf) | Spring, PastelFlower, BlueWater, BlackWhite                                                            |
| jefka     | ![Style15P1.png](/files/729faa204a98f2814f07f8d2ea60c6ee56c081c7) | ![Style15P2.png](/files/75a0a3e2e2392f0e3bcbfbe75ccc32960998ef3d) | 茶色、シーグリーン、青、白                                                                                          |
| pazik     | ![Style16P1.png](/files/e6c653e5a35a3dcb8add7c79ce70fe7f8bb0aa81) | ![Style16P2.png](/files/b0e60bbd7c1d7528d777cdb9d3781126e6eb5b98) | 赤、茶色                                                                                                   |

## 参考文献

詳細については、

* [Beamer](/latex/ja/purezentshon/01-beamer.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)
* [その **powerdot** ドキュメント](ftp://bay.uchicago.edu/tex-archive/macros/latex/contrib/powerdot/doc/powerdot.pdf)


---

# 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/02-powerdot.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.
