> 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/meer-onderwerpen/17-graham-biblatex-demo.md).

# Graham biblatex-demo

Ja, u kunt uw bibliografie uit RefWorks exporteren voor gebruik in Overleaf. U moet [inloggen op RefWorks](https://refworks.proquest.com/), de referenties selecteren die u wilt gebruiken, en deze exporteren als BibTeX-gegevens, opgeslagen naar een bestand met een `.bib` extensie.

Om de `.bib` bestand aan uw Overleaf-project toe te voegen:

* [Upload het `.bib` bestand handmatig](/latex/nl/kennisbank/088-including-images-on-overleaf.md) naar uw Overleaf-project.
* Sla het op in cloudopslag (bijv. Google Drive) en gebruik de URL voor het delen van het bestand om het naar Overleaf te uploaden.

De volgende artikelen leggen uit hoe u bestanden naar Overleaf kunt uploaden met behulp van URL's voor het delen van bestanden:

* [Hoe kan ik bestanden uploaden vanaf Google Drive?](/latex/nl/kennisbank/051-how-can-i-upload-files-from-google-drive.md)
* [Hoe een bestand uploaden met een externe URL](/latex/nl/kennisbank/081-how-to-upload-a-file-using-an-external-url.md)

### Hoe u een bibliografie aan uw document toevoegt

Nadat u uw `.bib` bestand hebt geüpload, kunt u verschillende bibliografiepakketten gebruiken om naar uw referenties te verwijzen en een bibliografie op te maken. Het volgende voorbeeld demonstreert de [`natbib` pakket](https://ctan.org/pkg/natbib?lang=en), wat een veelgebruikte keuze is:

```latex
\documentclass{article}  % Gebruik de standaard article-klasse
\usepackage[numbers]{natbib}  % Laad natbib met numerieke citaties

\begin{document}

Hier is een citatievoorbeeld \citep{sample_ref}. % Verwijs tussen haakjes naar een referentie

\bibliographystyle{plainnat}  % Kies een bibliografiestijl
\bibliography{references}  % Gebruik het .bib-bestand met de naam "references.bib"

\end{document}
```

## Verder lezen

Als u onderwerpen die verband houden met het gebruik van bibliografieën in LaTeX verder wilt verkennen, kunnen de volgende Overleaf-artikelen interessant zijn:

* [Bibliografieën gebruiken op Overleaf](/latex/nl/kennisbank/145-using-bibliographies-on-overleaf.md)
* [Bibliografiebeheer in LaTeX](/latex/nl/meer-onderwerpen/05-bibliography-management-in-latex.md)
* [Bibliografiebeheer met natbib](/latex/nl/referenties-en-citaten/02-bibliography-management-with-natbib.md)
* [Bibliografiebeheer met biblatex](/latex/nl/referenties-en-citaten/03-bibliography-management-with-biblatex.md)
* [Bibliografiebeheer met bibtex](/latex/nl/referenties-en-citaten/01-bibliography-management-with-bibtex.md)
* [Hoe je zoekt naar verwijzingen in een Overleaf-project](/latex/nl/kennisbank/076-how-to-search-for-references-in-an-overleaf-project.md)
* [Hoe je Mendeley koppelt aan je Overleaf-account](/latex/nl/kennisbank/070-how-to-link-mendeley-to-your-overleaf-account.md)
* [Hoe je Zotero koppelt aan je Overleaf-account](/latex/nl/kennisbank/073-how-to-link-zotero-to-your-overleaf-account.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/meer-onderwerpen/17-graham-biblatex-demo.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.
