aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/mathml/element/mtext/index.html
blob: 50c12704bf7467dd804f617677cf1683ff0295ea (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
title: <mtext>
slug: Web/MathML/Element/mtext
tags:
  - MathML
  - MathML Reference
  - 'MathML:Element'
  - 'MathML:Token Elements'
translation_of: Web/MathML/Element/mtext
---
<div>{{MathMLRef}}</div>

<p class="summary">MathML &lt;mtext&gt; 要素は、コメントや注釈などの表記の意味を<em>もたない</em>任意のテキストをレンダリングするために使用されます。<br>
 表記の意味<em></em>テキストを表示するには、{{ MathMLElement("mi") }}{{ MathMLElement("mo") }} を代わりに使用します。</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-dir">dir</dt>
 <dd>数式全体の書字方向。値として <code>ltr</code> (左から右へ)と <code>rtl</code> (右から左へ) が指定可能です。</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-mathsize">mathsize</dt>
 <dd>Specifies the size of the content. Possible values are:
 <ul>
  <li><code>small:</code>Font is rendered smaller than the current font size.</li>
  <li><code>normal:</code>Equivalent to 100% or 1em.</li>
  <li><code>big:</code>Font is rendered larger than the current font size.</li>
  <li>a custom <a href="/ja/docs/MathML/Attributes/Values#Lengths">length</a>.</li>
  <li>or a unitless value which multiplies the default.</li>
 </ul>
 </dd>
 <dt id="attr-mathvariant">mathvariant</dt>
 <dd>This attribute specifies the logical class of the identifier, which varies in typography. That is, although the names suggest the typographic style for the class, semantically, items with the same class are treated "the same" within an expression, which might or might not involve displaying them with the named typography. The following values are allowed:
 <ul>
  <li><code>normal</code> (Default value) ; <math><mtext mathvariant="normal">Example</mtext></math></li>
  <li><code>bold</code> ; <math><mtext mathvariant="bold">Example</mtext></math></li>
  <li><code>italic</code> ; <math><mtext mathvariant="italic">Example</mtext></math></li>
  <li><code>bold-italic</code> ; <math><mtext mathvariant="bold-italic">Example</mtext></math></li>
 </ul>

 <ul>
  <li><code>double-struck</code> ; <math><mtext mathvariant="double-struck">Example</mtext></math></li>
  <li><code>bold-fraktur</code> ; <math><mtext mathvariant="bold-fraktur">Example</mtext></math></li>
  <li><code>script</code> ; <math><mtext mathvariant="script">Example</mtext></math></li>
  <li><code>bold-script</code> ; <math><mtext mathvariant="bold-script">Example</mtext></math></li>
  <li><code>fraktur</code> ; <math><mtext mathvariant="fraktur">Example</mtext></math></li>
 </ul>

 <ul>
  <li><code>sans-serif</code> ; <math><mtext mathvariant="sans-serif">Example</mtext></math></li>
  <li><code>bold-sans-serif</code> ; <math><mtext mathvariant="bold-sans-serif">Example</mtext></math></li>
  <li><code>sans-serif-italic</code> ; <math><mtext mathvariant="sans-serif-italic">Example</mtext></math></li>
  <li><code>sans-serif-bold-italic</code> ; <math><mtext mathvariant="sans-serif-bold-italic">Example</mtext></math></li>
  <li><code>monospace</code> ; <math><mtext mathvariant="monospace">Example</mtext></math></li>
 </ul>

 <ul>
  <li><code>normal</code> (Default) ; <math><mtext>مثال</mtext></math></li>
  <li><code>initial</code> ; <math><mtext mathvariant="initial">مثال</mtext></math></li>
  <li><code>tailed</code> ; <math><mtext mathvariant="tailed">مثال</mtext></math></li>
  <li><code>looped</code> ; <math><mtext mathvariant="looped">مثال</mtext></math></li>
  <li><code>stretched</code> ; <math><mtext mathvariant="stretched">مثال</mtext></math></li>
 </ul>
 </dd>
</dl>

<h2 id="例"></h2>

<pre class="brush: html">&lt;math&gt;

  &lt;mtext&gt; Theorem of Pythagoras &lt;/mtext&gt;

  &lt;mtext&gt; /* comment here */ &lt;/mtext&gt;

&lt;/math&gt;
</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.mtext', 'mtext') }}</td>
   <td>{{ Spec2('MathML3') }}</td>
   <td>現在の仕様</td>
  </tr>
  <tr>
   <td>{{ SpecName('MathML2', 'chapter3.html#presm.mtext', 'mtext') }}</td>
   <td>{{ Spec2('MathML2') }}</td>
   <td>初期の仕様</td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザー互換性">ブラウザー互換性</h2>



<p>{{Compat("mathml.elements.mtext")}}</p>

<h2 id="Gecko_固有の注記">Gecko 固有の注記</h2>

<ul>
 <li>Starting with Gecko 20.0 {{geckoRelease("20.0")}} a unitless value for <code>mathsize</code> is allowed.</li>
 <li>Some <code>mathvariant</code> values are only implemented starting with Gecko 28.0 (Firefox 28.0 / Thunderbird 28.0 / SeaMonkey 2.25) and require appropriate <a href="/ja/docs/Mozilla/MathML_Project/Fonts">math fonts</a>.</li>
</ul>