blob: ef0be970db38dfe358eaa30cbf138c6030afefbc (
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
 | ---
title: MathML
slug: Web/MathML
tags:
  - MathML
  - Wszystkie_kategorie
translation_of: Web/MathML
translation_of_original: MathML
---
<p>Moduł MathML: Dodaje możliwość wyświetlania języka MathML wewnątrz Mozilli.</p>
<h2 id="Przykład_w_XHTML">Przykład w XHTML</h2>
<pre class="brush: html"><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN"
      "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>MathML Example</title>
</head>
<body>
<math xmlns="http://www.w3.org/1998/Math/MathML">
  <mfrac>
    <msubsup>
      <mi>a</mi>
      <mi>i</mi>
      <mi>j</mi>
    </msubsup>
    <msub>
      <mi>x</mi>
      <mn>0</mn>
    </msub>
  </mfrac>
  <mo>−</mo>
  <msqrt>
    <msup>
      <mi>δ</mi>
      <mn>2</mn>
    </msup>
    <mo>−</mo>
    <mn>1</mn>
  </msqrt>
</math>
</body>
</html>
</pre>
<h2 id="Dokumenty" name="Dokumenty">Dokumenty</h2>
<ul>
 <li><a href="/en/Mozilla_MathML_Project">Strona projektu MathML</a> na mozilla.org</li>
 <li><a href="/en/Mozilla_MathML_Project/Authoring">Adaptowanie MathML dla Mozilli</a></li>
 <li><a href="/en/Mozilla_MathML_Project/Fonts">Czcionki MathML dla Mozilli</a></li>
</ul>
<h2 id="Spo.C5.82eczno.C5.9B.C4.87" name="Spo.C5.82eczno.C5.9B.C4.87">Społeczność</h2>
<p>Obejrzyj fora Mozilli...</p>
<p>{{ DiscussionList("dev-tech-mathml", "mozilla.dev.tech.mathml") }}</p>
<p>{{ languages( { "en": "en/MathML", "ja": "ja/MathML" } ) }}</p>
 |