Mercurial > hg > mpdl-group
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/software/eXist/webapp/mpdl/_stuff/tmp/mathML.html Fri Mar 11 13:34:02 2011 +0100 @@ -0,0 +1,69 @@ +<?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" xml:lang="en"> + <head> + <meta name="language" content="en-US"/> + <meta name="description" content="Example of MathML embedded in an XHTML file"/> + <meta name="keywords" content="Example of MathML embedded in an XHTML file"/> + <title>Example of MathML embedded in an XHTML file</title> + </head> + <body> + <h1>Example of MathML embedded in an XHTML file</h1> + + + <p> + Given the quadratic equation + <math xmlns="http://www.w3.org/1998/Math/MathML"> + <mrow> + <mi>a</mi> + <mo>⁢<!-- ⁢ --></mo> + <msup> + <mi>x</mi> + <mn>2</mn> + </msup> + <mo>+</mo> + <mi>b</mi> + <mo>⁢<!-- ⁢ --></mo> + <mi>x</mi> + <mo>+</mo> + <mi>c</mi> + </mrow> + </math> + , the roots are given by + <math xmlns="http://www.w3.org/1998/Math/MathML"> + <mrow> + <mi>x</mi> + <mo>=</mo> + <mfrac> + <mrow> + <mo form="prefix">−<!-- − --></mo> + <mi>b</mi> + <mo>±<!-- ± --></mo> + <msqrt> + <msup> + <mi>b</mi> + <mn>2</mn> + </msup> + <mo>−<!-- − --></mo> + <mn>4</mn> + <mo>⁢<!-- ⁢ --></mo> + <mi>a</mi> + <mo>⁢<!-- ⁢ --></mo> + <mi>c</mi> + </msqrt> + </mrow> + <mrow> + <mn>2</mn> + <mo>⁢<!-- ⁢ --></mo> + <mi>a</mi> + </mrow> + </mfrac> + </mrow> + </math> + . + </p> + + </body> +</html>