> 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/latex-fouten/17-latex-error-something-s-wrong-perhaps-a-missing-item.md).

# LaTeX-fout: er is iets mis--misschien ontbreekt een \item

Deze fout verschijnt wanneer je bent vergeten een **`\item`** commando op te nemen. Het kan ook verschijnen wanneer je lijsten binnen een tabel verkeerd probeert te gebruiken.

## Veelvoorkomende oorzaken

**Vergeten om \item te schrijven:**

Het meest basale voorbeeld van deze fout is wanneer je LaTeX hebt verteld dat je een lijst gaat schrijven, maar je je lijstelementen niet hebt gelabeld met **`\item`** tags. Een voorbeeld hiervan wordt hieronder getoond

```latex
\begin{itemize}
Dit is het eerste item in onze lijst
\end{itemize}
```

Hier heb je LaTeX verteld dat je een lijst schrijft door gebruik te maken van de **`itemize`** omgeving. De fout die wordt gemaakt is dat je je lijstelement niet hebt gelabeld met **`\item`**. Dit zal de onderstaande fout genereren:

main.tex, regel 6

LaTeX-fout: Er is iets mis--misschien ontbreekt \item.

Raadpleeg de LaTeX-handleiding of LaTeX Companion voor uitleg. Typ H voor directe hulp. ... l.6 \end{itemize} Probeer te typen om door te gaan. Als dat niet werkt, typ X om af te sluiten.

De juiste manier om deze lijst te schrijven is:

```latex
\begin{itemize}
\item Dit is het eerste item in onze lijst
\end{itemize}
```

Zie [hier](/latex/nl/latex-basis/04-lists.md) om meer te leren over hoe je verschillende soorten lijsten in LaTeX maakt.

**Lijsten verkeerd binnen tabellen schrijven:**

Deze fout verschijnt ook als je probeert cellen binnen een tabel te nummeren met behulp van lijsten, zoals hieronder getoond.

```latex
\begin{tabular}{l}
  \begin{enumerate}
  \item Dit is itemnummer één\\ \hline
  \item Dit is itemnummer twee
  \end{enumerate}
\end{tabular}
```

Dit is een fout, aangezien lijsten niet op deze manier kunnen worden gebruikt om tabelcellen te nummeren. Een manier om het bovenstaande probleem op te lossen zou zijn een teller te maken. Dit kan worden gedaan door

```latex
\newcounter{rownumbers}
\newcommand\rownumber{\stepcounter{rownumbers}\arabic{rownumbers}}
```

in de preambule van je document op te nemen (zie [hier](http://tex.stackexchange.com/questions/21243/automatic-table-row-numbers)). Je kunt dan het bovenstaande voorbeeld schrijven als

```latex
\begin{tabular}{l r}
  \rownumber & Dit is itemnummer één\\ \hline
  \rownumber & Dit is itemnummer twee
\end{tabular}
```

![Listexample.PNG](/files/0a9ed884895288a6a8f8686ea2e8010926c75ce4)

Om meer te leren over hoe je tellers maakt, bekijk onze [documentatie](/latex/nl/opmaak/10-counters.md).


---

# 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/latex-fouten/17-latex-error-something-s-wrong-perhaps-a-missing-item.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.
