MathML2

does Amayz support MathML 2.0?   

I'm having trouble using things like <apply>  and  < matrix>


<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- Fig. 20.10: mathml2.html -->
<!-- Simple MathML            -->

<html xmlns="http://www.w3.org/1999/xhtml">
   <head><title>Simple MathML Example</title></head>
   <body>
      <math xmlns = "http://www.w3.org/1998/Math/MathML">
  <mrow>
      <apply><transpose/>
     <matrixrow>
          <cn> 1 </cn>
          <cn> 2 </cn>
     </matrixrow>
     <matrixrow>
         <cn> 3 </cn>
          <ci> x </ci>
       </matrixrow>
    </apply>
</mrow>
</math>

   </body>
</html>



It says that things like matrixrow are unsupported.
and also it says sin and ci  "Invalid or unsupported MathML element <cn>"

   <mrow>
   <apply>  <sin/> <ci>x</ci>  </apply>
   </mrow>

Received on Wednesday, 18 June 2003 09:29:32 UTC