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

# 海報

## 簡介

科學海報常用於在研討會及其他形式的會議上展示研究／資訊，讓你能夠透過與同儕討論來呈現你的研究。本文說明如何在 LaTeX 中為海報排版的基本概念，但如果你想快速探索各種可能性，請造訪 [提供大量範本，包括數個](https://www.overleaf.com/gallery) 來搜尋海報範本，作為你的起點：

* [`beamerposter` 範本與範例](https://www.overleaf.com/gallery?addsearch=beamerposter)
* [`tikzposter` 範本與範例](https://www.overleaf.com/gallery?addsearch=tikzposter)

## 兩個主要選項

撰寫科學海報的兩個主要選項是 `tikzposter` 以及 `beamerposter`。這兩者都提供簡單的指令來自訂海報，並支援大型紙張格式。下方可看到兩個套件所產生輸出的並排比較（`tikzposter` 左邊是 `beamerposter` 右邊是）。

|                                                                        |                                                                          |
| ---------------------------------------------------------------------- | ------------------------------------------------------------------------ |
| ![PostersEx2OLV2.png](/files/85810f44e7e67cc9ca3775a5fe61bade3bdd0169) | ![BeamerPosterDemo.png](/files/06a140f871a0b7f7e08b991349b512b1a9c23d61) |

## Tikzposter

`tikzposter` 是一個用來產生 PDF 格式科學海報的文件類別。它使用了 [TikZ 套件](/latex/zh-tw/tu-biao-yu-biao-ge/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 Poster Example}
\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/87f8394fa6e431c7fdb7995b2d1b464bc95a9751)

### 前言

第一個指令， `\documentclass[...]{tikzposter}` 聲明這份文件是一個 `tikzposter`。方括號內的額外參數分別設定字型大小、紙張大小與方向。

可用的字型大小有： `12pt、14pt、17pt、20pt` 以及 `25pt`。可用的紙張大小有： `a0paper`, `a1paper` 以及 `a2paper`。還有一些其他選項，請參見 [進一步閱讀章節中的連結](#further-reading) 以取得文件說明的連結。

自我說明式指令 `title`, `author`, `date` 以及 `機構` 用來設定作者資訊。

指令 `\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 Poster Example}
\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
        ]
        {e-mail \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/85810f44e7e67cc9ca3775a5fe61bade3bdd0169)

在 `tikzposter` 文件中，文字是以區塊的方式組織，每個區塊都由指令 `\block{}{}` 來建立。它接收兩個參數，各自置於一對大括號內。第一個是區塊的標題，第二個則是要印在區塊內的實際文字。

該 [環境](/latex/zh-tw/zhi-ling/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/zh-tw/geng-duo-zhu-ti/27-inserting-images.md#captioning-labelling-and-referencing) 必須在 `tikzfigure` 環境中使用，例如：

```latex
\begin{tikzfigure}[Caption of the figure]
\label{fig:fig1}
圖
\end{tikzfigure}
```

## Beamerposter

該 [`beamerposter` 套件](https://ctan.org/tex-archive/macros/latex/contrib/beamerposter?lang=en) 建立在 [標準 beamer 類別之上](/latex/zh-tw/jian-bao/01-beamer.md) 和 [`a0poster` 類別](https://ctan.org/pkg/a0poster)，因此可以使用與 beamer 簡報相同的語法來製作科學海報。雖然此套件的主題較少，且比 [tikzposter](#tikzposter)稍微沒那麼彈性，但如果你熟悉 `beamer`.

**注意：** 該 `beamerposter` 本文章中的範例使用自訂 `beamerposter` 名為 `RedLion`的主題。它是以 `Dreuw` 主題為基礎，該主題由 Philippe Dreuw 與 Thomas Deselaers 建立，但經過修改，使插入標誌以及在海報底部印出電子郵件地址更加容易。這些在原始主題中都是硬編碼的。

### 前言

某個 **beamerposter** 的前言基本上與 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]{Overleaf example of the beamerposter class}
  \author[welcome@overleaf.com]{Overleaf Team}
  \institute[Overleaf University]
  {Overleaf 機構，Learn 教學部門}
  \date{\today}

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

此檔案中的第一個指令是 `\documentclass{beamer}`，它宣告這是一份 beamer 簡報。主題是由 `RedLion` 設定的 `\usetheme{RedLion}`。網路上有一些 beamer 主題，其中大多數可在 [beamerposter 作者的網頁](http://www-i6.informatik.rwth-aachen.de/~dreuw/latexbeamerposter.php).

指令

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

匯入 `beamerposter` 套件，並附帶一些特殊參數：方向設為 `直向`，海報尺寸設為 `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]{Overleaf example of the beamerposter class}
  \author[welcome@overleaf.com]{Overleaf Team}
  \institute[Overleaf University]
  {Overleaf 機構，Learn 教學部門}
  \date{\today}

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

  \begin{document}
  \begin{frame}{}
    \vfill
    \begin{block}{\large Fontsizes}
      \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}{Introduction}
          \begin{itemize}
          \item 一些項目
          \item 一些項目
          ...
          \end{itemize}
        \end{block}
      \end{column}
      \begin{column}{.48\linewidth}
        \begin{block}{Introduction}
          \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/06a140f871a0b7f7e08b991349b512b1a9c23d61)

&#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/zh-tw/zhi-ling/02-environments.md)中建立的，這個環境會將區塊標題作為參數。

該 [環境](/latex/zh-tw/zhi-ling/02-environments.md) `欄` 可啟用多欄文字，環境 `\column` 會開始一個新欄，並將該欄的寬度作為參數。所有 [LaTeX 單位](/latex/zh-tw/ge-shi-hua/01-lengths-in-latex.md) 都可以在這裡使用，在範例中欄寬是相對於文字寬度設定的。

## 參考指南

**Tikzposter 主題**

|    |                                                                      |    |                                                                    |
| -- | -------------------------------------------------------------------- | -- | ------------------------------------------------------------------ |
| 預設 | ![TikxDefault.png](/files/5a3480cc9f054ab6ff10f22b2b3fb27c99b3da7e)  | 光芒 | ![TikzRays.png](/files/aad8eb9d8a979e645ce7606155202a435ae4fd92)   |
| 基本 | ![TikzBasic.png](/files/66e0b7178a1c994273d6db5678d101a9c1de0e45)    | 簡潔 | ![TikzSimple.png](/files/0d06e773c122dc1e9bfb283d215c969f8f9c7618) |
| 信封 | ![TikzEnvelope.png](/files/e2546cb237b19d64439c0dddec3017a2354a174d) | 波浪 | ![TikzWave.png](/files/4093df27e17ea0aec7ed1639807ff80b171254d0)   |
| 看板 | ![TikzBoard.png](/files/3cd8f2c96d45138d912d19bdbaf4f832f0192925)    | 秋季 | ![TikzAutumn.png](/files/f6c0f16e3d431b85eeb421b89a074c8ba85b3ab8) |
| 沙漠 | ![TikzDesert.png](/files/3f724fb2113ee4faf218c8af229d6536685516d9)   |    |                                                                    |

## 延伸閱讀

更多資訊請參見

* [Powerdot](/latex/zh-tw/jian-bao/02-powerdot.md)
* [Beamer](/latex/zh-tw/jian-bao/01-beamer.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)
* [該 **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/zh-tw/jian-bao/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.
