blob: 3ab64afe74e66b913162204b660f8e016ede43e7 (
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
|
---
title: <msubsup>
slug: Web/MathML/Element/msubsup
tags:
- MathML
translation_of: Web/MathML/Element/msubsup
---
<div>{{MathMLRef}}</div>
<p class="summary">MathML <code><msubsup></code>要素は、下付き文字と上付き文字の両方を一緒に式に付けるために使用されます。<br>
次の構文を使用します: <code><msubsup> <em>ベース 下付き文字 上付き文字</em> </msubsup></code></p>
<h2 id="属性">属性</h2>
<dl>
<dt id="attr-class-id-style">class, id, style</dt>
<dd><a href="/ja/docs/CSS">スタイルシート</a>で使用するために用意されます。</dd>
<dt id="attr-href">href</dt>
<dd>指定されたURIへのハイパーリンクを設定するために使用されます。</dd>
<dt id="attr-mathbackground">mathbackground</dt>
<dd>背景色。<code>#rgb</code>、<code>#rrggbb</code>、および<a href="/ja/docs/CSS/color_value#Color_Keywords">HTMLの色名</a>を使用できます。</dd>
<dt id="attr-mathcolor">mathcolor</dt>
<dd>テキスト色。<code>#rgb</code>、<code>#rrggbb</code>、および<a href="/ja/docs/CSS/color_value#Color_Keywords">HTMLの色名</a>を使用できます。</dd>
<dt id="attr-subscriptshift">subscriptshift</dt>
<dd><a href="/ja/docs/MathML/Attributes/Values#Lengths">長さの値</a>として、下付き文字を式のベースラインより下にシフトするための最小スペース。</dd>
<dt id="attr-superscriptshift">superscriptshift</dt>
<dd><a href="/ja/docs/MathML/Attributes/Values#Lengths">長さの値</a>として、上付き文字を式のベースラインより上にシフトするための最小スペース。</dd>
</dl>
<h2 id="例">例</h2>
<p>サンプルレンダリング: <img alt="x1" src="/files/3204/msubsup.png" style="margin-left: 10px; vertical-align: middle;"></p>
<p>ブラウザーでのレンダリング: <math displaystyle="true"> <msubsup> <mo> ∫</mo> <mn> 0 </mn> <mn> 1 </mn> </msubsup> </math></p>
<pre class="brush: html"><math displaystyle="true">
<msubsup>
<mo> &#x222B;<!--Integral --> </mo>
<mn> 0 </mn>
<mn> 1 </mn>
</msubsup>
</math>
</pre>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様</th>
<th scope="col">状態</th>
<th scope="col">コメント</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('MathML3', 'chapter3.html#presm.msubsup', 'msubsup') }}</td>
<td>{{ Spec2('MathML3') }}</td>
<td>現在の仕様</td>
</tr>
<tr>
<td>{{ SpecName('MathML2', 'chapter3.html#presm.msubsup', 'msubsup') }}</td>
<td>{{ Spec2('MathML2') }}</td>
<td>初期の仕様</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザー互換性">ブラウザー互換性</h2>
<p>{{Compat("mathml.elements.msubsup")}}</p>
<h2 id="Gecko固有のノート">Gecko固有のノート</h2>
<ul>
<li>Gecko 26.0 {{geckoRelease("26")}}から、子要素として <code><none /></code> を使用することはできません。 レンダリングは {{MathMLElement("msup")}} と {{MathMLElement("mmultiscripts")}} の同等の構成と一貫して行われ、<code>subscriptshift</code>と<code>superscriptshift</code>属性の誤った適用によるバグが修正されました(詳細については {{bug("827713")}} を参照)。</li>
</ul>
<h2 id="関連項目">関連項目</h2>
<ul>
<li>{{ MathMLElement("msub") }} (上付き文字)</li>
<li>{{ MathMLElement("msup") }} (下付き文字)</li>
<li>{{ MathMLElement("mmultiscripts") }} (プリスケープとテンソルインデックス)</li>
</ul>
|