1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
---
title: <mstyle>
slug: Web/MathML/Element/mstyle
tags:
- MathML
- 'MathML:Element'
- Referenz
translation_of: Web/MathML/Element/mstyle
---
<div>{{MathMLRef}}</div>
<p class="summary">Das Element <code><mstyle></code> wird in MathML eingesetzt, um die <em>Darstellung</em> seiner Kind-Elemente zu verändern. Es akzeptiert alle Attribute der MathML-Darstellungselemente (mit wenigen Ausnahmen) und die zusätzlichen Attribute, die unten aufgelistet sind:</p>
<h2 id="Attribute">Attribute</h2>
<dl>
<dt id="attr-dir"><code>dir</code></dt>
<dd>Allgemeine Schreibrichtung für die Formeln. Mögliche Werte sind <code>ltr</code> (left to right, von links nach rechts) und <code>rtl</code> (right to left, von rechts nach links).</dd>
<dt id="attr-decimalpoint"><code>decimalpoint</code></dt>
<dd>Benennt das Zeichen für die Ausrichtung innerhalb von {{ MathMLElement("mstack") }}- und {{ MathMLElement("mtable") }}-Spalten, für den Fall, dass diese am <code>decimalpoint</code> ausgerichtet werden.</dd>
<dt id="attr-displaystyle"><code>displaystyle</code></dt>
<dd>Ein Boolescher Wert für den Darstellungsstil einer Gleichung. Bei <code>true</code> wird zusätzlicher vertikaler Zwischenraum eingefügt; bei <code>false</code> wird die Formel dagegen kompakter dargestellt. Der hauptsächliche Effekt besteht darin, dass größere Versionen der Operatoren angezeigt werden, falls <code>displaystyle</code> auf <code>true</code> gesetzt ist. Siehe auch <code>largeop</code> and <code>movablelimits</code> bei {{ MathMLElement("mo") }}.</dd>
<dt id="attr-infixlinebreakstyle"><code>infixlinebreakstyle</code></dt>
<dd>Gibt an, welcher <code>linebreakstyle</code> auf infix-Operatoren angewandt wird. Erlaubt sind die Werte <code>before</code>, <code>after</code> und <code>duplicate</code>.</dd>
<dt id="attr-scriptlevel"><code>scriptlevel</code></dt>
<dd>Steuert im wesentlichen die Schriftgröße. Je größer der <code>scriptlevel</code>, umso kleiner die Schriftgröße. Dieses Attribute akzeptiert nichtnegative, ganze Zahlen und die Zeichen "+" und "-", was den aktuellen Wert jeweils um eine Stufe erhöht oder verringert. <code>scriptlevel</code> kann die Schriftgröße nicht unter die mit <code>{{anch("scriptminsize")}}</code> angegebene minimale Schriftgröße setzen. Das verhindert unleserlich kleine Schriftgrößen. Siehe auch <code>{{anch("scriptsizemultiplier")}}</code>.</dd>
<dt id="attr-scriptminsize"><code>scriptminsize</code></dt>
<dd>Gibt die minimale Schriftgröße an, die nach Änderungen mit <code>{{anch("scriptlevel")}}</code> dargestellt wird. Der Vorgabewert ist 8pt.</dd>
<dt id="attr-scriptsizemultiplier"><code>scriptsizemultiplier</code></dt>
<dd>Gibt den Faktor an, um den die Schriftgröße mit <code>{{anch("scriptlevel")}}</code> vergrößert oder verkleinert wird. Der Standardwert ist 0.71, d.h. mit zwei Stufen wird die Schriftgröße verdoppelt bzw. halbiert.</dd>
</dl>
<p>Das <code><mstyle></code>-Element akzeptiert <a href="/en-US/docs/MathML/Attributes">alle Attribute</a> aller Darstellungselemente <strong>mit diesen Ausnahmen</strong>:</p>
<ul>
<li><code>height</code>, <code>depth</code> und <code>width</code> lassen sich nicht auf {{ MathMLELement("mglyph") }}, {{ MathMLELement("mpadded") }} und {{ MathMLELement("mtable") }} anwenden.</li>
<li><code>rowalign</code>, <code>columnalign</code>, und <code>groupalign</code> lassen sich nicht auf {{ MathMLELement("mtr") }}, {{ MathMLELement("mlabeledtr") }}, {{ MathMLELement("mtd") }} und {{ MathMLELement("maligngroup") }} anwenden.</li>
<li><code>lspace</code> und <code>voffset</code> lassen sich nicht auf {{ MathMLELement("mpadded") }} anwenden.</li>
<li><code>fontfamily</code> wirkt nicht auf {{ MathMLELement("mglyph") }}.</li>
<li><code>align</code> lässt sich nicht auf {{ MathMLELement("mtable") }} und {{ MathMLELement("mstack") }} anwenden.</li>
<li><code>index</code> kann nicht in <code><mstyle></code> gesetzt werden.</li>
<li><code>src</code> und <code>alt</code> auf das {{ MathMLElement("mglyph" ) }}-Element können nicht in <code><mstyle></code> gesetzt werden.</li>
<li><code>actiontype</code> auf das {{ MathMLElement("maction") }} kann nicht in <code><mstyle></code> gesetzt werden.</li>
</ul>
<h2 id="Beispiele">Beispiele</h2>
<p><code>displaystyle</code> und <code>mathcolor</code> werden eingesetzt, um die Darstellung der gesamten Summe zu beeinflussen.</p>
<pre class="brush: html"><math>
<mstyle displaystyle="true" mathcolor="teal">
<mrow>
<munderover>
<mo stretchy="true" form="prefix">&sum;</mo>
<mrow>
<mi>i</mi>
<mo form="infix">=</mo>
<mn>1</mn>
</mrow>
<mi>n</mi>
</munderover>
<mstyle displaystyle="true">
<mfrac>
<mn>1</mn>
<mi>n</mi>
</mfrac>
</mstyle>
</mrow>
</mstyle>
</math>
</pre>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Standard</th>
<th scope="col">Status</th>
<th scope="col">Bemerkung</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('MathML3', 'chapter3.html#presm.mstyle', 'mstyle') }}</td>
<td>{{ Spec2('MathML3') }}</td>
<td>Current specification</td>
</tr>
<tr>
<td>{{ SpecName('MathML2', 'chapter3.html#presm.mstyle', 'mstyle') }}</td>
<td>{{ Spec2('MathML2') }}</td>
<td>Initial specification</td>
</tr>
</tbody>
</table>
<h2 id="Browserkompatibilität">Browserkompatibilität</h2>
<p>{{Compat("mathml.elements.mstyle")}}</p>
<h2 id="Hinweise_zu_Gecko">Hinweise zu Gecko</h2>
<ul>
<li>Vor Gecko 6.0 {{ geckoRelease("6.0") }} war <code><mstyle></code> nur unvollständig umgesetzt (siehe <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=569125">Bugzilla</a>). Im einzelnen waren die folgenden Attribute wirkungslos, wenn sie auf <code><mstyle></code> angewandt wurden:
<ul>
<li><code>bevelled</code>, angewandt auf {{ MathMLElement("mfrac") }}</li>
<li><code>notation</code>, angewandt auf {{ MathMLElement("menclose") }}</li>
<li><code>open</code>, <code>close</code> und <code>separators</code>, angewandt auf {{ MathMLElement("mfenced") }}</li>
<li><code>accent</code> und <code>accentunder</code>, angewandt auf {{ MathMLElement("mover") }}, {{ MathMLElement("munder") }} und {{ MathMLElement("munderover") }}</li>
<li><code>selection</code>, angewandt auf {{ MathMLElement("maction") }}</li>
<li><code>mathvariant</code>, angewant auf {{ MathMLElement("mi") }}</li>
</ul>
</li>
<li>Beginnend mit Gecko 20.0 {{geckoRelease("20.0")}} sind für <code>scriptminsize</code> Werte ohne Einheit und Prozentangaben erlaubt und werden als Vielfache von "8pt" berechnet.</li>
<li>Seit Gecko 29.0 {{geckoRelease("29.0")}} sind für <code><mstyle></code> nur noch Attribute erlaubt, die in der Praxis auch angewendet werden: <code>id, class, style, href, mathcolor, mathbackground, scriptlevel, displaystyle, scriptsizemultiplier, scriptminsize, dir, mathsize, mathvariant, fontfamily, fontweight, fontstyle, fontsize, color, background</code>.</li>
</ul>
|