> 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/wen-jian-jie-gou/01-sections-and-chapters.md).

# 節與章

## 簡介

文件通常具有某種形式的「邏輯結構」：分成章、節、小節等等，以組織其內容。LaTeX 支援建立文件結構，也能自訂章節劃分與編號。可用來組織文件的指令取決於所使用的文件類別，不過最簡單的組織形式——章節劃分——在所有格式中都可使用。

## 基本範例

讓我們從一個基本範例開始，以示範 `\section{*section title*}` 這個指令，它標記一個名為 `*section title*`的新節的開始。節編號是自動產生的，也可以自訂，或停用。

```latex
\documentclass{article}
\usepackage{blindtext}

\title{Sections and Chapters}
\author{Overleaf}
\date{\today}

\begin{document}
\maketitle
\section{Introduction}

這是第一節。

\blindtext

\section{Second Section}
這是第二節

\blindtext
\end{document}
```

[在 Overleaf 中開啟這個範例。](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=Basic+document+structure+example\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cusepackage%7Bblindtext%7D%0A%0A%5Ctitle%7BSections+and+Chapters%7D%0A%5Cauthor%7BOverleaf%7D%0A%5Cdate%7B%5Ctoday%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%5Cmaketitle%0A%5Csection%7BIntroduction%7D%0A%0AThis+is+the+first+section.%0A%0A%5Cblindtext%0A%0A%5Csection%7BSecond+Section%7D%0AThis+is+the+second+section%0A%0A%5Cblindtext%0A%5Cend%7Bdocument%7D)

這個範例會產生以下輸出：

![章節與章節範例](/files/2d4aa598d051525b8f0dd855430aac850a9a68cb)

## 文件章節劃分

LaTeX 可以組織、編號並索引文件中的章與節。依據文件類別，章節定義最多可有 7 個層級：

|    |                                 |
| -- | ------------------------------- |
| -1 | `\part{part}`                   |
| 0  | `\chapter{chapter}`             |
| 1  | `\section{section}`             |
| 2  | `\subsection{subsection}`       |
| 3  | `\subsubsection{subsubsection}` |
| 4  | `\paragraph{paragraph}`         |
| 5  | `\subparagraph{subparagraph}`   |

通常， `\section` 是大多數文件中的最高層級文件指令。不過，在報告或書籍，以及類似的長篇文件中，這會是 `\chapter` 或 `\part`.

## 有編號與無編號的章節

若要取得無編號的章、節、小節等等，請在指令結尾、左大括號前加上一個星號（`*`）。這些項目不會進入目錄。以下是我們第一個範例（上方），但這次使用 `\section*` 而不是 `\section`:

```latex
\documentclass{article}
\usepackage{blindtext}

\title{Sections and Chapters}
\author{Overleaf}
\date{\today}

\begin{document}
\maketitle
\section*{Introduction}

這是第一節。

\blindtext

\section*{Second Section}
這是第二節

\blindtext
\end{document}
```

[在 Overleaf 中開啟這個範例。](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=Example+with+unnumbered+sections\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cusepackage%7Bblindtext%7D%0A%0A%5Ctitle%7BSections+and+Chapters%7D%0A%5Cauthor%7BOverleaf%7D%0A%5Cdate%7B%5Ctoday%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%5Cmaketitle%0A%5Csection%2A%7BIntroduction%7D%0A%0AThis+is+the+first+section.%0A%0A%5Cblindtext%0A%0A%5Csection%2A%7BSecond+Section%7D%0AThis+is+the+second+section%0A%0A%5Cblindtext%0A%5Cend%7Bdocument%7D)

這個範例會產生以下輸出：

![無編號章節範例](/files/37e21cce7c036281689658e7dc457b57735519f6)

### 目錄中的無編號章節

若要將無編號章節加入目錄，請使用 `\addcontentsline` 這個指令，如下所示：

```latex
\addcontentsline{toc}{section}{Title of the section}
```

這裡有一個使用 `\addcontentsline` 的範例，但請參閱文章 [目錄](/latex/zh-tw/wen-jian-jie-gou/02-table-of-contents.md) 以取得更多資訊與範例。

```latex
\documentclass{article}
\title{Sections and Chapters}
\author{Overleaf}
\date{\today}

\begin{document}
\maketitle
\tableofcontents

\newcommand\shortlorem{Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.}

\section{Introduction}
這是第一節（有編號）。

\shortlorem
\addcontentsline{toc}{section}{Unnumbered Section}
\section*{Unnumbered Section}
一個無編號章節

\shortlorem

\section{Second section}
第二個有編號的章節。

\shortlorem
\end{document}
```

[在 Overleaf 中開啟這個範例。](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=Example+of+unnumbered+sections+in+the+TOC\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Ctitle%7BSections+and+Chapters%7D%0A%5Cauthor%7BOverleaf%7D%0A%5Cdate%7B%5Ctoday%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%5Cmaketitle%0A%5Ctableofcontents%0A%0A%5Cnewcommand%5Cshortlorem%7BLorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit%2C+sed+do+eiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+enim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris+nisi+ut+aliquip+ex+ea+commodo+consequat.%7D%0A%0A%5Csection%7BIntroduction%7D%0AThis+is+the+first+section+%28numbered%29.%0A%0A%5Cshortlorem%0A%5Caddcontentsline%7Btoc%7D%7Bsection%7D%7BUnnumbered+Section%7D%0A%5Csection%2A%7BUnnumbered+Section%7D%0AAn+unnumbered+section%0A%0A%5Cshortlorem%0A%0A%5Csection%7BSecond+section%7D%0AThe+second+numbered+section.%0A%0A%5Cshortlorem%0A%5Cend%7Bdocument%7D)

這個範例會產生以下輸出：

![目錄中的無編號章節](/files/97fa2eb5809276126661c2d0b70d019b2a9487f5)

## 書籍／報告中的章與節

如前所述， `\chapter` 可用於書籍與報告。

### 報告類別

以下你可以看到一個範例 `報告` 使用取自 Overleaf 文章的文字 [LuaTeX 簡介（第 1 部分）：它是什麼——以及它為何如此不同？](/latex/zh-tw/shen-ru-wen-zhang/07-an-introduction-to-luatex-part-1-what-is-it-and-what-makes-it-so-different.md)

```latex
\documentclass{report}
\title{Sections and Chapters}
\author{Overleaf}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\chapter{An Introduction to Lua\TeX}

\section{What is it—and what makes it so different?}
Lua\TeX{} 是一個 \textit{工具組}——它包含精密的軟體工具與元件，可用來建構（排版）各式各樣的文件。本文的副標題也提出了兩個關於 Lua\TeX{} 的問題：它是什麼——以及它為何如此不同？對「它是什麼？」的答案似乎很明顯：「它是一個 \TeX{} 排版引擎！」確實如此，但更廣義地看，也是本文作者所認同的觀點，Lua\TeX{} 是一個極其多功能、以 \TeX{} 為基礎的文件建構與工程系統。

\subsection{Explaining Lua\TeX: Where to start?}
這篇關於 Lua\TeX{} 的第一篇文章，目標是提供一個脈絡，幫助理解這個 TeX 引擎提供了什麼，以及其設計如何／為何讓使用者能夠為複雜的排版與設計問題建立／設計／創造各式各樣的解決方案——或許也能提供某種程度的「未來保證」

\chapter{Lua\TeX: Background and history}
\section{Introduction}
就 \TeX{} 而言，Lua\TeX{} 儘管已持續積極開發超過 10 年，仍屬於「新來者」。

\subsection{Lua\TeX: Opening up \TeX’s “black box”}
Knuth 原始的 \TeX{} 程式是如今所有現代 \TeX{} 引擎的共同祖先，而 Lua\TeX{} 實際上是最新的演進步驟：它源自 pdf\TeX{} 程式，但加入了一些強大的軟體元件，帶來了大量額外功能。
\end{document}
```

[在 Overleaf 中開啟這個範例（使用 `lualatex`)](<https://www.overleaf.com/docs?engine=lualatex\&snip_name=Example+of+a+LaTeX+report\&snip=\documentclass{report}&#xA;\title{Sections+and+Chapters}&#xA;\author{Overleaf}&#xA;\date{\today}&#xA;\begin{document}&#xA;\maketitle&#xA;\tableofcontents&#xA;\chapter{An+Introduction+to+Lua\TeX}&#xA;&#xA;\section{What+is+it—and+what+makes+it+so+different?}&#xA;Lua\TeX{}+is+a+\textit{toolkit}—it+contains+sophisticated+software+tools+and+components+with+which+you+can+construct+(typeset)+a+wide+range+of+documents.+The+sub-title+of+this+article+also+poses+two+questions+about+Lua\TeX:+What+is+it—and+what+makes+it+so+different?+The+answer+to+“What+is+it?”+may+seem+obvious:+“It’s+a+\TeX{}+typesetting+engine!”+Indeed+it+is,+but+a+broader+view,+and+one+to+which+this+author+subscribes,+is+that+Lua\TeX{}+is+an+extremely+versatile+\TeX-based+document+construction+and+engineering+system.&#xA;&#xA;\subsection{Explaining+Lua\TeX:+Where+to+start?}&#xA;The+goal+of+this+first+article+on+Lua\TeX{}+is+to+offer+a+context+for+understanding+what+this+TeX+engine+provides+and+why/how+its+design+enables+users+to+build/design/create+a+wide+range+of+solutions+to+complex+typesetting+and+design+problems—perhaps+also+offering+some+degree+of+“future+proofing”+&#xA;&#xA;\chapter{Lua\TeX:+Background+and+history}&#xA;\section{Introduction}&#xA;Lua\TeX{}+is,+in+\TeX{}+terms,+“the+new+kid+on+the+block”+despite+having+been+in+active+development+for+over+10+years.&#xA;&#xA;\subsection{Lua\TeX:+Opening+up+\TeX’s+“black+box”}&#xA;Knuth’s+original+\TeX{}+program+is+the+common+ancestor+of+all+modern+\TeX{}+engines+in+use+today+and+Lua\TeX{}+is,+in+effect,+the+latest+evolutionary+step:+derived+from+the+pdf\TeX{}+program+but+with+the+addition+of+some+powerful+software+components+which+bring+a+great+deal+of+extra+functionality.&#xA;\end{document}>)

這個範例會產生以下輸出——此處顯示第 2 到 4 頁，並將頁面圖像重疊以便呈現：

![一份典型的 LaTeX 報告](/files/dfca1ebb9a837fbd4d802f0c2f421a28af4a488b)

### 書籍類別

以下範例重現了 `報告` 範例中的文字，但使用 `\documentclass{book}`，內容包含 part、chapter、section、subsection 與 sub-subsection。若你在 Overleaf 中開啟此範例，應該會看到由 `\subsubsection` 所產生的 sub-subsection *不會* 被編號。這是 `book` 類別的設計：如果你想改變這個行為，請在文件前言加入以下指令：

```latex
\setcounter{secnumdepth}{3}
```

```latex
\documentclass{book}
\title{Sections and Chapters}
\author{Overleaf}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\part{Lua\TeX 的歷史}

\chapter{An Introduction to Lua\TeX}

\section{What is it—and what makes it so different?}
Lua\TeX{} 是一個 \textit{工具組}——它包含精密的軟體工具與元件，可用來建構（排版）各式各樣的文件。本文的副標題也提出了兩個關於 Lua\TeX{} 的問題：它是什麼——以及它為何如此不同？對「它是什麼？」的答案似乎很明顯：「它是一個 \TeX{} 排版引擎！」確實如此，但更廣義地看，也是本文作者所認同的觀點，Lua\TeX{} 是一個極其多功能、以 \TeX{} 為基礎的文件建構與工程系統。

\subsection{Explaining Lua\TeX: Where to start?}
這篇關於 Lua\TeX{} 的第一篇文章，目標是提供一個脈絡，幫助理解這個 TeX 引擎提供了什麼，以及其設計如何／為何讓使用者能夠為複雜的排版與設計問題建立／設計／創造各式各樣的解決方案——或許也能提供某種程度的「未來保證」

\chapter{Lua\TeX: Background and history}
\section{Introduction}
就 \TeX{} 而言，Lua\TeX{} 儘管已持續積極開發超過 10 年，仍屬於「新來者」。

\subsection{Lua\TeX: Opening up \TeX’s “black box”}
Knuth 原始的 \TeX{} 程式是如今所有現代 \TeX{} 引擎的共同祖先，而 Lua\TeX{} 實際上是最新的演進步驟：它源自 pdf\TeX{} 程式，但加入了一些強大的軟體元件，帶來了大量額外功能。

\subsubsection{Lua\TeX{} 如何處理 \texttt{\string\directlua}：初步檢視}
提供給 \verb|\directlua{<code>}| 的 ⟨code⟩，會先使用上文討論的程序與計算轉換為標記；該標記序列會儲存在一個標記列表中。
\end{document}
```

[若要查看輸出， **在 Overleaf 中開啟這個範例** （它使用 `**lualatex**`)](<https://www.overleaf.com/docs?engine=lualatex\&snip_name=Example+of+a+LaTeX+book\&snip=\documentclass{book}&#xA;\title{Sections+and+Chapters}&#xA;\author{Overleaf}&#xA;\date{\today}&#xA;\begin{document}&#xA;\maketitle&#xA;\tableofcontents&#xA;\part{History+of+Lua\TeX}&#xA;&#xA;\chapter{An+Introduction+to+Lua\TeX}&#xA;&#xA;\section{What+is+it—and+what+makes+it+so+different?}&#xA;Lua\TeX{}+is+a+\textit{toolkit}—it+contains+sophisticated+software+tools+and+components+with+which+you+can+construct+(typeset)+a+wide+range+of+documents.+The+sub-title+of+this+article+also+poses+two+questions+about+Lua\TeX:+What+is+it—and+what+makes+it+so+different?+The+answer+to+“What+is+it?”+may+seem+obvious:+“It’s+a+\TeX{}+typesetting+engine!”+Indeed+it+is,+but+a+broader+view,+and+one+to+which+this+author+subscribes,+is+that+Lua\TeX{}+is+an+extremely+versatile+\TeX-based+document+construction+and+engineering+system.&#xA;&#xA;\subsection{Explaining+Lua\TeX:+Where+to+start?}&#xA;The+goal+of+this+first+article+on+Lua\TeX{}+is+to+offer+a+context+for+understanding+what+this+TeX+engine+provides+and+why/how+its+design+enables+users+to+build/design/create+a+wide+range+of+solutions+to+complex+typesetting+and+design+problems—perhaps+also+offering+some+degree+of+“future+proofing”+&#xA;&#xA;\chapter{Lua\TeX:+Background+and+history}&#xA;\section{Introduction}&#xA;Lua\TeX{}+is,+in+\TeX{}+terms,+“the+new+kid+on+the+block”+despite+having+been+in+active+development+for+over+10+years.&#xA;&#xA;\subsection{Lua\TeX:+Opening+up+\TeX’s+“black+box”}&#xA;Knuth’s+original+\TeX{}+program+is+the+common+ancestor+of+all+modern+\TeX{}+engines+in+use+today+and+Lua\TeX{}+is,+in+effect,+the+latest+evolutionary+step:+derived+from+the+pdf\TeX{}+program+but+with+the+addition+of+some+powerful+software+components+which+bring+a+great+deal+of+extra+functionality.&#xA;&#xA;\subsubsection{How+Lua\TeX{}+processes+\texttt{\string\directlua}:+A+first+look}&#xA;The+⟨code⟩+provided+to+\verb|\directlua{\<code\>}|+is+first+converted+to+tokens+using+the+processes+and+calculations+discussed+above;+that+sequence+of+tokens+is+stored+in+a+token+list.&#xA;\end{document}>)

## 自訂章與節

你可以使用 [`titlesec`](https://ctan.org/pkg/titlesec?lang=en) 套件，以簡單的方式自訂章、節與小節的樣式。

```latex
\documentclass[a4paper,12pt]{book}
\usepackage[T1]{fontenc}
\usepackage{titlesec}

\titleformat
{\chapter} % 指令
[display] % 形狀
{\bfseries\Large\itshape} % 格式
{Story No. \ \thechapter} % 標籤
{0.5ex} % 間距
{
    \rule{\textwidth}{1pt}
    \vspace{1ex}
    \centering
} % 前置程式碼
[
\vspace{-0.5ex}%
\rule{\textwidth}{0.3pt}
] % 後置程式碼

\titleformat{\section}[wrap]
{\normalfont\bfseries}
{\thesection.}{0.5em}{}

\titlespacing{\section}{12pc}{1.5ex plus .1ex minus .2ex}{1pc}

\begin{document}
\chapter{Let’s begin}
\section{First Attempt}

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris...

\section{Second attempt}

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris...

\end{document}
```

[開啟這個 `titlesec` 範例於 Overleaf。](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=titlesec+example\&snip=%5Cdocumentclass%5Ba4paper%2C12pt%5D%7Bbook%7D%0A%5Cusepackage%5BT1%5D%7Bfontenc%7D%0A%5Cusepackage%7Btitlesec%7D%0A%0A%5Ctitleformat%0A%7B%5Cchapter%7D+%25+command%0A%5Bdisplay%5D+%25+shape%0A%7B%5Cbfseries%5CLarge%5Citshape%7D+%25+format%0A%7BStory+No.+%5C+%5Cthechapter%7D+%25+label%0A%7B0.5ex%7D+%25+sep%0A%7B%0A++++%5Crule%7B%5Ctextwidth%7D%7B1pt%7D%0A++++%5Cvspace%7B1ex%7D%0A++++%5Ccentering%0A%7D+%25+before-code%0A%5B%0A%5Cvspace%7B-0.5ex%7D%25%0A%5Crule%7B%5Ctextwidth%7D%7B0.3pt%7D%0A%5D+%25+after-code%0A%0A%0A%5Ctitleformat%7B%5Csection%7D%5Bwrap%5D%0A%7B%5Cnormalfont%5Cbfseries%7D%0A%7B%5Cthesection.%7D%7B0.5em%7D%7B%7D%0A%0A%5Ctitlespacing%7B%5Csection%7D%7B12pc%7D%7B1.5ex+plus+.1ex+minus+.2ex%7D%7B1pc%7D%0A%0A%5Cbegin%7Bdocument%7D%0A%5Cchapter%7BLet%27s+begin%7D%0A%5Csection%7BFirst+Attempt%7D%0A%0ALorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit%2C+sed+do+%0Aeiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+%0Aenim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris...%0A%0A%5Csection%7BSecond+attempt%7D%0A%0ALorem+ipsum+dolor+sit+amet%2C+consectetur+adipiscing+elit%2C+sed+do+%0Aeiusmod+tempor+incididunt+ut+labore+et+dolore+magna+aliqua.+Ut+%0Aenim+ad+minim+veniam%2C+quis+nostrud+exercitation+ullamco+laboris...%0A%0A%5Cend%7Bdocument%7D)

這個範例會產生以下輸出：

![Titlesecolv2.png](/files/66cafaf09e90019a70ae82f516efb757649bba96)

### titlesec 指令

有兩個通用指令：

```latex
 \titleformat{<command>}[<shape>]{<format>}{<label>}{<sep>}{<before-code>}[<after-code>]
```

其中 `[<shape>]` 和 `[<after-code>]` 是可選參數，且：

* `<command>` 是要重新定義的章節指令： `\part`, `\chapter`, `\section`, `\subsection`, `\subsubsection`, `\paragraph` 或 `\subparagraph`.
* `<shape>` 是章節段落的形狀；可用值如下： `hang`, `block`, `display`, `runin`, `leftmargin`, `rightmargin`, `drop`, `wrap` 和 `frame`.
* `<format>` 是要套用到標題、標籤與文字的格式；例如 `\normalfont\Large\bfseries`
* `<label>` 指定章節標籤。
* `<sep>` 是標籤與標題正文之間的水平間距，必須是長度值且不能為空。
* `<before-code>` 是標題正文前的程式碼。
* `<after-code>` 是標題正文後的程式碼。

和

```latex
 \titlespacing{<command>}{<left>}{<before-sep>}{<after-sep>}
```

其中：

* `<left>` 增加左邊界。
* `<before-sep>` 是標題前的垂直空間。
* `<after-sep>` 是標題與非章節文字之間的間距。

此指令的星號版本（`\titlespacing*`）會取消標題後段落的縮排。

## 延伸閱讀

更多資訊請參閱：

* [在 LaTeX 中建立文件](/latex/zh-tw/latex-ji-chu/01-learn-latex-in-30-minutes.md)
* [粗體、斜體與底線](/latex/zh-tw/latex-ji-chu/03-bold-italics-and-underlining.md)
* [目錄](/latex/zh-tw/wen-jian-jie-gou/02-table-of-contents.md)
* [章節與方程式的交叉引用](/latex/zh-tw/wen-jian-jie-gou/03-cross-referencing-sections-equations-and-floats.md)
* [大型專案中的管理](/latex/zh-tw/wen-jian-jie-gou/07-management-in-a-large-project.md)
* [多檔案 LaTeX 專案](/latex/zh-tw/wen-jian-jie-gou/08-multi-file-latex-projects.md)
* [超連結](/latex/zh-tw/wen-jian-jie-gou/09-hyperlinks.md)
* [頁碼編號](/latex/zh-tw/ge-shi-hua/03-page-numbering.md)
* [單面與雙面文件](/latex/zh-tw/ge-shi-hua/08-single-sided-and-double-sided-documents.md)
* [多欄排版](/latex/zh-tw/ge-shi-hua/09-multiple-columns.md)
* [計數器](/latex/zh-tw/ge-shi-hua/10-counters.md)
* [字型大小、字族與樣式](/latex/zh-tw/zi-xing/01-font-sizes-families-and-styles.md)
* [`titlesec` 套件手冊](http://mirrors.ctan.org/macros/latex/contrib/titlesec/titlesec.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/wen-jian-jie-gou/01-sections-and-chapters.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.
