> 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/sv/latex-fel/13-latex-error-can-be-used-only-in-preamble.md).

# LaTeX-fel: Kan endast användas i preambeln

Detta fel visas när du har inkluderat ett paket eller en klass i dokumentets huvuddelen, i stället för i förordet. Förordet till dokumentet består av allt som skrivs före **`\begin{document}`**. I förordet definierar du vilken typ av dokument du skriver, språket och flera andra element. Till exempel skulle ett normalt dokumentförord se ut så här:

```latex
\documentclass[12pt, letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}

\title{Första dokumentet}
\author{Hubert Farnsworth \thanks{finansierat av ShareLaTeX-teamet}}
\date{februari 2014}
```

Om du skriver **`\usepackage{...}`** i dokumentets huvuddelen (efter **`\begin{document}`**) i stället för i förordet, kommer du att generera felmeddelandet som visas nedan.

main.tex, rad 7

LaTeX-fel: Kan endast användas i förordet.

Se LaTeX-manualen eller LaTeX Companion för en förklaring. Skriv H för omedelbar hjälp. ... l.4 \usepackage {amsmath} Ditt kommando ignorerades. Skriv I för att ersätta det med ett annat kommando, eller för att fortsätta utan det. \[1

För att åtgärda detta fel, se till att alla **`\usepackage{...}`** kommandon, såväl som **`\documentclass[...]{...}`**, skrivs före **`\begin{document}`**. För att lära dig mer om hur man strukturerar ett dokument i LaTeX, kolla in vår [dokumentationen](/latex/sv/latex-grunder/01-learn-latex-in-30-minutes.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/sv/latex-fel/13-latex-error-can-be-used-only-in-preamble.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.
