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

# Σφάλμα LaTeX: Άγνωστη επιλογή float \`H'

Αυτό το σφάλμα εμφανίζεται όταν έχετε ξεχάσει να φορτώσετε το **`float`** πακέτο. Οι προσδιοριστές float γράφονται μέσα στις αγκύλες κάθε φορά που χρησιμοποιούμε ένα *float* όπως μια εικόνα ή έναν πίνακα, δηλαδή το **`H`** σε **`\begin{figure}[H]`**. Το **`H`** ο προσδιοριστής float αποτελεί μέρος του **`float`** πακέτου. Μας λέει στον μεταγλωττιστή να τοποθετήσει την εικόνα σε εκείνη την ακριβή θέση στη σελίδα, αντί να τη μετακινήσει αλλού. Κάθε φορά που θέλουμε να χρησιμοποιήσουμε αυτή την επιλογή, πρέπει να συμπεριλάβουμε **`\usepackage{float}`** στο προοίμιό μας. Για να διαβάσετε περισσότερα σχετικά με το πώς να χρησιμοποιείτε επιλογές για να καθορίζετε θέσεις float, δείτε το [τεκμηρίωση](/latex/el/sximata-kai-pinakes/02-positioning-images-and-tables.md).

## Συνηθισμένες αιτίες

**Το να ξεχάσετε να φορτώσετε το `float` πακέτο:**

Η [πακέτο float](https://www.ctan.org/pkg/float?lang=en) μας παρέχει την `H` επιλογή. Αυτή είναι μια ισχυρότερη εκδοχή του `h`, και λέει στο LaTeX ότι θα θέλαμε η εικόνα να εμφανιστεί *ακριβώς* εδώ. Αν χρησιμοποιήσουμε την `H` επιλογή, αλλά ξεχάσουμε να συμπεριλάβουμε `\usepackage{float}` στο προοίμιό μας, θα λάβουμε ένα σφάλμα όπως αυτό που φαίνεται παρακάτω

main.tex, line 12

Σφάλμα LaTeX: Άγνωστη επιλογή float \`H'.

Δείτε το εγχειρίδιο LaTeX ή το LaTeX Companion για επεξήγηση. Πληκτρολογήστε H για άμεση βοήθεια. ... l.10 \\\begin{figure}\[H] Η επιλογή \`H' αγνοήθηκε και χρησιμοποιήθηκε η \`p'.

Για να επιλύσουμε αυτό το σφάλμα, απλώς πρέπει να συμπεριλάβουμε **`\usepackage{float}`** στο προοίμιό μας στο έγγραφό μας, δηλαδή πριν από **`\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/el/sfalmata-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.
