blob: 7dac995d71b57bca88004ecdcd3cfa35d7066570 (
plain)
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
---
title: menclose
slug: Web/MathML/Element/menclose
tags:
- MathML
- 'MathML:Element'
- 'MathML:Référence'
translation_of: Web/MathML/Element/menclose
---
<p>L'élément MathML <code><menclose></code> permet d'afficher son contenu groupé au sein d'une même notation, définie par l'attribut <code>notation</code>.</p>
<h2 id="Attributs">Attributs</h2>
<dl>
<dt id="attr-class-id-style">
class, id, style</dt>
<dd>
Afin d'être utilisés avec les <a href="/fr/docs/CSS">feuilles de styles</a>.</dd>
<dt id="attr-href">
href</dt>
<dd>
Un hyperlien pointant vers un URI donné.</dd>
<dt id="attr-mathbackground">
mathbackground</dt>
<dd>
La couleur de fond. Il est possible d'utiliser les codes au format <code>#rgb</code>, <code>#rrggbb</code> et les <a href="/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s">noms de couleurs HTML</a>.</dd>
<dt id="attr-mathcolor">
mathcolor</dt>
<dd>
La couleur du texte. Il est possible d'utiliser les codes au format <code>#rgb</code>, <code>#rrggbb</code> et les <a href="/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s">noms de couleurs HTML</a>.</dd>
<dt id="attr-notation">
notation</dt>
<dd>
Une liste de notations à appliquer aux éléments fils, séparées par des blancs. Les symboles sont dessinés indépendamment et peuvent donc parfois se superposer. Les valeurs possibles sont :</dd>
<dd>
<br>
<table class="standard-table">
<tbody>
<tr>
<th>Valeur</th>
<th>Affichage</th>
<th>Affichage dans votre navigateur</th>
<th>Description</th>
</tr>
<tr>
<td><code>longdiv</code> (valeur par défaut)</td>
<td><img alt="longdiv" src="/files/3167/default.png"></td>
<td><math> <menclose notation="longdiv"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Symbole de division longue</td>
</tr>
<tr>
<td><code>actuarial</code></td>
<td><img alt="actuarial" src="/files/3168/actuarial.png"></td>
<td><math> <menclose notation="actuarial"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td><a class="external" href="http://en.wikipedia.org/wiki/Actuarial_notation" title="http://en.wikipedia.org/wiki/Actuarial_notation">Symbole actuaire</a></td>
</tr>
<tr>
<td><code>radical</code></td>
<td><img alt="radical" src="/files/3169/radical.png"></td>
<td><math> <menclose notation="radical"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Symbole de la racine carrée</td>
</tr>
<tr>
<td><code>box</code></td>
<td><img alt="box" src="/files/3170/box.png"></td>
<td><math> <menclose notation="box"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Boîte</td>
</tr>
<tr>
<td><code>roundedbox</code></td>
<td><img alt="roundedbox" src="/files/3171/roundedbox.png"></td>
<td><math> <menclose notation="roundedbox"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Boîte arrondie</td>
</tr>
<tr>
<td><code>circle</code></td>
<td><img alt="circle" src="/files/3172/circle.png"></td>
<td><math> <menclose notation="circle"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Cercle</td>
</tr>
<tr>
<td><code>left</code></td>
<td><img alt="left" src="/files/3173/left.png"></td>
<td><math> <menclose notation="left"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne à la gauche du contenu</td>
</tr>
<tr>
<td><code>right</code></td>
<td><img alt="right" src="/files/3174/right.png"></td>
<td><math> <menclose notation="right"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne à la droite du contenu</td>
</tr>
<tr>
<td><code>top</code></td>
<td><img alt="top" src="/files/3175/top.png"></td>
<td><math> <menclose notation="top"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne au-dessus du contenu</td>
</tr>
<tr>
<td><code>bottom</code></td>
<td><img alt="bottom" src="/files/3176/bottom.png"></td>
<td><math> <menclose notation="bottom"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne en-dessous du contenu</td>
</tr>
<tr>
<td><code>updiagonalstrike</code></td>
<td><img alt="updiagonalstrike" src="/files/3177/updiagonalstrike.png"></td>
<td><math> <menclose notation="updiagonalstrike"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne de rayure allant du coin bas-gauche au coin haut-droit</td>
</tr>
<tr>
<td><code>downdiagonalstrike</code></td>
<td><img alt="downdiagonalstrike" src="/files/3178/downdiagonalstrike.png"></td>
<td><math> <menclose notation="downdiagonalstrike"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne de rayure allant du coin haut-gauche au coin bas-droit</td>
</tr>
<tr>
<td><code>verticalstrike</code></td>
<td><img alt="verticalstrike" src="/files/3179/verticalstrike.png"></td>
<td><math> <menclose notation="verticalstrike"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne de rayure verticale à travers le contenu</td>
</tr>
<tr>
<td><code>horizontalstrike</code></td>
<td><img alt="horizontalstrike" src="/files/3180/horizontalstrike.png"></td>
<td><math> <menclose notation="horizontalstrike"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>Ligne de rayure horizontale à travers le contenu</td>
</tr>
<tr>
<td><code>madruwb</code></td>
<td><img alt="madruwb" src="/files/3181/madruwb.png"></td>
<td><math> <menclose notation="madruwb"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td><a class="external" href="http://en.wikipedia.org/wiki/Modern_Arabic_mathematical_notation#Arithmetic_and_algebra" title="http://en.wikipedia.org/wiki/Modern_Arabic_mathematical_notation#Arithmetic_and_algebra">Symbole arabe pour la factorielle</a></td>
</tr>
<tr>
<td><code>updiagonalarrow</code></td>
<td><img alt="" src="https://mdn.mozillademos.org/files/6255/updiagonalarrow.png" style="width: 83px; height: 38px;"></td>
<td><math> <menclose notation="updiagonalarrow"> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> </menclose> </math></td>
<td>flèche diagonale</td>
</tr>
</tbody>
</table>
</dd>
</dl>
<h2 id="Exemples">Exemples</h2>
<pre class="brush: html"><math>
<menclose notation="circle box">
<mi> x </mi>
<mo> + </mo>
<mi> y </mi>
</menclose>
</math></pre>
<h2 id="Specifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('MathML3', 'chapter3.html#presm.menclose', 'menclose') }}</td>
<td>{{ Spec2('MathML3') }}</td>
<td>Définition actuelle</td>
</tr>
<tr>
<td>{{ SpecName('MathML2', 'chapter3.html#presm.menclose', 'menclose') }}</td>
<td>{{ Spec2('MathML2') }}</td>
<td>Définition initiale</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("mathml.elements.menclose")}}</p>
|