aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/mathml/element/msqrt
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/msqrt
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/msqrt')
-rw-r--r--files/ja/web/mathml/element/msqrt/index.html75
1 files changed, 75 insertions, 0 deletions
diff --git a/files/ja/web/mathml/element/msqrt/index.html b/files/ja/web/mathml/element/msqrt/index.html
new file mode 100644
index 0000000000..f92be2fee3
--- /dev/null
+++ b/files/ja/web/mathml/element/msqrt/index.html
@@ -0,0 +1,75 @@
+---
+title: <msqrt>
+slug: Web/MathML/Element/msqrt
+tags:
+ - MathML
+ - 平方根
+translation_of: Web/MathML/Element/msqrt
+---
+<p>{{MathMLRef()}}</p>
+
+<p>MathMLの <code>&lt;msqrt&gt;</code> 要素は平方根(根指数のついていない累乗根)を表示するために用いられます。 引数は一つだけで、構文は <code>&lt;msqrt&gt; <em>base</em> &lt;/msqrt&gt;</code> となります。</p>
+
+<h2 id="属性">属性</h2>
+
+<dl>
+ <dt id="attr-class-id-style">class, id, style</dt>
+ <dd><a href="/ja/docs/CSS">CSS</a>を用いて修飾を行なう際に使われます。</dd>
+ <dt id="attr-href">href</dt>
+ <dd>ハイパーリンクを設定する際に用いられます。</dd>
+ <dt id="attr-mathbackground">mathbackground</dt>
+ <dd>数式の背景色を指定するために使われます。<code>#rgb</code><font face="Arial, x-locale-body, sans-serif">、</font><code>#rrggbb</code>のような16進表現のほか、HTMLで定められた<a href="https://wiki.developer.mozilla.org/ja/docs/Web/CSS/color_value#Color_keywords" rel="noopener">色キーワード</a>を用いることができます。</dd>
+ <dt id="attr-mathcolor">mathcolor</dt>
+ <dd>根号を含んだ数式の文字の色を指定するために使われます。<code>#rgb</code><font face="Arial, x-locale-body, sans-serif">、</font><code>#rrggbb</code>のような16進表現のほか、HTMLで定められた<a href="https://wiki.developer.mozilla.org/ja/docs/Web/CSS/color_value#Color_keywords" rel="noopener">色キーワード</a>を用いることができます。</dd>
+</dl>
+
+<h2 id="例">例</h2>
+
+<p>レンダリングのサンプル(画像): <img alt="root-x" src="/files/3201/msqrt.png" style="margin-left: 10px; vertical-align: middle;"></p>
+
+<p>ブラウザのレンダリング結果: <math> <msqrt> <mi>x</mi> </msqrt> </math></p>
+
+<pre class="brush: html">&lt;math&gt;
+
+ &lt;msqrt&gt;
+ &lt;mi&gt;x&lt;/mi&gt;
+ &lt;/msqrt&gt;
+
+&lt;/math&gt;
+</pre>
+
+<h2 id="ブラウザごとの互換性">ブラウザごとの互換性</h2>
+
+
+
+<p>{{Compat("mathml.elements.msqrt")}}</p>
+
+<h2 id="Specifications" name="Specifications">仕様</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.msqrt', 'msqrt') }}</td>
+ <td>{{ Spec2('MathML3') }}</td>
+ <td>Current specification</td>
+ </tr>
+ <tr>
+ <td>{{ SpecName('MathML2', 'chapter3.html#presm.msqrt', 'msqrt') }}</td>
+ <td>{{ Spec2('MathML2') }}</td>
+ <td>Initial specification</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="See_also">See also</h2>
+
+<ul>
+ <li>{{ MathMLElement("mroot") }} (Radical with an index)</li>
+</ul>