﻿<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://www.w3.org/Math/XSL/mathml.xsl"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <title>MathML Beispiel</title>
</head>

<body>
<h1> 
 Ein Beispiel
</h1>
<p>Ein wenig Text mit einer kleinen Grafik:</p>
<div><img src="logo.png" /></div>

<p>Und ein <a href="http://www.fcb.de">Link</a> 
sollte auch nicht fehlen, denn jetzt kommt der Clou:

 <math xmlns="http://www.w3.org/1998/Math/MathML">
  <mrow>
   <msubsup>
    <mo> &int; </mo>
    <mn>0</mn>
    <mn>1</mn>
   </msubsup>
   <mrow>  
    <mo>&weierp;</mo>
    <mo>&ApplyFunction;</mo>
    <mrow>
     <mo>(</mo>
     <mi>x</mi>
     <mo>)</mo>
    </mrow>
    <mo>&InvisibleTimes;</mo>
    <mo>&DifferentialD;</mo>
    <mi>x</mi>
   </mrow>
  </mrow>
 </math>

 eine Formel mitten im Text,
 als hätte sie schon immer 
 dazugehört.
</p>

<p>Weils so schön war, notieren wir auch die Bedeutung der Formel:

 <math xmlns="http://www.w3.org/1998/Math/MathML">
  <apply>
   <int/>
    <bvar><ci>x</ci></bvar>
    <interval><cn>0</cn><cn>1</cn></interval>
    <apply>
     <co>&weierp;</co>
     <ci>x</ci>
    </apply>
  </apply>
 </math>

</p>
</body>
</html>