> 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/nl/documentstructuur/01-sections-and-chapters.md).

# Secties en hoofdstukken

## Inleiding

Documenten hebben meestal een of andere vorm van “logische structuur”: indeling in hoofdstukken, secties, subsecties enz. om hun inhoud te organiseren. LaTeX ondersteunt het aanmaken van een documentstructuur en maakt ook aanpassing van sectie-indeling en nummering mogelijk. De beschikbare commando's om een document te organiseren hangen af van de gebruikte documentklasse, hoewel de eenvoudigste vorm van organisatie, sectie-indeling, in alle formaten beschikbaar is.

## Basisvoorbeeld

Laten we beginnen met een basisvoorbeeld om het `\section{*section title*}` commando te demonstreren, dat het begin markeert van een nieuwe sectie met de naam `*section title*`. Sectienummering gebeurt automatisch en kan worden aangepast of uitgeschakeld.

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

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

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

Dit is de eerste sectie.

\blindtext

\section{Second Section}
Dit is de tweede sectie

\blindtext
\end{document}
```

[Open dit voorbeeld in 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)

Dit voorbeeld levert de volgende uitvoer op:

![Voorbeeld van secties en hoofdstukken](/files/b595ab0cf144b743b25c4ce3cf1f7baa5da51570)

## Sectie-indeling van documenten

LaTeX kan hoofdstukken en secties van een document organiseren, nummeren en indexeren. Er zijn tot 7 niveaus van diepte voor het definiëren van secties, afhankelijk van de documentklasse:

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

Meestal, `\section` is in de meeste documenten het commando op het hoogste niveau. Echter, in verslagen of boeken en soortgelijke lange documenten zou dit `\chapter` of `\part`.

## Genummerde en ongenummerde secties

Om een ongenummerd hoofdstuk, sectie, subsectie enz. te krijgen, voeg een asterisk (`*`) aan het einde van het commando toe, vóór de openende accolade. Deze worden niet opgenomen in de inhoudsopgave. Hier is ons eerste voorbeeld (hierboven), maar deze keer met `\section*` in plaats van `\section`:

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

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

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

Dit is de eerste sectie.

\blindtext

\section*{Second Section}
Dit is de tweede sectie

\blindtext
\end{document}
```

[Open dit voorbeeld in 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)

Dit voorbeeld levert de volgende uitvoer op:

![Voorbeeld van ongenummerde secties](/files/0cbeb6faaf79d3834ce40a3a3a14a2d060a45e69)

### Ongenummerde secties in de inhoudsopgave

Om een ongenummerde sectie aan de inhoudsopgave toe te voegen, gebruik het `\addcontentsline` commando als volgt:

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

Hier is een voorbeeld met `\addcontentsline` maar zie het artikel [Inhoudsopgave](/latex/nl/documentstructuur/02-table-of-contents.md) voor meer informatie en voorbeelden.

```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}
Dit is de eerste sectie (genummerd).

\shortlorem
\addcontentsline{toc}{section}{Unnumbered Section}
\section*{Unnumbered Section}
Een ongenummerde sectie

\shortlorem

\section{Second section}
De tweede genummerde sectie.

\shortlorem
\end{document}
```

[Open dit voorbeeld in 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)

Dit voorbeeld levert de volgende uitvoer op:

![Ongenummerde secties in de TOC](/files/83d5b20c54bae4dcc26a73b392e7fbf41b4d7626)

## Hoofdstukken en secties van een document in een boek/rapport

Zoals eerder vermeld, `\chapter` kan worden gebruikt in boeken en verslagen.

### De report-klasse

Hieronder ziet u een voorbeeld `verslag` met tekst ontleend aan het Overleaf-artikel [Een inleiding tot LuaTeX (Deel 1): Wat is het — en wat maakt het zo anders?](/latex/nl/diepgaande-artikelen/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{} is een \textit{toolkit}—het bevat geavanceerde softwarehulpmiddelen en componenten waarmee u een breed scala aan documenten kunt samenstellen (zetten). De ondertitel van dit artikel stelt ook twee vragen over Lua\TeX: Wat is het—en wat maakt het zo anders? Het antwoord op “Wat is het?” lijkt misschien voor de hand liggend: “Het is een \TeX{}-zetmachine!” Inderdaad, maar een breder perspectief, en een waar deze auteur zich bij aansluit, is dat Lua\TeX{} een uiterst veelzijdig \TeX-gebaseerd systeem voor documentopbouw en -engineering is.

\subsection{Explaining Lua\TeX: Where to start?}
Het doel van dit eerste artikel over Lua\TeX{} is om context te bieden voor het begrijpen van wat deze TeX-engine biedt en waarom/hoe het ontwerp gebruikers in staat stelt een breed scala aan oplossingen voor complexe zet- en ontwerpproblemen te bouwen/ontwerpen/creëren—en misschien ook enige mate van “toekomstbestendigheid” te bieden

\chapter{Lua\TeX: Background and history}
\section{Introduction}
Lua\TeX{} is, in \TeX{}-termen, “de nieuwkomer” ondanks dat het al meer dan 10 jaar actief in ontwikkeling is.

\subsection{Lua\TeX: Opening up \TeX’s “black box”}
Knuths oorspronkelijke \TeX{}-programma is de gemeenschappelijke voorouder van alle moderne \TeX{}-engines die vandaag de dag in gebruik zijn, en Lua\TeX{} is in feite de nieuwste evolutionaire stap: afgeleid van het pdf\TeX{}-programma maar met de toevoeging van enkele krachtige softwarecomponenten die veel extra functionaliteit bieden.
\end{document}
```

[Open dit voorbeeld in Overleaf (met `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}>)

Dit voorbeeld levert de volgende uitvoer op—hier tonen we pagina's 2–4, waarbij de pagina-afbeeldingen zijn overlapt om de presentatie te vergemakkelijken:

![Een typisch LaTeX-verslag](/files/188d6671a866e6cda37b93d8d0ead7f7dcdfc108)

### De book-klasse

Het volgende voorbeeld reproduceert tekst uit het `verslag` voorbeeld, maar met `\documentclass{book}`, met delen, hoofdstukken, secties, subsecties en sub-subsecties. Als u het voorbeeld in Overleaf opent, zou u moeten zien dat sub-subsecties die worden gegenereerd door `\subsubsection` zijn *niet* genummerd. Dat is een ontwerpkeuze van de `boek` klasse: als u dit gedrag wilt wijzigen, voeg dan het volgende commando toe aan de preambule van uw document:

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

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

\chapter{An Introduction to Lua\TeX}

\section{What is it—and what makes it so different?}
Lua\TeX{} is een \textit{toolkit}—het bevat geavanceerde softwarehulpmiddelen en componenten waarmee u een breed scala aan documenten kunt samenstellen (zetten). De ondertitel van dit artikel stelt ook twee vragen over Lua\TeX: Wat is het—en wat maakt het zo anders? Het antwoord op “Wat is het?” lijkt misschien voor de hand liggend: “Het is een \TeX{}-zetmachine!” Inderdaad, maar een breder perspectief, en een waar deze auteur zich bij aansluit, is dat Lua\TeX{} een uiterst veelzijdig \TeX-gebaseerd systeem voor documentopbouw en -engineering is.

\subsection{Explaining Lua\TeX: Where to start?}
Het doel van dit eerste artikel over Lua\TeX{} is om context te bieden voor het begrijpen van wat deze TeX-engine biedt en waarom/hoe het ontwerp gebruikers in staat stelt een breed scala aan oplossingen voor complexe zet- en ontwerpproblemen te bouwen/ontwerpen/creëren—en misschien ook enige mate van “toekomstbestendigheid” te bieden

\chapter{Lua\TeX: Background and history}
\section{Introduction}
Lua\TeX{} is, in \TeX{}-termen, “de nieuwkomer” ondanks dat het al meer dan 10 jaar actief in ontwikkeling is.

\subsection{Lua\TeX: Opening up \TeX’s “black box”}
Knuths oorspronkelijke \TeX{}-programma is de gemeenschappelijke voorouder van alle moderne \TeX{}-engines die vandaag de dag in gebruik zijn, en Lua\TeX{} is in feite de nieuwste evolutionaire stap: afgeleid van het pdf\TeX{}-programma maar met de toevoeging van enkele krachtige softwarecomponenten die veel extra functionaliteit bieden.

\subsubsection{How Lua\TeX{} processes \texttt{\string\directlua}: A first look}
De ⟨code⟩ die aan \verb|\directlua{<code>}| wordt gegeven, wordt eerst omgezet in tokens met behulp van de hierboven besproken processen en berekeningen; die reeks tokens wordt opgeslagen in een tokenlijst.
\end{document}
```

[Om de uitvoer te zien, **open dit voorbeeld in Overleaf** (het gebruikt `**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}>)

## Hoofdstukken en secties aanpassen

U kunt het [`titlesec`](https://ctan.org/pkg/titlesec?lang=en) pakket gebruiken om de stijl van hoofdstukken, secties en subsecties op een eenvoudige manier aan te passen.

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

\titleformat
{\chapter} % command
[display] % shape
{\bfseries\Large\itshape} % format
{Story No. \ \thechapter} % label
{0.5ex} % sep
{
    \rule{\textwidth}{1pt}
    \vspace{1ex}
    \centering
} % before-code
[
\vspace{-0.5ex}%
\rule{\textwidth}{0.3pt}
] % after-code

\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}
```

[Open dit `titlesec` voorbeeld in 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)

Dit voorbeeld levert de volgende uitvoer op:

![Titlesecolv2.png](/files/3aebe424f27d65bb696837d824d1168e2c205fa3)

### titlesec-commando's

Er zijn twee algemene commando's:

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

waar `[<shape>]` en `[<after-code>]` optionele parameters zijn, en:

* `<command>` is het sectiecommando dat opnieuw gedefinieerd moet worden: `\part`, `\chapter`, `\section`, `\subsection`, `\subsubsection`, `\paragraph` of `\subparagraph`.
* `<shape>` is de vorm van de sectieparagraaf; mogelijke waarden zijn: `hang`, `block`, `display`, `runin`, `leftmargin`, `rightmargin`, `drop`, `wrap` en `frame`.
* `<format>` is de opmaak die wordt toegepast op de titel, het label en de tekst; bijvoorbeeld `\normalfont\Large\bfseries`
* `<label>` specificeert het sectielabel.
* `<sep>` is de horizontale scheiding tussen label en titeltekst en het moet een lengte zijn en mag niet leeg zijn.
* `<before-code>` is code die voorafgaat aan de titeltekst.
* `<after-code>` is code die volgt op de titeltekst.

en

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

waar:

* `<left>` vergroot de linkermarge.
* `<before-sep>` is de verticale ruimte vóór de titel.
* `<after-sep>` is de scheiding tussen titel en niet-sectiegebonden tekst.

De sterversie van dit commando (`\titlespacing*`) verwijdert de inspringing van de alinea die op de titel volgt.

## Verder lezen

Zie voor meer informatie:

* [Een document maken in LaTeX](/latex/nl/latex-basis/01-learn-latex-in-30-minutes.md)
* [Vet, cursief en onderstrepen](/latex/nl/latex-basis/03-bold-italics-and-underlining.md)
* [Inhoudsopgave](/latex/nl/documentstructuur/02-table-of-contents.md)
* [Secties en vergelijkingen naar elkaar verwijzen](/latex/nl/documentstructuur/03-cross-referencing-sections-equations-and-floats.md)
* [Beheer in een groot project](/latex/nl/documentstructuur/07-management-in-a-large-project.md)
* [LaTeX-projecten met meerdere bestanden](/latex/nl/documentstructuur/08-multi-file-latex-projects.md)
* [Hyperlinks](/latex/nl/documentstructuur/09-hyperlinks.md)
* [Paginanummering](/latex/nl/opmaak/03-page-numbering.md)
* [Enkelzijdige en dubbelzijdige documenten](/latex/nl/opmaak/08-single-sided-and-double-sided-documents.md)
* [Meerdere kolommen](/latex/nl/opmaak/09-multiple-columns.md)
* [Tellers](/latex/nl/opmaak/10-counters.md)
* [Lettergroottes, lettertypen en stijlen](/latex/nl/lettertypen/01-font-sizes-families-and-styles.md)
* [`titlesec` handleiding van het pakket](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/nl/documentstructuur/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.
