> For the complete documentation index, see [llms.txt](https://ayakaleaf-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://ayakaleaf-pro.ayaka.space/latex/nl/afbeeldingen-en-tabellen/03-lists-of-tables-and-figures.md).

# Lijsten van tabellen en afbeeldingen

## Inleiding

Een lijst van tabellen en figuren houdt de informatie georganiseerd en biedt gemakkelijke toegang tot een specifiek element. In dit artikel wordt uitgelegd hoe je een figurenlijst, een tabellenlijst en hoe je de standaardtitel in beide kunt wijzigen.

Laten we beginnen met een eenvoudig voorbeeld:

```latex
\documentclass{article}
\usepackage{graphicx}
\graphicspath{ {figures/} }
\usepackage{array}

\begin{document}

\thispagestyle{empty}
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic}

Lorem ipsum dolor sit amet, consectetuer adipiscing
elit.  Etiam lobortisfacilisis...
\end{document}
```

![ListOfTablesAndFiguresEx1OLV2.png](/files/90fd3e7711e86b9fd822755a2a1f0fd0cdd67543)

&#x20;[Open een voorbeeld in Overleaf](https://www.overleaf.com/project/new/template/20148?id=68603601\&templateName=Lists+of+tables+and+figures\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

De commando's `\listoffigures` en `\listoftables` zijn voor zich sprekend, het eerste genereert de figurenlijst en het tweede de tabellenlijst. In dit voorbeeld zijn er nog twee relevante commando's:

**\thispagestyle{empty}**

Verwijdert de paginanummering.

**\pagenumbering{arabic}**

Start de paginanummering opnieuw met Arabische cijfers.

## De namen wijzigen

Zoals in het volgende voorbeeld wordt getoond, kunnen de standaardtitels, "List of Tables" en "List of Figures", worden gewijzigd in elke andere tekst:

```latex
\documentclass{article}
\usepackage{graphicx}
\usepackage{array}
\graphicspath{ {figures/} }

\renewcommand{\listfigurename}{List of plots}
\renewcommand{\listtablename}{Tables}

\begin{document}

\thispagestyle{empty}
\listoffigures
\listoftables
\clearpage
\pagenumbering{arabic}

Lorem ipsum dolor sit amet, consectetuer adipiscing elit.  Etiam lobortisfacilisis...
\end{document}
```

![Listoffiguresandtables.png](/files/2090445a2e0e77d4e217e1554e46711aeb6b552d)

&#x20;[Open een voorbeeld in Overleaf](https://www.overleaf.com/project/new/template/20148?id=68603601\&templateName=Lists+of+tables+and+figures\&latexEngine=pdflatex\&texImage=texlive-full%3A2020.1\&mainFile=)

De commando's waarmee de titels worden herschreven zijn:

* `\renewcommand{\listfigurename}{List of plots}` zal "List of plots" schrijven in plaats van "List of Figures".
* `\renewcommand{\listtablename}{Tables}` zal "Tables" schrijven in plaats van "List of Tables".

Als je het `babel` pakket in je document gebruikt en je een van de bovenstaande commando's moet gebruiken, plaats het dan tussen de accolades van `\addto\captionsenglish{ }`. In plaats van `english` in `\captionenglish` schrijf je de naam van de taal die je in babel hebt ingesteld.

**Opmerking**: het kan zijn dat je document twee keer gecompileerd moet worden voordat de lijsten correct worden gegenereerd.

## Verder lezen

Voor meer informatie zie:

* [Afbeeldingen invoegen](/latex/nl/meer-onderwerpen/27-inserting-images.md)
* [Tabellen](/latex/nl/afbeeldingen-en-tabellen/01-tables.md)
* [Afbeeldingen en tabellen plaatsen](/latex/nl/afbeeldingen-en-tabellen/02-positioning-images-and-tables.md)
* [Secties en hoofdstukken](/latex/nl/documentstructuur/01-sections-and-chapters.md)
* [Inhoudsopgave](/latex/nl/documentstructuur/02-table-of-contents.md)
* [Indexen](/latex/nl/documentstructuur/04-indices.md)
* [Woordenlijsten](/latex/nl/documentstructuur/05-glossaries.md)
* [Paginanummering](/latex/nl/opmaak/03-page-numbering.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)
* [Tellers](/latex/nl/opmaak/10-counters.md)
* [De niet zo korte inleiding tot LaTeX2ε](http://www.ctan.org/tex-archive/info/lshort/)


---

# 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://ayakaleaf-pro.ayaka.space/latex/nl/afbeeldingen-en-tabellen/03-lists-of-tables-and-figures.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.
