blob: 2d6619d9a19c0f096daa674d99cf50cb6f7110c7 (
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
|
---
title: <mover>
slug: Web/MathML/Element/mover
translation_of: Web/MathML/Element/mover
---
<div>{{MathMLRef}}</div>
<p class="summary">MathML の <code><mover></code> 要素はアクセントかリミットを上に載せるために使われます。構文は次の通りです: <code><mover> <em>base overscript</em> </mover></code><br>
訳注:アクセントは例えばドットやハットなどの記号です。リミットとは,定積分の区間の端点などのことです。<br>
overscript には定着した訳語がないようです。superscript(上付き)が肩に付く添字であるのに対し,overscript は真上に付く添字です。そのまま「オーバースクリプト」と書くことにします。</p>
<h2 id="属性">属性</h2>
<dl>
<dt id="attr-accent">accent</dt>
<dd>これが <code>true</code> の場合,オーバースクリプトはアクセントであり,本体に近く表示されます。<br>
<code>false</code>(既定値)の場合,オーバースクリプトは本体の上に載せるリミットです。<br>
訳注:既定値は実際にはもう少し複雑で,オーバースクリプトが <code><mo></code> 要素の場合,その <code>accent</code> 属性が既定値となるというルールがあります。詳細は仕様書を参照。また,<code>accent</code> 属性の値によって大きさが違って表示される場合もあります。</dd>
<dt id="attr-align">align</dt>
<dd>オーバースクリプトの揃え位置。取り得る値は:<code>left</code>, <code>center</code> および <code>right</code>.</dd>
<dt id="attr-class-id-style">class, id, style</dt>
<dd>Provided for use with <a href="/en-US/docs/CSS">stylesheets</a>.</dd>
<dt id="attr-href">href</dt>
<dd>Used to set a hyperlink to a specified URI.</dd>
<dt id="attr-mathbackground">mathbackground</dt>
<dd>The background color. You can use <code>#rgb</code>, <code>#rrggbb</code> and <a href="/en-US/docs/CSS/color_value#Color_Keywords">HTML color names</a>.</dd>
<dt id="attr-mathcolor">mathcolor</dt>
<dd>The text color. You can use <code>#rgb</code>, <code>#rrggbb</code> and <a href="/en-US/docs/CSS/color_value#Color_Keywords">HTML color names</a>.</dd>
</dl>
<h2 id="例">例</h2>
<p>Sample rendering: <img alt="x+y+z" src="/files/3196/mover.png" style="margin-left: 10px; vertical-align: middle;"></p>
<p>Rendering in your browser: <math> <mover accent="true"> <mrow> <mi> x </mi> <mo> + </mo> <mi> y </mi> <mo> + </mo> <mi> z </mi> </mrow> <mo> ⏞ </mo> </mover> </math></p>
<pre class="brush: html"><math>
<mover accent="true">
<mrow>
<mi> x </mi>
<mo> + </mo>
<mi> y </mi>
<mo> + </mo>
<mi> z </mi>
</mrow>
<mo> &#x23DE; <!--TOP CURLY BRACKET--> </mo>
</mover>
</math>
</pre>
<h2 id="仕様書">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('MathML3', 'chapter3.html#presm.mover', 'mover') }}</td>
<td>{{ Spec2('MathML3') }}</td>
<td>Current specification</td>
</tr>
<tr>
<td>{{ SpecName('MathML2', 'chapter3.html#presm.mover', 'mover') }}</td>
<td>{{ Spec2('MathML2') }}</td>
<td>Initial specification</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザ実装状況">ブラウザ実装状況</h2>
<p>{{Compat("mathml.elements.mover")}}</p>
<h2 id="関連情報">関連情報</h2>
<ul>
<li>{{ MathMLElement("munder") }} (Underscript)</li>
<li>{{ MathMLElement("munderover") }} (Underscript-overscript pair)</li>
</ul>
|