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

# Powerdot

**파워닷** LaTeX를 위한 강력한 프레젠테이션 클래스입니다. 발표자가 짧은 시간 안에 전문적으로 보이는 슬라이드를 만들 수 있도록 해 주는 여러 기능을 제공합니다. 이 글에서는 사용하는 방법을 설명합니다 `powerdot`.

## 소개

In **powerdot**, 새 슬라이드를 만들려면 해당 텍스트와 이미지를 특별한 환경 안에 넣어야 합니다. 아래 예를 보세요.

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

\begin{document}

\maketitle

\begin{slide}{Slide Title}
  \begin{itemize}
  \item 이것은 항목입니다
  \item 두 번째 항목
  \item 세 번째 항목
  \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)

위 예제를 열면 다음 두 슬라이드를 생성하는 프로젝트가 만들어집니다:

![OLPowerdot1f.png](/files/793984ac0d683836ab0754702b1626c11365d429)

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

문서의 첫 번째 명령은 `powerdot` 클래스를 불러오는 것이어야 합니다. 예: `powerdot` class; 예:

```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"입니다.

**참고**: \begin{slide}를 컴파일하려면 `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{첫 번째 섹션}

\begin{slide}{Slide Title}
    \begin{itemize}
    \item 이것은 항목입니다
    \item 두 번째 항목
    \item 세 번째 항목
    \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가 있으며, 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)

## 메모 추가

In `powerdot` 발표자를 돕기 위해 슬라이드에 메모를 추가할 수 있습니다.

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

% 프레젠테이션 메타데이터
\title{Powerdot Presentation}
\author{Overleaf}
\date{\today}

\begin{document}
\maketitle

% 섹션: 제목이 슬라이드 전체를 차지함
\section{첫 번째 섹션}

\begin{slide}{Slide Title}
    \begin{itemize}
    \item 이것은 항목입니다
    \item 두 번째 항목
    \item 세 번째 항목
    \end{itemize}
\end{slide}
\begin{note}{항목에 관하여}
    항목 목록을 사용자 정의할 수 있음을 언급합니다.
\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)

메모를 만들려면 환경 `메모` 를 해당 슬라이드 바로 아래에서 사용해야 합니다. 문법은 `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/f822a7323602d99a1d9856de2b947233d699ebb3)

추가 옵션을 `\documentclass` 이전 예시에서 슬라이드의 모양을 바꾸는 다음 항목에 전달할 수 있습니다:

**style=sailor**

sailor 스타일을 설정합니다.

다음과 같은 다른 옵션도 `palette` 에 포함할 수 있습니다 `\pdsetup{...}`.

**\pdsetup{palette=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/b083f713c7db9642c0910993189c9547838531ca)

이 예시에서는 `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)

## 오버레이

특수 명령을 사용하면 슬라이드 전체 내용 대신 일부 요소만 드러낼 수 있습니다. 이를 달성하는 방법은 두 가지입니다.

|                                                                                                                                                                                                                                      |                                                                     |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------- |
| `latex<br>\begin{slide}{Slide Title}<br>아래에 항목 목록이 보입니다. \pause \\<br>그것들이 순차적으로 나타나게 하는 명령이 있습니다<br> \begin{itemize}[type=1]<br> \item<2> 이것은 항목입니다<br> \item<3> 두 번째 항목<br> \item<4> 세 번째 항목<br> \end{itemize}<br>\end{slide}<br>` | ![PowerdotEx6.gif](/files/ff92937e4a417a916d4f1f33ef64c6c1d4790b3c) |

오버레이와 관련된 두 명령은 다음과 같습니다:

* `\pause` 명령 뒤의 텍스트를 다음 오버레이까지 표시합니다,
* `\begin{itemize}[type=1]` 추가 매개변수는 `itemize` 및 `enumerate` 환경에서 오버레이를 사용할 수 있게 합니다. 다음을 사용할 수 있습니다 `\pause` 명령을 여기에서 사용하거나, 예시처럼 각 `item`에 추가 매개변수를 전달할 수 있습니다. 이 추가 매개변수는 현재 항목을 표시할 오버레이를 결정합니다. 예를 들어 첫 번째 항목은 두 번째 오버레이에서만 나타납니다.

추가 매개변수에 대한 다른 가능한 문법의 예는 `\item` 명령에서 다음과 같습니다:

* `\item<-2>`. 이 항목은 두 번째를 제외한 모든 오버레이에 나타납니다.
* `\item<2->`. 이 항목은 두 번째 오버레이부터 모든 오버레이에 나타납니다.
* `\item<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

프레젠테이션의 일부 내용에는 특별한 명령이 필요합니다. 예를 들어 슬라이드에 verbatim 텍스트를 추가하려면 `powerdot` 에 추가 매개변수를 넣어야 합니다. `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}
    a를 계산;

    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/f29c91b56d54b66287d0b38d1b6d94d2b885e613)

대괄호 안의 매개변수 `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/9452933ade9a36b2e4586bad4a97afb9e6dc4bad)  | ![Style1P2.png](/files/cb28e03420e249cf5e2f1f8fe108427b0aac087b)  |                                                                                                        |
| tycja     | ![Style2P1.png](/files/269a3d21bb6c363427d33cd6c88e6f5e1d71b7e0)  | ![Style2P2.png](/files/916095159abc4426b562c9ef844e7bf04960501d)  |                                                                                                        |
| ikeda     | ![Style3P1.png](/files/094b3d0a03ac7562644839f741fc39b8a48dc345)  | ![Style3P2.png](/files/0f1e3dc3d872ec4d0cb2d5b18b1b56b7ed7762af)  |                                                                                                        |
| fyma      | ![Style4P1.png](/files/f552b1d0f5d600eda27db882552ad5b790b05213)  | ![Style4P2.png](/files/526b97cb58967024f77fd81c5d8f15ea91043593)  | 파랑, 초록, 회색, 갈색, 주황                                                                                     |
| ciment    | ![Style5P1.png](/files/3aed0cf811e02f7a87c7f93c212327b7ae4a8fba)  | ![Style5P2.png](/files/01a3d35346aaca97c1868fb394c7c4e40d0ba4f6)  |                                                                                                        |
| elcolors  | ![Style6P1.png](/files/f087fc45d7002ef3f48956e29b9441c0f6726c05)  | ![Style6P2.png](/files/91f2421f80c8855dbc8c9a9648927c68364ae00a)  |                                                                                                        |
| aggie     | ![Style7P1.png](/files/d7bbda9d1c4b13d0e0edb0abc4788231379cac8d)  | ![Style7P2.png](/files/c30a98984f32c4407a56d1aa397d51e66e487c35)  |                                                                                                        |
| husky     | ![Style8P1.png](/files/5a39f28a8f6ee39d02dca4a3e7698a6638f3e835)  | ![Style8P2.png](/files/9eb1664c0c0404e427f91040bcb51c1320048ba3)  |                                                                                                        |
| sailor    | ![Style9P1.png](/files/a0728a1def11f93fd350abfe9c4c59c8bcfd2702)  | ![Style9P2.png](/files/790a0e686bcdebbba42b524aefdc33f8bd50d9e3)  | River, Wine, Chocolate, Cocktail                                                                       |
| upen      | ![Style10P1.png](/files/304db3580d832752d31dfcd5edce4f781742abb6) | ![Style10P2.png](/files/c1110010938e88674caa0e78a0b8efb42064cf0d) |                                                                                                        |
| bframe    | ![Style11P1.png](/files/74053b08dba54cbbc89820fd486315ae0b89c395) | ![Style11P2.png](/files/cc17d13e3f0ba3e83c1c0a43bd2ba47a1069cc5d) |                                                                                                        |
| horatio   | ![Style12P1.png](/files/fb1be7bc89489aaf33339a6a882541d5938f8129) | ![Style12P2.png](/files/a82130337c1ab9cd9f3df1a6e78eda0d77792fc6) |                                                                                                        |
| paintings | ![Style13P1.png](/files/e3de686bee7a0918395e83e183259a1e126b7d74) | ![Style13P2.png](/files/594e1c3126ff015a3174ba41148fe2dc32f4e01e) | Syndics, Skater, GoldenGate, Moitessier, PearlEarring, Lamentation, HolyWood, Europa, MayThird, Charon |
| klope     | ![Style14P1.png](/files/aa5d76a96ae18c6e8b3dd807fca6f8bbcf1676a8) | ![Style14P2.png](/files/75e19c593b094c9e01012ddba161d4db8fd6c40f) | Spring, PastelFlower, BlueWater, BlackWhite                                                            |
| jefka     | ![Style15P1.png](/files/3837954823e1e05baba78c54d7a61d3582225dad) | ![Style15P2.png](/files/b2b8a5f24f3a722d7d2a3ab5effe164a6cab16b4) | 갈색, 바다녹색, 파랑, 흰색                                                                                       |
| pazik     | ![Style16P1.png](/files/ae3079f6161d38d92a0b2a1c72fdaa145196ac64) | ![Style16P2.png](/files/450c1e5d128de59b6c651e47b2eb906d6d520b6f) | 빨강, 갈색                                                                                                 |

## 추가 읽을거리

자세한 정보는 다음을 보세요

* [비머](/latex/ko/presentations/01-beamer.md)
* [포스터](/latex/ko/presentations/03-posters.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)
* [다음 **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/ko/presentations/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.
