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

# Errore LaTeX: opzione di flottante \`H' sconosciuta

Questo errore appare quando hai dimenticato di caricare il **`pacchetto float`** pacchetto. Gli specificatori di float si scrivono tra parentesi quadre ogni volta che utilizziamo un *pacchetto float* come una figura o una tabella, cioè il **`H`** in **`\begin{figure}[H]`**. Il **`H`** specificatore di float fa parte del **`pacchetto float`** pacchetto. Indica al compilatore di posizionare la figura esattamente in quel punto della pagina, invece di spostarla altrove. Ogni volta che vogliamo usare questa opzione, dobbiamo includere **`\usepackage{float}`** nel nostro preambolo. Per saperne di più su come usare le opzioni per specificare la posizione dei float, consulta il nostro [documentazione](/latex/it/figure-e-tabelle/02-positioning-images-and-tables.md).

## Cause comuni

**Dimenticare di caricare il `pacchetto float` pacchetto:**

Il [pacchetto float](https://www.ctan.org/pkg/float?lang=en) ci fornisce l' `H` opzione. Questa è una versione più rigorosa di `h`, e dice a LaTeX che vorremmo che la figura apparisse *esattamente* qui. Se utilizziamo l' `H` opzione, ma dimentichiamo di includere `\usepackage{float}` nel nostro preambolo, otterremo un errore come quello mostrato di seguito

main.tex, riga 12

Errore di LaTeX: opzione float sconosciuta \`H'.

Consultare il manuale di LaTeX o LaTeX Companion per una spiegazione. Digita H per assistenza immediata. ... l.10 \begin{figure}\[H] Opzione \`H' ignorata e usata \`p'.

Per risolvere questo errore, dobbiamo semplicemente includere **`\usepackage{float}`** nel preambolo del nostro documento, cioè prima di **`\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/it/errori-latex/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.
