semantics-2.html 1.4 KB

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Various tests for semantics</title>
  5. <meta charset="utf-8"/>
  6. </head>
  7. <body>
  8. <p>Empty semantics (invalid): <math><semantics></semantics></math></p>
  9. <p>annotation (invalid): <math><semantics><annotation>annotation</annotation></semantics></math></p>
  10. <p>annotation-xml (invalid): <math><semantics><annotation-xml encoding="MathML-Presentation"><mtext>annotation-xml</mtext></annotation-xml></semantics></math></p>
  11. <p>presentation MathML (no annotations): <math><semantics><mtext>presentation MathML</mtext></semantics></math></p>
  12. <p>content MathML (no annotations): <math><semantics><csymbol>content MathML</csymbol></semantics></math></p>
  13. <p>presentation MathML ; annotation: <math><semantics><mtext>presentation MathML</mtext><annotation>annotation</annotation></semantics></math></p>
  14. <p>presentation MathML ; annotation-xml: <math><semantics><mtext>presentation MathML</mtext><annotation-xml encoding="application/mathml-presentation+xml"><mtext>annotation-xml</mtext></annotation-xml></semantics></math></p>
  15. <p>content MathML ; annotation: <math><semantics><csymbol>content MathML</csymbol><annotation>annotation</annotation></semantics></math></p>
  16. <p>content MathML ; annotation-xml: <math><semantics><csymbol>content MathML</csymbol><annotation-xml encoding="application/mathml-presentation+xml"><mtext>annotation-xml</mtext></annotation-xml></semantics></math></p>
  17. </body>
  18. </html>