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

# 포스터

## 소개

과학 포스터는 종종 학술대회 및 기타 형태의 모임에서 연구/정보를 प्रस्तुत하는 데 사용되며, 동료들과 토론하기 위한 연구 발표를 돕습니다. 이 글은 LaTeX에서 포스터를 조판하는 기본을 설명하지만, 가능성을 빠르게 살펴보고 싶다면 [Overleaf 갤러리](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/6f9e12457e688c1763326852d63e1c1d07d08b0c) | ![BeamerPosterDemo.png](/files/2525b6dfd4c44ffc84ea489ac7e5f01c51104e76) |

## Tikzposter

`tikzposter` 는 PDF 형식의 과학 포스터를 생성하는 데 사용되는 문서 클래스입니다. 이 클래스는 [TikZ 패키지](/latex/ko/figures-and-tables/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 연구소}
\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/b3e7760189053f6f264ee16ae894aef00e6ff3f9)

### 서문

첫 번째 명령인 `\documentclass[...]{tikzposter}` 은 이 문서가 `tikzposter`임을 선언합니다. 대괄호 안의 추가 매개변수는 각각 글꼴 크기, 용지 크기, 방향을 설정합니다.

사용 가능한 글꼴 크기는: `12pt, 14pt, 17pt, 20pt` 및 `25pt`. 사용 가능한 용지 크기는: `a0paper`, `a1paper` 및 `a2paper`. 몇 가지 추가 옵션이 있으며, [추가 읽기 섹션의](#further-reading) 에서 문서화 링크를 확인하세요.

자기 설명적인 명령인 `제목`, `author`, `날짜` 및 `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 연구소}

\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/6f9e12457e688c1763326852d63e1c1d07d08b0c)

이 `tikzposter` 문서에서 텍스트는 블록으로 구성되며, 각 블록은 명령으로 생성됩니다 `\block{}{}` 이 명령은 두 개의 매개변수를 받으며, 각 매개변수는 중괄호 한 쌍 안에 들어갑니다. 첫 번째는 블록의 제목이고 두 번째는 블록 내부에 실제로 출력될 텍스트입니다.

다음 [환경은](/latex/ko/commands/02-environments.md) `열` 다단 텍스트를 사용할 수 있게 하며, 명령 `\column{}` 은 새 열을 시작하고 열의 상대 너비를 매개변수로 받습니다. 1은 전체 텍스트 영역을 의미하고, 0.5는 텍스트 영역의 절반을 의미하는 식입니다.

명령은 `\note[]{}` 는 텍스트 블록 위에 겹쳐 표시되는 추가 주석을 넣는 데 사용됩니다. 대괄호 안에서는 주석의 위치를 조절하는 추가 매개변수를 설정할 수 있고, 중괄호 안에는 주석의 텍스트를 입력해야 합니다.

#### 그림 캡션과 참조에 대한 참고

앞서 [`tikzposter` 문서](https://mirror.ox.ac.uk/sites/ctan.org/graphics/pgf/contrib/tikzposter/tikzposter.pdf)표준 LaTeX `figure` 환경은 `tikzposter` 문서 클래스와 호환되지 않습니다. 따라서 LaTeX의 [캡션을 추가하고 그림을 참조하는](/latex/ko/more-topics/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/ko/presentations/01-beamer.md) 와 [`a0poster` class](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[비머 포스터]{beamerposter 클래스의 Overleaf 예제}
  \author[welcome@overleaf.com]{Overleaf 팀}
  \institute[Overleaf 대학교]
  {Overleaf 연구소, 학습 학부}
  \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` 패키지에 몇 가지 특수 매개변수를 적용합니다: 방향은 `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[비머 포스터]{beamerposter 클래스의 Overleaf 예제}
  \author[welcome@overleaf.com]{Overleaf 팀}
  \institute[Overleaf 대학교]
  {Overleaf 연구소, 학습 학부}
  \date{\today}

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

  \begin{document}
  \begin{frame}{}
    \vfill
    \begin{block}{\large 글꼴 크기}
      \centering
      {\tiny 아주 작게}\par
      {\scriptsize 스크립트 크기}\par
      {\footnotesize 각주 크기}\par
      {\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/2525b6dfd4c44ffc84ea489ac7e5f01c51104e76)

&#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/ko/commands/02-environments.md)이 환경은 블록의 제목을 매개변수로 받습니다.

다음 [환경은](/latex/ko/commands/02-environments.md) `열` 다단 텍스트를 사용할 수 있게 하며, 환경 `\column` 은 새 열을 시작하고 해당 열의 너비를 매개변수로 받습니다. 모든 [LaTeX 단위](/latex/ko/formatting/01-lengths-in-latex.md) 를 여기에서 사용할 수 있으며, 예제에서는 열 너비가 텍스트 너비에 상대적으로 설정됩니다.

## 참조 안내서

**Tikzposter 테마**

|    |                                                                      |    |                                                                    |
| -- | -------------------------------------------------------------------- | -- | ------------------------------------------------------------------ |
| 기본 | ![TikxDefault.png](/files/3f5844ac9b0ab595355925b5525ca0eab9f4b14d)  | 광선 | ![TikzRays.png](/files/47fdb4b55f569021c06858ae1ec9fb5593c11d37)   |
| 기본 | ![TikzBasic.png](/files/f84a09d494a80f2033d976701b8af5a57abd16e1)    | 단순 | ![TikzSimple.png](/files/bef613ca17d36e3d8058ab4e3bd9ad29b79bfe0f) |
| 봉투 | ![TikzEnvelope.png](/files/56e42de3649bca88c617ef2dcca636495044fbcc) | 물결 | ![TikzWave.png](/files/32e587fdd71ece59b69838f62645f4bbd38ce3ca)   |
| 보드 | ![TikzBoard.png](/files/76d845f76b1ad71e6c3f3d89d5ab7b830d75c6c8)    | 가을 | ![TikzAutumn.png](/files/bb6c9743768c112ce789adc1b534bb8808b6c45c) |
| 사막 | ![TikzDesert.png](/files/3570cda05c822acb26294db77a9ee5ca712c763d)   |    |                                                                    |

## 추가 읽을거리

자세한 내용은 다음을 참조하세요

* [파워닷](/latex/ko/presentations/02-powerdot.md)
* [비머](/latex/ko/presentations/01-beamer.md)
* [굵게, 이탤릭체 및 밑줄](/latex/ko/latex/03-bold-italics-and-underlining.md)
* [글꼴 크기, 패밀리 및 스타일](/latex/ko/fonts/01-font-sizes-families-and-styles.md)
* [텍스트 정렬](/latex/ko/formatting/06-text-alignment.md)
* [글꼴 서체](/latex/ko/fonts/02-font-typefaces.md)
* [이미지 삽입](/latex/ko/more-topics/27-inserting-images.md)
* [LaTeX에서 색상 사용](/latex/ko/formatting/13-using-colors-in-latex.md)
* [LaTeX의 길이](/latex/ko/formatting/01-lengths-in-latex.md)
* [국제 언어 지원](/latex/ko/languages/03-international-language-support.md)
* [TikZ 패키지](/latex/ko/figures-and-tables/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/ko/presentations/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.
