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

# خطأ LaTeX: خيار عائم غير معروف \`H'

يظهر هذا الخطأ عندما تنسى تحميل **`float`** الحزمة. تُكتب محددات الطفو داخل الأقواس المربعة كلما استخدمنا *float* مثل شكل أو جدول، أي **`H`** في **`\begin{figure}[H]`**. الحزمة **`H`** يأتي محدد الطفو كجزء من **`float`** الحزمة. فهو يخبر المُصرِّف بوضع الشكل في ذلك الموضع بالضبط في الصفحة، بدلًا من نقله إلى مكان آخر. كلما أردنا استخدام هذا الخيار، يجب أن نُدرج **`\usepackage{float}`** في المقدمة الخاصة بنا. لقراءة المزيد عن كيفية استخدام الخيارات لتحديد مواضع الطفو، اطلع على [الوثائق](/latex/ar/alashkal-waljdawl/02-positioning-images-and-tables.md).

## الأسباب الشائعة

**نسيان تحميل `float` الحزمة:**

ال [حزمة float](https://www.ctan.org/pkg/float?lang=en) يمنحنا `H` الخيار. وهذه نسخة أقوى من `h`، ويخبر LaTeX بأننا نرغب في أن يظهر الشكل *بالضبط* هنا. إذا استخدمنا `H` الخيار، لكننا ننسى تضمين `\usepackage{float}` في المقدمة الخاصة بنا، فسنحصل على خطأ مثل الخطأ الموضح أدناه

main.tex، السطر 12

خطأ LaTeX: خيار الطفو \`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/ar/akhtaa-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.
