<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/xsl" href="svg.xsl"?><html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://www.w3.org/1999/xhtml"><head><title>Other Applications</title><script>
function newdoc(s) {
document.location.href=(s.options[s.options.selectedIndex].value);
}
</script><link rel="stylesheet" type="text/css" href="mmlxsl.css"/></head><body><span class="toc"><a href="mml2002-15.xml">previous</a>
 
<select name="toc" onchange="newdoc(this)"><option value="mml2002-01.xml">01: MathML on the Web</option><option value="mml2002-02.xml">02: Conclusions</option><option value="mml2002-03.xml">03: October 2000</option><option value="mml2002-04.xml">04: Presentation MathML</option><option value="mml2002-05.xml">05: Content MathML</option><option value="mml2002-06.xml">06: Inline MathML</option><option value="mml2002-07.xml">07: Problems (1)</option><option value="mml2002-08.xml">08: Solution (XSLT)</option><option value="mml2002-09.xml">09: XML Namespaces</option><option value="mml2002-10.xml">10: xml-stylesheet</option><option value="mml2002-11.xml">11: XSLT</option><option value="mml2002-12.xml">12: The Stylesheet: XHTML</option><option value="mml2002-13.xml">13: The Stylesheet: MathML</option><option value="mml2002-14.xml">14: The Stylesheet: C to P</option><option value="mml2002-15.xml">15: Problems (2)</option><option value="mml2002-16.xml" selected="selected">16: Other Applications</option></select>
 
<a href="mml2002-02.xml">next</a></span>
<h1>Other Applications</h1>


<pre class="v">&lt;svg width="4cm" height="4cm" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"&gt;
  &lt;title&gt;Example triangle01- simple example of a 'path'&lt;/title&gt;
  &lt;desc&gt;A path that draws a rectangle&lt;/desc&gt;
  &lt;rect x="1" y="1" width="398" height="398"
        style="fill:none; stroke:blue"/&gt;
  &lt;path d="M 100 100 L 300 100 L 200 300 z"
        style="fill:red; stroke:blue; stroke-width:3"/&gt;
&lt;/svg&gt;</pre>

<p>Other XML vocabularies could adapt the MathML stylesheets to
their needs.</p>

<p>For example SVG has support in
Amaya and in some, non standard, builds of Mozilla,
and by Adobe's behavior extension for IE.</p>

<svg xmlns="http://www.w3.org/2000/svg" width="4cm" height="4cm" viewBox="0 0 400 400">
  <title>Example triangle01- simple example of a 'path'</title>
  <desc>A path that draws a rectangle</desc>
  <rect x="1" y="1" width="398" height="398" style="fill:none; stroke:blue"/>
  <path d="M 100 100 L 300 100 L 200 300 z" style="fill:red; stroke:blue; stroke-width:3"/>
</svg>


</body></html>