aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/mathml/element/mroot
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/mathml/element/mroot
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/mathml/element/mroot')
-rw-r--r--files/ja/web/mathml/element/mroot/index.html85
1 files changed, 85 insertions, 0 deletions
diff --git a/files/ja/web/mathml/element/mroot/index.html b/files/ja/web/mathml/element/mroot/index.html
new file mode 100644
index 0000000000..64b9691e23
--- /dev/null
+++ b/files/ja/web/mathml/element/mroot/index.html
@@ -0,0 +1,85 @@
+---
+title: <mroot>
+slug: Web/MathML/Element/mroot
+tags:
+ - MathML
+ - MathML Reference
+ - 'MathML:Element'
+ - 'MathML:General Layout Schemata'
+translation_of: Web/MathML/Element/mroot
+---
+<div>{{MathMLRef}}</div>
+
+<p class="summary">MathML の <code>&lt;mroot&gt;</code> 要素は根指数の付いた累乗根を表示するのに用いられます。引数は二つあり,構文は <code>&lt;mroot&gt; <em>基数 根指数</em> &lt;/mroot&gt;</code> となります。</p>
+
+<h2 id="Attributes" name="Attributes">属性</h2>
+
+<dl>
+ <dt id="attr-class-id-style">class, id, style</dt>
+ <dd><a href="/ja/docs/Web/CSS">スタイルシート</a>で使用するために使います。</dd>
+ <dt id="attr-displaystyle"><code>displaystyle</code></dt>
+ <dd>論理値で、数式を表示する際に上下に余白を追加するかどうかを指定します。 <code>false</code> に設定すると、数式を表示するのによりコンパクトなレイアウトを使用します。 <code>displaystyle</code> を <code>true</code> に設定する主な効果は、演算子をより大きく表示することです。 {{ MathMLElement("mo") }} の <code>largeop</code> および <code>movablelimits</code> も参照してください。</dd>
+ <dt id="attr-href">href</dt>
+ <dd>指定された URL へのハイパーリンクを設定するために使われます。</dd>
+ <dt id="attr-mathbackground">mathbackground</dt>
+ <dd>背景色を指定します。 <code>#rgb</code> や <code>#rrggbb</code> のような16進表現や<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> のような16進表現や <a href="/ja/docs/CSS/color_value#Color_Keywords">HTML color 色名</a>を用いることができます</dd>
+</dl>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<p>レンダリングのサンプル(画像): <img alt="x" src="/files/3200/mroot.png" style="margin-left: 10px; vertical-align: middle;"></p>
+
+<p>ブラウザのレンダリング結果: <math> <mroot> <mi>x</mi> <mn>3</mn> </mroot> </math></p>
+
+<pre class="brush: html notranslate">&lt;math&gt;
+
+ &lt;mroot&gt;
+ &lt;mi&gt;x&lt;/mi&gt;
+ &lt;mn&gt;3&lt;/mn&gt;
+ &lt;/mroot&gt;
+
+&lt;/math&gt;
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</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("MathMLCore", "#radicals-msqrt-mroot", "mroot")}}</td>
+ <td>{{Spec2("MathMLCore")}}</td>
+ <td>草稿の仕様</td>
+ </tr>
+ <tr>
+ <td>{{ SpecName('MathML3', 'chapter3.html#presm.mroot', 'mroot') }}</td>
+ <td>{{ Spec2('MathML3') }}</td>
+ <td>現在の仕様</td>
+ </tr>
+ <tr>
+ <td>{{ SpecName('MathML2', 'chapter3.html#presm.mroot', 'mroot') }}</td>
+ <td>{{ Spec2('MathML2') }}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("mathml.elements.mroot")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{ MathMLElement("msqrt") }} (根指数のない平方根)</li>
+</ul>