aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/mathml/element/mrow/index.html
blob: b735b70dd61cd644297db333b407c05f39da8758 (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
---
title: <mrow>
slug: Web/MathML/Element/mrow
tags:
  - MathML
  - MathML 元素
  - MathML 参考
  - MathML 布局
translation_of: Web/MathML/Element/mrow
---
<div>{{MathMLRef}}</div>

<p class="summary">MathML <code>&lt;mrow&gt;</code> 元素用于对连续多行表达式的不同子表达式进行分组,一条子表达式通常算作一行,至少包含一或多个<a href="/en-US/docs/MathML/Element/mo">操作符</a>与其<span class="op_dict_text2">运算对象(比如 </span>{{ MathMLElement("mi") }}{{ MathMLElement("mn") }})。此元素呈现为包含其内容的水平行。</p>

<p>在编写 MathML 表达式时,您应该使用 <code>&lt;mrow&gt;</code> 将表达式中的元素分组,就像它们在数学解释时的分成一行行一样。正确的分组有助于表达式的呈现,具体体现在以下几个方面:</p>

<ul>
 <li>如果有需要,它会改变间距来改善显示效果。</li>
 <li>它允许采用更明智的断行和缩进算法。</li>
 <li>通过自动化系统,如计算机代数系统和音频渲染器(automated systems such as computer algebra systems and audio renderers),它能简化表达式的解释(interpretation)过程。</li>
</ul>

<h2 id="属性">属性</h2>

<dl>
 <dt id="attr-class-id-style">class, id, style</dt>
 <dd>用来供<a href="https://wiki.developer.mozilla.org/zh-CN/docs/Web/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="/en-US/docs/CSS/color_value#Color_Keywords">HTML 颜色</a></dd>
 <dt id="attr-mathcolor">mathcolor</dt>
 <dd>文本颜色。支持 <code>#rgb</code><code>#rrggbb</code><a href="/en-US/docs/CSS/color_value#Color_Keywords">HTML 颜色</a></dd>
</dl>

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

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

  &lt;mrow&gt;
    &lt;mn&gt; 1 &lt;/mn&gt;
    &lt;mo&gt; + &lt;/mo&gt;
    &lt;mn&gt; 1 &lt;/mn&gt;
  &lt;/mrow&gt;

  &lt;mrow&gt;
    &lt;mo&gt; ( &lt;/mo&gt;
    &lt;mrow&gt;
      &lt;mi&gt; x &lt;/mi&gt;
      &lt;mo&gt; , &lt;/mo&gt;
      &lt;mi&gt; y &lt;/mi&gt;
    &lt;/mrow&gt;
    &lt;mo&gt; ) &lt;/mo&gt;
  &lt;/mrow&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.mrow', 'mrow') }}</td>
   <td>{{ Spec2('MathML3') }}</td>
   <td>Current specification</td>
  </tr>
  <tr>
   <td>{{ SpecName('MathML2', 'chapter3.html#presm.mrow', 'mrow') }}</td>
   <td>{{ Spec2('MathML2') }}</td>
   <td>Initial specification</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>



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

<h2 id="参见">参见</h2>

<ul>
 <li>HTML 分组元素:{{ HTMLElement("div") }}</li>
</ul>