> 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/alryadhyat/10-display-style-in-math-mode.md).

# نمط العرض في وضع الرياضيات

## مقدمة

تشرح هذه المقالة كيفية تعديل نمط الرياضيات المنسقة يدويًا—لكننا سنبدأ بتذكير سريع بالفروق الظاهرة بين الرياضيات ضمن السطر وبأسلوب العرض.

الرياضيات المنسقة المضمنة (داخل) نص فقرة تحتاج إلى مساحة أقل من الرياضيات نفسها إذا نُسِّقت خارج نص الفقرة على هيئة مادة مستقلة بأسلوب العرض. ولرؤية ذلك عمليًا، لنوضح أن المعادلة $$f(x) = \sum\_{i=0}^{n} \frac{a\_i}{1+x}$$ قد تتباعد أو تتقارب بحسب قيمة $$x$$. ويمكننا أيضًا تنسيق $$f(x)$$ خارج الفقرة بأسلوب العرض:

$$f(x) = \sum\_{i=0}^{n} \frac{a\_i}{1+x}$$

حتى نظرة عابرة على المثال السابق تكشف عن تغييرات في حجم ورموز التنسيق الرياضية، مثل $$\sum$$ وموضع حدودها، إلى جانب اختلافات في حجم/موضع الأسس والرموز السفلية والكسور.

هذه مسائل الطباعة الرياضية هي تفاعل بين خوارزميات التنضيد المدمجة في محركات TeX مع بعض معاملات التباعد الموجودة في خطوط الرياضيات. وتساعد معاملات الخط هذه على ضبط تنضيد الرياضيات بدقة وفق خصائص التصميم لخط/خطوط الرياضيات المستخدمة.

## تجاوز الأنماط الرياضية الافتراضية

قد ترغب أحيانًا في تغيير النمط الافتراضي المستخدم لتنضيد جزء من الرياضيات. على سبيل المثال، قد ترغب في تغيير الرياضيات المضمنة، مثل $$f(x) = \frac{1}{1+x}$$، وإدراجها في الفقرة ولكن تنضيدها بأسلوب العرض: $$\displaystyle f(x) = \frac{1}{1+x}$$، رغم أن ذلك يؤثر بشدة في تباعد الأسطر.

توفر محركات TeX عدة أوامر يمكن استخدامها لتجاوز النمط الافتراضي الذي يُنضَّد به جزء من الرياضيات:

* `\textstyle`: يطبّق النمط المستخدم للرياضيات المنسقة داخل الفقرات
* `\displaystyle`: يطبّق النمط المستخدم للرياضيات المنسقة في أسطر مستقلة
* `\scriptstyle`: يطبّق النمط المستخدم للرموز السفلية أو العلوية
* `\scriptscriptstyle`: يطبّق النمط المستخدم للرموز السفلية أو العلوية من الدرجة الثانية

المثال القياسي مأخوذ من الصفحة 142 من TeXBook، رغم أننا استبدلنا `$$` بأسلوب LaTeX المفضّل `\[` و `\]`:

```latex
\[
a_0+{1\over a_1+
      {1\over a_2+
        {1 \over a_3 +
           {1 \over a_4}}}}
\]
```

افتراضيًا، يُنضَّد هذا على النحو التالي:

$$a\_0+{1\over a\_1+{1\over a\_2 +{1 \over a\_3 + {1 \over a\_4}}}}$$

يمكن تعديل نمط التنضيد الافتراضي باستخدام `\displaystyle` الأمر:

```latex
\[
a_0+{1\over\displaystyle a_1+
      {1\over\displaystyle a_2+
        {1 \over\displaystyle a_3 +
           {1 \over\displaystyle a_4}}}}
\]
```

فينتج

$$a\_0+{1\over\displaystyle a\_1+{1\over\displaystyle a\_2+{1 \over\displaystyle a\_3 +{1 \over\displaystyle a\_4}}}}$$

إليك مثالًا آخر يوضح تأثير `\textstyle`, `\scriptstyle` و `\scriptscriptstyle`:

```latex
\[
\begin{align*}
f(x) = \sum_{i=0}^{n} \frac{a_i}{1+x} \\
\textstyle f(x) = \textstyle \sum_{i=0}^{n} \frac{a_i}{1+x} \\
\scriptstyle f(x) = \scriptstyle \sum_{i=0}^{n} \frac{a_i}{1+x} \\
\scriptscriptstyle f(x) = \scriptscriptstyle \sum_{i=0}^{n} \frac{a_i}{1+x}
\end{align*}
\]
```

والذي يُعرض على النحو التالي $$\begin{align\*} f(x) = \sum\_{i=0}^{n} \frac{a\_i}{1+x} \ \textstyle f(x) = \textstyle \sum\_{i=0}^{n} \frac{a\_i}{1+x} \ \scriptstyle f(x) = \scriptstyle \sum\_{i=0}^{n} \frac{a\_i}{1+x} \ \scriptscriptstyle f(x) = \scriptscriptstyle \sum\_{i=0}^{n} \frac{a\_i}{1+x} \end{align\*}$$

إليك مثالًا يمكنك فتحه في Overleaf:

```latex
\documentclass{article}
\usepackage{amsmath}
\title{استكشاف أنماط عرض الرياضيات}
\author{فريق Overleaf}
\begin{document}
\maketitle
اعتمادًا على قيمة \(x\)، قد تتباعد المعادلة \( f(x) = \sum_{i=0}^{n} \frac{a_i}{1+x} \) أو تتقارب.

\[ f(x) = \sum_{i=0}^{n} \frac{a_i}{1+x} \]

\vspace{1cm}

يمكن ضبط العناصر الرياضية المضمنة بأسلوب مختلف: \(f(x) = \displaystyle \frac{1}{1+x}\). وينطبق الأمر نفسه على المادة الرياضية المعروضة:

\begin{align*}
f(x) = \sum_{i=0}^{n} \frac{a_i}{1+x} \\
\textstyle f(x) = \sum_{i=0}^{n} \frac{a_i}{1+x} \\
\scriptstyle f(x) = \sum_{i=0}^{n} \frac{a_i}{1+x} \\
\scriptscriptstyle f(x) = \sum_{i=0}^{n} \frac{a_i}{1+x}
\end{align*}
\end{document}
```

[افتح هذا المثال في Overleaf](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=Exploring+math+display+styles\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cusepackage%7Bamsmath%7D%0A%5Ctitle%7BExploring+math+display+styles%7D%0A%5Cauthor%7BOverleaf+team%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cmaketitle%0ADepending+on+the+value+of+%5C%28x%5C%29+the+equation+%5C%28+f%28x%29+%3D+%5Csum_%7Bi%3D0%7D%5E%7Bn%7D+%5Cfrac%7Ba_i%7D%7B1%2Bx%7D+%5C%29+may+diverge+or+converge.%0A%0A%5C%5B+f%28x%29+%3D+%5Csum_%7Bi%3D0%7D%5E%7Bn%7D+%5Cfrac%7Ba_i%7D%7B1%2Bx%7D+%5C%5D%0A%0A%5Cvspace%7B1cm%7D%0A%0AInline+maths+elements+can+be+set+with+a+different+style%3A+%5C%28f%28x%29+%3D+%5Cdisplaystyle+%5Cfrac%7B1%7D%7B1%2Bx%7D%5C%29.+The+same+is+true+for+display+math+material%3A%0A%0A%5Cbegin%7Balign%2A%7D%0Af%28x%29+%3D+%5Csum_%7Bi%3D0%7D%5E%7Bn%7D+%5Cfrac%7Ba_i%7D%7B1%2Bx%7D+%5C%5C%0A%5Ctextstyle+f%28x%29+%3D+%5Csum_%7Bi%3D0%7D%5E%7Bn%7D+%5Cfrac%7Ba_i%7D%7B1%2Bx%7D+%5C%5C%0A%5Cscriptstyle+f%28x%29+%3D+%5Csum_%7Bi%3D0%7D%5E%7Bn%7D+%5Cfrac%7Ba_i%7D%7B1%2Bx%7D+%5C%5C%0A%5Cscriptscriptstyle+f%28x%29+%3D+%5Csum_%7Bi%3D0%7D%5E%7Bn%7D+%5Cfrac%7Ba_i%7D%7B1%2Bx%7D%0A%5Cend%7Balign%2A%7D%0A%5Cend%7Bdocument%7D)

## قراءة إضافية

لمزيد من المعلومات، انظر

* [التعابير الرياضية](/latex/ar/alryadhyat/01-mathematical-expressions.md)
* [الأسس السفلية والعليا](/latex/ar/alryadhyat/02-subscripts-and-superscripts.md)
* [محاذاة المعادلات باستخدام amsmath](/latex/ar/alryadhyat/06-aligning-equations-with-amsmath.md)
* [التباعد في وضع الرياضيات](/latex/ar/alryadhyat/08-spacing-in-math-mode.md)
* [التكاملات، والمجاميع، والحدود](/latex/ar/alryadhyat/09-integrals-sums-and-limits.md)
* [الخطوط الرياضية](/latex/ar/alryadhyat/12-mathematical-fonts.md)
* [المقدمة التي ليست قصيرة جدًا إلى LaTeX2ε](http://www.ctan.org/tex-archive/info/lshort/)


---

# 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/alryadhyat/10-display-style-in-math-mode.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.
