> 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/03-posters.md).

# ポスター

## はじめに

科学ポスターは、会議やその他の集まりで研究／情報を発表するためによく使われます。そこで、同僚と議論するための研究発表を行いやすくできます。この記事では LaTeX でポスターを組版する基本を説明しますが、可能性を手早く試してみたいなら、次を訪れてください。 [Overleaf Gallery](https://www.overleaf.com/gallery) ポスターテンプレートを出発点として検索するには：

* [`beamerposter` テンプレートとサンプル](https://www.overleaf.com/gallery?addsearch=beamerposter)
* [`tikzposter` テンプレートとサンプル](https://www.overleaf.com/gallery?addsearch=tikzposter)

## 2つの主な選択肢

科学ポスターを作成するための2つの主な選択肢は `tikzposter` と `beamerposter`です。どちらも、ポスターをカスタマイズするための簡単なコマンドを備え、大きな用紙サイズをサポートしています。以下では、両パッケージで生成される出力の比較を並べて示します（`tikzposter` 左側が `beamerposter` 、右側が

|                                                                        |                                                                          |
| ---------------------------------------------------------------------- | ------------------------------------------------------------------------ |
| ![PostersEx2OLV2.png](/files/7379bf0df96d49742e62d5a3ec1f13a12357a689) | ![BeamerPosterDemo.png](/files/ea9b2224c0376630fa9572ee346fd3e16c4ea63b) |

## Tikzposter

`tikzposter` は、PDF形式で科学ポスターを生成するための文書クラスです。これは [TikZ パッケージ](/latex/ja/to/05-tikz-package.md) を使用し、非常に柔軟なレイアウトを提供します。

&#x20;[Overleaf でこの `tikzposter` クラスの例を開く](https://www.overleaf.com/project/new/template/20403?id=69813043\&templateName=Example+of+a+Tikz+Poster\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

### プリアンブルとタイトル

のプリアンブルは `tikzposter` クラスでは標準的な構文です：

```latex
\documentclass[25pt, a0paper, portrait]{tikzposter}
\title{Tikz ポスターの例}
\author{Overleaf チーム}
\date{\today}
\institute{Overleaf Institute}
\usetheme{Board}

\begin{document}

\maketitle

\end{document}
```

&#x20;[この最小限の `tikzposter` Overleafでの例](https://www.overleaf.com/docs?engine=\&snip_name=tikzposter+example\&snip=%5Cdocumentclass%5B25pt%2C+a0paper%2C+portrait%5D%7Btikzposter%7D%0A%5Ctitle%7BTikz+Poster+Example%7D%0A%5Cauthor%7BOverleaf+Team%7D%0A%5Cdate%7B%5Ctoday%7D%0A%5Cinstitute%7BOverleaf+Institute%7D%0A%5Cusetheme%7BBoard%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%0A%5Cmaketitle%0A%0A%5Cend%7Bdocument%7D)

以下の画像は、上のコードによって生成された出力を示しています：

![PostersEx1.png](/files/026432fea79ccb7b1566b4adb2596f754124b342)

### プリアンブル

最初のコマンド、 `\documentclass[...]{tikzposter}` は、この文書が `tikzposter`であることを宣言します。角括弧内の追加パラメータは、フォントサイズ、用紙サイズ、向きをそれぞれ設定します。

利用可能なフォントサイズは次のとおりです： `12pt、14pt、17pt、20pt` と `25pt`です。使用可能な用紙サイズは次のとおりです： `a0paper`, `a1paper` と `a2paper`。ほかにもいくつかのオプションがあります。 [さらに読むセクション](#further-reading) ドキュメントへのリンクは

説明的なコマンド `title`, `author`, `date` と `institute` は著者情報を設定するために使われます。

コマンド `\usetheme{Board}` は現在のテーマを設定します。つまり、テキストボックス周辺の色や装飾を変更します。利用可能なテーマのスクリーンショットは [リファレンスガイド](#reference-guide) をご覧ください。

コマンド `\maketitle` ポスター上部にタイトルを表示します。

より詳しい例を見たい場合は、  [この例 `tikzposter` クラスの例を開く](https://www.overleaf.com/project/new/template/20403?id=69813043\&templateName=Example+of+a+Tikz+Poster\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=) .

### 本文

ポスターの本文はテキストブロックによって作成されます。複数カラム配置を有効にでき、各カラムの幅を明示的に制御できるため、最終出力の見た目をかなり柔軟にカスタマイズできます。

```latex
\documentclass[25pt, a0paper, portrait]{tikzposter}

\title{Tikz ポスターの例}
\author{Overleaf チーム}
\date{\today}
\institute{Overleaf Institute}

\usepackage{blindtext}
\usepackage{comment}

\usetheme{Board}

\begin{document}

\maketitle

\block{~}
{
    \blindtext
}

\begin{columns}
    \column{0.4}
    \block{さらにテキスト}{テキストとさらにテキスト}

    \column{0.6}
    \block{その他}{ここでは、\blindtext \vspace{4cm}}
    \note[
        targetoffsetx=-9cm,
        targetoffsety=-6.5cm,
        width=0.5\linewidth
        ]
        {メール \texttt{welcome@overleaf.com}}
\end{columns}

\begin{columns}
    \column{0.5}
    \block{図}
    {
        \begin{tikzfigure}
            \includegraphics[width=0.4\textwidth]{images/overleaf-logo}
        \end{tikzfigure}
    }
    \column{0.5}
    \block{図の説明}{\blindtext}
\end{columns}

\end{document}
```

&#x20;[これを開く `tikzposter` クラスの例を Overleaf で](https://www.overleaf.com/project/new/template/20403?id=69813043\&templateName=Example+of+a+Tikz+Poster\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

以下の図は、上のコードの出力を示しています：

![PostersEx2OLV2.png](/files/7379bf0df96d49742e62d5a3ec1f13a12357a689)

ある `tikzposter` 文書では、テキストはブロック内に整理されます。各ブロックはコマンド `\block{}{}` によって作成され、2つのパラメータを取り、それぞれが中括弧の組の中に入ります。1つ目はブロックのタイトル、2つ目はブロック内に印字される実際の本文です。

その [環境](/latex/ja/komando/02-environments.md) `列` 複数カラムのテキストを有効にするには、コマンド `\column{}` を使います。これは新しいカラムを開始し、パラメータとしてそのカラムの相対幅を受け取ります。1 はテキスト領域全体、0.5 はテキスト領域の半分、という具合です。

コマンド `\note[]{}` は、テキストブロックに重なる形で表示される追加メモを加えるために使います。角括弧内ではメモの配置を制御するための追加パラメータを設定でき、中括弧内にはメモの本文を入力します。

#### 図のキャプションと参照に関する注意

で述べたように、 [`tikzposter` ドキュメント](https://mirror.ox.ac.uk/sites/ctan.org/graphics/pgf/contrib/tikzposter/tikzposter.pdf)内の標準の LaTeX `図` 環境は `tikzposter` 文書クラスと互換性がありません。したがって、LaTeX の [図のキャプション追加と図の参照](/latex/ja/sononotopikku/27-inserting-images.md#captioning-labelling-and-referencing) は `tikzfigure` 環境内で次のように使う必要があります：

```latex
\begin{tikzfigure}[図のキャプション]
\label{fig:fig1}
図
\end{tikzfigure}
```

## Beamerposter

その [`beamerposter` パッケージ](https://ctan.org/tex-archive/macros/latex/contrib/beamerposter?lang=en) は [標準の beamer クラス](/latex/ja/purezentshon/01-beamer.md) と [`a0poster` クラス](https://ctan.org/pkg/a0poster)の上に構築されており、beamer プレゼンテーションと同じ構文で科学ポスターを作成できます。このパッケージにはテーマが少なく、 [tikzposter](#tikzposter)よりも少し柔軟性は低いものの、 `beamer`.

**注：** その `beamerposter` 、この記事ではカスタム `beamerposter` テーマ `RedLion`と呼ばれるものを使っています。これは `Dreuw` フィリップ・ドレウとトーマス・デセラーズによって作成されたテーマに基づいていますが、ロゴの挿入とポスター下部へのメールアドレスの印字を容易にするために修正されています。これらは元のテーマではハードコードされています。

### プリアンブル

のプリアンブルは **beamerposter** は基本的に beamer プレゼンテーションのものと同じですが、追加のコマンドが1つあります。

```latex
\documentclass{beamer}
  \usepackage{times}
  \usepackage{amsmath,amsthm, amssymb}
  \boldmath
  \usetheme{RedLion}
  \usepackage[orientation=portrait,size=a0,scale=1.4]{beamerposter}

  \title[Beamer Poster]{beamerposter クラスの Overleaf 例}
  \author[welcome@overleaf.com]{Overleaf チーム}
  \institute[Overleaf University]
  {Overleaf 研究所、Learn 学部}
  \date{\today}

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

このファイルの最初のコマンドは `\documentclass{beamer}`で、これは beamer プレゼンテーションであることを宣言します。テーマ `RedLion` は `\usetheme{RedLion}`によって設定されます。Web 上にはいくつかの beamer テーマがあり、その多くは [beamerposter の作者の Web ページ](http://www-i6.informatik.rwth-aachen.de/~dreuw/latexbeamerposter.php).

コマンド

```latex
usepackage[orientation=portrait,size=a0,scale=1.4]{beamerposter}
```

を読み込みます。 `beamerposter` パッケージを特別なパラメータ付きで `portrait`に設定され、ポスターサイズは `a0` に設定され、フォントは `1.4`にスケールされます。利用可能なポスターサイズは a0、a1、a2、a3、a4 ですが、寸法はオプション `width=x,height=y`.

で任意に設定できます。残りのコマンドは、ポスターの標準情報、つまりタイトル、著者、研究機関、日付、ロゴを設定します。コマンド `\logo{}` はほとんどのテーマでは動作せず、テーマの .sty ファイルに手動で設定する必要があります。将来的にはこれが変わることを願っています。

### 本文

文書クラスが **beamer**であるため、ポスターを作成するには、すべての内容を `フレーム` 環境です。

```latex
\documentclass{beamer}
  \usepackage{times}
  \usepackage{amsmath,amsthm, amssymb}
  \boldmath
  \usetheme{RedLion}
  \usepackage[orientation=portrait,size=a0,scale=1.4]{beamerposter}

  \title[Beamer Poster]{beamerposter クラスの Overleaf 例}
  \author[welcome@overleaf.com]{Overleaf チーム}
  \institute[Overleaf University]
  {Overleaf 研究所、Learn 学部}
  \date{\today}

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

  \begin{document}
  \begin{frame}{}
    \vfill
    \begin{block}{\large フォントサイズ}
      \centering
      {\tiny tiny}\par
      {\scriptsize scriptsize}\par
      {\footnotesize footnotesize}\par
      {\normalsize normalsize}\par
      ...
    \end{block}

    \end{block}
    \vfill
    \begin{columns}[t]
      \begin{column}{.30\linewidth}
        \begin{block}{はじめに}
          \begin{itemize}
          \item いくつかの項目
          \item いくつかの項目
          ...
          \end{itemize}
        \end{block}
      \end{column}
      \begin{column}{.48\linewidth}
        \begin{block}{はじめに}
          \begin{itemize}
          \item いくつかの項目と $\alpha=\gamma, \sum_{i}$
          ...
          \end{itemize}
          $$\alpha=\gamma, \sum_{i}$$
        \end{block}
        ...

      \end{column}
    \end{columns}
  \end{frame}
\end{document}
```

![BeamerPosterDemo.png](/files/ea9b2224c0376630fa9572ee346fd3e16c4ea63b)

&#x20;[Overleaf でこの `beamerposter` Overleaf でのパッケージ](https://www.overleaf.com/project/new/template/20436?id=69926517\&templateName=Example+of+a+Tikz+Poster\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

ポスター内の内容の多くは `ブロック` [環境](/latex/ja/komando/02-environments.md)内で作成され、この環境はブロックのタイトルをパラメータとして受け取ります。

その [環境](/latex/ja/komando/02-environments.md) `列` 複数カラムのテキストを有効にするには、環境 `\column` で新しいカラムを開始し、そのカラムの幅をパラメータとして受け取ります。ここではすべての [LaTeX の単位](/latex/ja/shu-shi-she-ding/01-lengths-in-latex.md) を使用できます。例では、カラム幅はテキスト幅に対する相対値で設定されています。

## リファレンスガイド

**Tikzposter のテーマ**

|          |                                                                      |        |                                                                    |
| -------- | -------------------------------------------------------------------- | ------ | ------------------------------------------------------------------ |
| デフォルト    | ![TikxDefault.png](/files/940d494ea6e7198e8a1e7386503be2d333f3a392)  | Rays   | ![TikzRays.png](/files/4fff00ca87a1478f6d55e9d95ac47d328f52947e)   |
| Basic    | ![TikzBasic.png](/files/c139c8ef59701d01ec4e685b6dba7778ee0f08d4)    | Simple | ![TikzSimple.png](/files/be4a6c4aa0186162ec240a30bf630d9cb9767802) |
| Envelope | ![TikzEnvelope.png](/files/edde591d6cf055641ab905d313cd4b1ea619303c) | Wave   | ![TikzWave.png](/files/18f34bb50c121d5e12deef43c96a0160418947a1)   |
| Board    | ![TikzBoard.png](/files/1a1ee3ab31507953c7590369acb6f6e8614d9be2)    | Autumn | ![TikzAutumn.png](/files/2397200aff34da722026105dbe9f34ec3303c701) |
| Desert   | ![TikzDesert.png](/files/d3ea27d4b20ccd1b8cb742db0f0fb2ec2bbaec45)   |        |                                                                    |

## 参考文献

詳しくは次を参照してください。

* [Powerdot](/latex/ja/purezentshon/02-powerdot.md)
* [Beamer](/latex/ja/purezentshon/01-beamer.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)
* [その **beamerposter** ドキュメント](http://get-software.net/macros/latex/contrib/beamerposter/beamerposter.pdf)
* [その **tikzposter** パッケージドキュメントに記載されているオプションがあります](http://ctan.mirrors.hoobly.com/graphics/pgf/contrib/tikzposter/tikzposter.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/03-posters.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.
