> 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/27-no-author-given.md).

# Geen \author opgegeven

Deze fout verschijnt als u de **`\maketitle`** opdracht hebt gebruikt, maar geen **`\author`**. Een voorbeeld hiervan wordt hieronder getoond:

```latex
%In uw preambule
\title{Over de algemene moleculaire theorie van warmte}

% In de hoofdtekst van uw document
\maketitle
```

main.tex, regel 5

Geen \author opgegeven.

U kunt deze fout oplossen door een auteur op te nemen:

```latex
%In uw preambule
\title{Over de algemene moleculaire theorie van warmte}
\author{A. Einstein}

% In de hoofdtekst van uw document
\maketitle
```

Als u geen auteur op de titelpagina wilt laten vermelden, kunt u **`\author{...}`** als leeg, zoals hieronder getoond

```latex
%In uw preambule
\title{Over de algemene moleculaire theorie van warmte}
\author{}

% In de hoofdtekst van uw document
\maketitle
```

Dit laat nog steeds wat witruimte op de titelpagina achter waar normaal gesproken de auteur zou staan. Als u deze witruimte wilt verwijderen, bekijk dan de [**`titling`**](http://ctan.org/pkg/titling) pakket.


---

# 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/27-no-author-given.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.
