diff options
Diffstat (limited to 'files/pl/web/mathml/index.html')
-rw-r--r-- | files/pl/web/mathml/index.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/files/pl/web/mathml/index.html b/files/pl/web/mathml/index.html new file mode 100644 index 0000000000..34602df279 --- /dev/null +++ b/files/pl/web/mathml/index.html @@ -0,0 +1,62 @@ +--- +title: MathML +slug: Web/MathML +tags: + - MathML + - Wszystkie_kategorie +translation_of: Web/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> |