> 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/32-unused-global-option-s.md).

# خيارات عامة غير مستخدمة

يظهر هذا الخطأ عندما يتم استخدام أحد الخيارات العامة للفئة بشكل غير صحيح. تأتي معظم ملفات الفئات في LaTeX مع خيارات مختلفة، مثل **`10pt`** حجم الخط، أو **`a5paper`**، تُدرج هذه داخل الأقواس المربعة في **`\documentclass[options]{class}`** في بداية المستند. إذا حددت هذه الخيارات بشكل غير صحيح، فستظهر لك رسالة خطأ تبدو مثل

main.tex

الخيار/الخيارات العامة غير المستخدمة

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

**استخدام خيار للخط غير متاح لتلك الفئة:**

معظم فئات LaTeX القياسية تقبل فقط **`10pt`**, **`11pt`** أو **`12pt`** خيارات الخط. إذا كتبت خيار خط مثل **`\documentclass[13pt]{article}`** ، فستحصل على *الخيار/الخيارات العامة غير المستخدمة* خطأ، لأن **`13pt`** حجم الخط ليس خيارًا صالحًا.

بعض الفئات، مثل **`scrbook`** يمكنها قبول أي حجم خط كخيار. وهذا يتيح للمستخدم كتابة خيارات مثل **`\documentclass[fontsize=16pt]{scrbook}`**. عند استخدام فئة جديدة، يجب عليك دائمًا التحقق من خيارات الخط المتاحة في توثيق الفئة.

للحصول على تنوع أوسع من خيارات حجم الخط، ينبغي النظر إلى الفئات الموجودة في [**`extsizes`**](http://ctan.org/pkg/extsizes) الحزمة. توفر لك هذه الحزمة فئات مثل **`extarticle`**, **`extreport`**, **`extbook`** و **`extletter`**. تسمح هذه الفئات بخيارات خط بحجوم **`8pt`**, **`9pt`**, **`10pt`**, **`11pt`**, **`12pt`**, **`14pt`**, **`17pt`** أو **`20pt`**.

إذا كنت ترغب في معرفة المزيد عن أحجام الخطوط المختلفة في LaTeX، فاطّلع على [الوثائق](/latex/ar/alkhtwt/01-font-sizes-families-and-styles.md).

**استخدام خيار غير محدد من قِبل الفئة:**

سبب شائع آخر لهذه الرسالة الخطأ هو استخدام خيار لم تحدده الفئة. ومن الأمثلة على ذلك كتابة **`\documentclass[doublesided]{Thesis}`** عند محاولة استخدام تنسيق صفحة مزدوجة الوجهين لفئة **`Thesis`** الفئة. وهذا خطأ، لأن **`Thesis`** الفئة سمّت هذا الخيار باسم **`twosided`**. لذلك، لاستخدام تنسيق صفحة مزدوجة الوجهين، يجب عليك كتابة **`\documentclass[twosided]{Thesis}`**.

يمكن أن تختلف خيارات مثل هذا من فئة إلى أخرى. ولهذا السبب من المهم التحقق من ملف الفئة وكذلك أي توثيق يأتي معها. بهذه الطريقة ستعرف ما الخيارات المتاحة في تلك الفئة.


---

# 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/32-unused-global-option-s.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.
