comparison software/eXist/webapp/mpdl/_stuff/tmp/mathML.html @ 11:d6f528ad5d96

TEI Unterst?tzung, Fehlerbehebungen, externe Objekte
author Josef Willenborg <jwillenborg@mpiwg-berlin.mpg.de>
date Fri, 11 Mar 2011 13:34:02 +0100
parents
children
comparison
equal deleted inserted replaced
10:59ff47d1e237 11:d6f528ad5d96
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html
3 PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN"
4 "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
6 <head>
7 <meta name="language" content="en-US"/>
8 <meta name="description" content="Example of MathML embedded in an XHTML file"/>
9 <meta name="keywords" content="Example of MathML embedded in an XHTML file"/>
10 <title>Example of MathML embedded in an XHTML file</title>
11 </head>
12 <body>
13 <h1>Example of MathML embedded in an XHTML file</h1>
14
15
16 <p>
17 Given the quadratic equation
18 <math xmlns="http://www.w3.org/1998/Math/MathML">
19 <mrow>
20 <mi>a</mi>
21 <mo>&#x2062;<!-- &InvisibleTimes; --></mo>
22 <msup>
23 <mi>x</mi>
24 <mn>2</mn>
25 </msup>
26 <mo>+</mo>
27 <mi>b</mi>
28 <mo>&#x2062;<!-- &InvisibleTimes; --></mo>
29 <mi>x</mi>
30 <mo>+</mo>
31 <mi>c</mi>
32 </mrow>
33 </math>
34 , the roots are given by
35 <math xmlns="http://www.w3.org/1998/Math/MathML">
36 <mrow>
37 <mi>x</mi>
38 <mo>=</mo>
39 <mfrac>
40 <mrow>
41 <mo form="prefix">&#x2212;<!-- &minus; --></mo>
42 <mi>b</mi>
43 <mo>&#x00B1;<!-- &PlusMinus; --></mo>
44 <msqrt>
45 <msup>
46 <mi>b</mi>
47 <mn>2</mn>
48 </msup>
49 <mo>&#x2212;<!-- &minus; --></mo>
50 <mn>4</mn>
51 <mo>&#x2062;<!-- &InvisibleTimes; --></mo>
52 <mi>a</mi>
53 <mo>&#x2062;<!-- &InvisibleTimes; --></mo>
54 <mi>c</mi>
55 </msqrt>
56 </mrow>
57 <mrow>
58 <mn>2</mn>
59 <mo>&#x2062;<!-- &InvisibleTimes; --></mo>
60 <mi>a</mi>
61 </mrow>
62 </mfrac>
63 </mrow>
64 </math>
65 .
66 </p>
67
68 </body>
69 </html>