> 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/de/latex-fehler/19-latex-error-unknown-float-option-h.md).

# LaTeX-Fehler: Unbekannte Gleitobjektoption \`H'

Dieser Fehler erscheint, wenn Sie vergessen haben, das **`float`** Paket zu laden. Float-Spezifizierer werden in eckige Klammern geschrieben, wann immer wir einen *float* wie eine Abbildung oder eine Tabelle verwenden, d. h. der **`H`** in **`\begin{figure}[H]`**. Das **`H`** Float-Spezifizierer ist Teil des **`float`** Pakets. Es sagt dem Compiler, die Abbildung genau an dieser Stelle auf der Seite zu platzieren, anstatt sie irgendwo anders hin zu verschieben. Wann immer wir diese Option verwenden möchten, müssen wir **`\usepackage{float}`** in unsere Präambel einfügen. Um mehr darüber zu lesen, wie man Optionen zur Angabe von Float-Positionen verwendet, schauen Sie sich unser [Dokumentation](/latex/de/abbildungen-und-tabellen/02-positioning-images-and-tables.md).

## Häufige Ursachen

**Das Vergessen, das `float` Paket verwendet:**

Die [float-Paket](https://www.ctan.org/pkg/float?lang=en) liefert uns die `H` Option. Dies ist eine stärkere Version von `h`, und sagt LaTeX, dass wir möchten, dass die Abbildung *genau* hier erscheint. Wenn wir die `H` Option verwenden, aber vergessen, `\usepackage{float}` in unsere Präambel einzufügen, erhalten wir eine Fehlermeldung wie die unten gezeigte

main.tex, Zeile 12

LaTeX-Fehler: Unbekannte Float-Option \`H'.

Siehe das LaTeX-Handbuch oder LaTeX Companion für eine Erklärung. Geben Sie H für sofortige Hilfe ein. ... l.10 \begin{figure}\[H] Option \`H' ignoriert und \`p' verwendet.

Um diesen Fehler zu beheben, müssen wir einfach **`\usepackage{float}`** in die Präambel unseres Dokuments einfügen, d. h. vor **`\begin{document}`**


---

# 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/de/latex-fehler/19-latex-error-unknown-float-option-h.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.
