From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/mathml/element/mover/index.html | 88 ++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 files/ja/web/mathml/element/mover/index.html (limited to 'files/ja/web/mathml/element/mover') diff --git a/files/ja/web/mathml/element/mover/index.html b/files/ja/web/mathml/element/mover/index.html new file mode 100644 index 0000000000..2d6619d9a1 --- /dev/null +++ b/files/ja/web/mathml/element/mover/index.html @@ -0,0 +1,88 @@ +--- +title: +slug: Web/MathML/Element/mover +translation_of: Web/MathML/Element/mover +--- +
{{MathMLRef}}
+ +

MathML の <mover> 要素はアクセントかリミットを上に載せるために使われます。構文は次の通りです: <mover> base overscript </mover>
+ 訳注:アクセントは例えばドットやハットなどの記号です。リミットとは,定積分の区間の端点などのことです。
+ overscript には定着した訳語がないようです。superscript(上付き)が肩に付く添字であるのに対し,overscript は真上に付く添字です。そのまま「オーバースクリプト」と書くことにします。

+ +

属性

+ +
+
accent
+
これが true の場合,オーバースクリプトはアクセントであり,本体に近く表示されます。
+ false(既定値)の場合,オーバースクリプトは本体の上に載せるリミットです。
+ 訳注:既定値は実際にはもう少し複雑で,オーバースクリプトが <mo> 要素の場合,その accent 属性が既定値となるというルールがあります。詳細は仕様書を参照。また,accent 属性の値によって大きさが違って表示される場合もあります。
+
align
+
オーバースクリプトの揃え位置。取り得る値は:left, center および right.
+
class, id, style
+
Provided for use with stylesheets.
+
href
+
Used to set a hyperlink to a specified URI.
+
mathbackground
+
The background color. You can use #rgb, #rrggbb and HTML color names.
+
mathcolor
+
The text color. You can use #rgb, #rrggbb and HTML color names.
+
+ +

+ +

Sample rendering: x+y+z

+ +

Rendering in your browser: x + y + z

+ +
<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>
+
+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('MathML3', 'chapter3.html#presm.mover', 'mover') }}{{ Spec2('MathML3') }}Current specification
{{ SpecName('MathML2', 'chapter3.html#presm.mover', 'mover') }}{{ Spec2('MathML2') }}Initial specification
+ +

ブラウザ実装状況

+ + + +

{{Compat("mathml.elements.mover")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf