> 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/referenties-en-citaten/06-natbib-citation-styles.md).

# Natbib-citatiestijlen

Natbib gebruikt de citeerstijl die hoort bij de bijbehorende [bibliografische stijl](/latex/nl/referenties-en-citaten/04-bibtex-bibliography-styles.md#natbib-styles) als er geen specifieke citeercommando's zijn opgegeven. Er zijn enkele aanvullende commando's om bepaalde interpunctieparameters te regelen. Zie het onderstaande voorbeeld:

```latex
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

%Importeer het natbib-pakket en stel een bibliografie- en citeerstijlen in
\usepackage{natbib}
\bibliographystyle{abbrvnat}
\setcitestyle{authoryear,open={((},close={))}} %Commando's met betrekking tot citaties

\title{Natbib-voorbeeld}

\author{Overleaf-team}

\begin{document}

\maketitle

\section{Eerste sectie}
Dit document is een voorbeeld met twee geciteerde items: \textit{The \LaTeX\ Companion} boek \cite[zie][hfdst. 2]{latexcompanion} en Einsteins tijdschriftartikel \citep{einstein}.

%Importeert het bibliografiebestand "sample.bib"
\bibliography{sample}

\end{document}
```

![CitationStylesEx1Overleaf.png](/files/bed42eea1e28cb4bec849a9829645dd433c02cec)

Het specifieke commando om de citeerstijl op te maken is:

```latex
\setcitestyle{authoryear, open={((},close={))}
```

De parameters, gescheiden door komma's, vertellen LaTeX om de *authoryear* citeermodus te gebruiken en dubbele haakjes als openings- en sluitingsmarkeringen te gebruiken. De verschillende parameters die aan dit commando kunnen worden doorgegeven zijn de volgende:

* Citeermodus: `authoryear`, `getallen` of `superscript`.
* Haakjes: `ronde` of `vierkante`. U kunt handmatig andere openings- en sluitingstekens instellen met `open={char}` en `close={char}`.
* Scheidingsteken voor citaties: `puntkomma`, `komma`.
* Scheidingsteken tussen auteur en jaar: `aysep{char}`.
* Scheidingsteken tussen jaren met dezelfde auteur: `yysep={char}`.
* Tekst vóór de post-noot: `notesep={text}`.

Er zijn andere aanvullende citeercommando's, afhankelijk van de citeermodus. In het bovenstaande voorbeeld neemt het commando `\cite[see][chap 2]{latexcompanion}` neemt twee extra parameters; het eerste optionele parameter *zie* wordt vóór het citatieteken afgedrukt en het tweede optionele parameter *hfdst. 2* wordt na het citatieteken afgedrukt. Hieronder staat een tabel met een beschrijving van enkele aanvullende citeercommando's:

| commando        | beschrijving                                                                          |
| --------------- | ------------------------------------------------------------------------------------- |
| `\citet{}`      | Tekstuele citaatverwijzing                                                            |
| `\citep{}`      | Citaatverwijzing tussen haakjes                                                       |
| `\citet*{}`     | Zelfde als `\citet` maar als er meerdere auteurs zijn, worden alle namen afgedrukt    |
| `\citep*{}`     | Hetzelfde als `\citep` maar als er meerdere auteurs zijn, worden alle namen afgedrukt |
| `\citeauthor{}` | Drukt alleen de naam van de auteur(s) af                                              |
| `\citeyear{}`   | Drukt alleen het jaar van publicatie af.                                              |

Voor meer informatie over de rest van de commando's in dit voorbeeld zie [Bibliografiebeheer met natbib](/latex/nl/referenties-en-citaten/02-bibliography-management-with-natbib.md)

[Open een voorbeeld van het `natbib` pakket in Overleaf](https://www.overleaf.com/project/new/template/19422?id=65532643\&templateName=Natbib+citation+styles+example\&latexEngine=\&texImage=texlive-full%3A2020.1\&mainFile=)

## Verder lezen

* [Bibliografiebeheer met natbib](/latex/nl/referenties-en-citaten/02-bibliography-management-with-natbib.md)
* [Natbib-bibliografiestijlen](/latex/nl/referenties-en-citaten/05-natbib-bibliography-styles.md)
* [Natbib-pakketdocumentatie](http://mirrors.ibiblio.org/CTAN/macros/latex/contrib/natbib/natbib.pdf)
* [Ondersteuning voor internationale talen](/latex/nl/talen/03-international-language-support.md)
* [Beheer in een groot project](/latex/nl/documentstructuur/07-management-in-a-large-project.md)
* [Inhoudsopgave](/latex/nl/documentstructuur/02-table-of-contents.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/referenties-en-citaten/06-natbib-citation-styles.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.
