aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/mathml/element/math/index.html
blob: 5eada860f8d262380a2c7c8ac7065151e1b7fa84 (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
---
title: <math>
slug: Web/MathML/Element/math
tags:
  - MathML
  - MathML Reference
  - 'MathML:Element'
translation_of: Web/MathML/Element/math
---
<div>{{MathMLRef}}</div>

<p class="summary">MathML的顶级元素是<code>&lt;math&gt;</code>。所有有效的MathML实例必须被包括在 <code>&lt;math&gt;</code> 标记中。另外不可以在一个 <code>&lt;math&gt;</code> 元素中嵌套第二个 <code>&lt;math&gt;</code> 元素,但是 <code>&lt;math&gt;</code> 元素中可以有任意多的子元素 。</p>

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

<p>除了以下提到的属性, <code>&lt;math&gt;</code> 元素接受所有 {{ MathMLElement("mstyle") }} 元素的属性。</p>

<dl>
 <dt id="attr-class-id-style">class, id, style</dt>
 <dd>用于配合<a href="/en-US/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="/zh-CN/docs/CSS/color_value#Color_Keywords">HTML颜色名</a></dd>
 <dt id="attr-mathcolor">mathcolor</dt>
 <dd>公式的文本颜色。<code>你可以使用#rgb</code>格式、 <code>#rrggbb</code> 格式和 <a href="/zh-CN/docs/CSS/color_value#Color_Keywords">HTML颜色名</a></dd>
 <dt id="attr-display">display</dt>
 <dd>这个枚举属性指定本标记所括的MathML代码应该如何被显示。该属性有如下取值:
 <ul>
  <li><code>block</code>, 使用该值会使该MathML元素显示于文本之外,成为一个独立的块元素,不受其所在的文本的影响。</li>
  <li><code>inline</code>, 使用该值使这段MathML显示为行内元素,放置于当前文本的区域中。除非改变文本的显示,否则无法移动这个MathML的显示位置。</li>
 </ul>

 <p>如果没有指定该属性值,默认值采用 <code>inline</code></p>
 </dd>
 <dt id="attr-mode">mod {{deprecated_inline}}</dt>
 <dd>因为<a href="/en-US/docs/MathML/Element/math#attr-display">display属性</a>的出现而废弃。<br>
 可用取值为:<code>display</code> (效果和<code>display="block"</code>一样) 和and <code>inline</code>.</dd>
 <dt id="attr-overflow">overflow</dt>
 <dd>指定当该数学公式超过了其运行的范围时应该如何表现。<br>
 可能的取值为: <code>linebreak</code> (默认值), <code>scroll</code>, <code>elide</code>, <code>truncate</code>, <code>scale</code>.</dd>
</dl>

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

<p><img alt="Theorem of Pythagoras" src="/files/3157/math.jpg"></p>

<h3 id="HTML5_记号">HTML5 记号</h3>

<pre class="brush: html">&lt;!DOCTYPE html&gt;
&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;MathML in HTML5&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;

  &lt;math&gt;
    &lt;mrow&gt;
      &lt;mrow&gt;
        &lt;msup&gt;
          &lt;mi&gt;a&lt;/mi&gt;
          &lt;mn&gt;2&lt;/mn&gt;
        &lt;/msup&gt;
        &lt;mo&gt;+&lt;/mo&gt;
        &lt;msup&gt;
          &lt;mi&gt;b&lt;/mi&gt;
          &lt;mn&gt;2&lt;/mn&gt;
        &lt;/msup&gt;
      &lt;/mrow&gt;
      &lt;mo&gt;=&lt;/mo&gt;
      &lt;msup&gt;
        &lt;mi&gt;c&lt;/mi&gt;
        &lt;mn&gt;2&lt;/mn&gt;
      &lt;/msup&gt;
    &lt;/mrow&gt;
  &lt;/math&gt;

  &lt;/body&gt;
&lt;/html&gt;
</pre>

<h3 id="XHTML_记号">XHTML 记号</h3>

<pre class="brush: xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
 &lt;title&gt;MathML in XHTML&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

  &lt;math xmlns="http://www.w3.org/1998/Math/MathML"&gt;
    &lt;mrow&gt;
      &lt;mrow&gt;
        &lt;msup&gt;
          &lt;mi&gt;a&lt;/mi&gt;
          &lt;mn&gt;2&lt;/mn&gt;
        &lt;/msup&gt;
        &lt;mo&gt;+&lt;/mo&gt;
        &lt;msup&gt;
          &lt;mi&gt;b&lt;/mi&gt;
          &lt;mn&gt;2&lt;/mn&gt;
        &lt;/msup&gt;
      &lt;/mrow&gt;
      &lt;mo&gt;=&lt;/mo&gt;
      &lt;msup&gt;
        &lt;mi&gt;c&lt;/mi&gt;
        &lt;mn&gt;2&lt;/mn&gt;
      &lt;/msup&gt;
    &lt;/mrow&gt;
  &lt;/math&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>

<p><strong>注意:</strong> XHTML 文档如果带有MathML,必须将文档的MIME类型设置为<code>application/xhtml+xml</code>进行发送。一般来说可以通过将扩展名改为<code>.xhtml</code> 来实现对本地文件的修改。对于Apache服务器,你可以<a class="external" href="http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addtype">配置<code>.htaccess</code>文件</a> 来达到映射扩展名为正确的MIME类型的目的。因为MathML被放在一个XML文件中,你必须编写一个严格符合XML格式的文档。</p>

<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', 'chapter2.html#interf.toplevel', 'The Top-Level math Element') }}</td>
   <td>{{ Spec2('MathML3') }}</td>
   <td>当前的规范</td>
  </tr>
  <tr>
   <td>{{ SpecName('MathML2', 'chapter7.html#interf.toplevel', 'The Top-Level math Element') }}</td>
   <td>{{ Spec2('MathML2') }}</td>
   <td>最初的规范</td>
  </tr>
 </tbody>
</table>

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

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

<h2 id="Gecko-specific_注释">Gecko-specific 注释</h2>

<p>Gecko 7.0 {{ geckoRelease("7.0") }} 添加了对所有MathML属性在顶级math元素上的支持。 (也就是说和添加一个{{ MathMLElement("mstyle") }}元素效果一样)。然而,<code>displaystyle</code> 属性直到Gecko 8.0 {{ geckoRelease("8.0") }}<a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=669719">被添加进实现</a></p>

<p>纯文本的fall-back (<code>alttext</code>) 或者指定替代图像的属性<code>altimg</code>, <code>altimg-width</code>, <code>altimg-height</code><code>altimg-valign</code> 目前都还没有在Gecko中实现。</p>

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

<ul>
 <li>HTML top-level element: {{ HTMLElement("html") }}</li>
 <li>SVG top-level element: {{ SVGElement("svg") }}</li>
 <li>MathML browser test: For <a class="link-https" href="https://www.eyeasme.com/Joe/MathML/MathML_browser_test">XHTML</a> and <a class="link-https" href="https://eyeasme.com/Joe/MathML/HTML5_MathML_browser_test">HTML5</a></li>
</ul>