<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="styles.css"?>

<!DOCTYPE html PUBLIC	"-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"	"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd" [	
	<!ENTITY MathML "http://www.w3.org/1998/Math/MathML">
	<!ENTITY XHTML  "http://www.w3.org/1999/xhtml">
	<!ENTITY SVG    "http://www.w3.org/2000/svg">

	<!ENTITY % XHTML.prefixed  "IGNORE">	<!ENTITY % XHTML.prefix    "">	<!ENTITY % MATHML.prefixed "IGNORE">	<!ENTITY % MATHML.prefix   "">	<!ENTITY % SVG.prefixed    "IGNORE">	<!ENTITY % SVG.prefix      "">]><html xmlns="&XHTML;">	<head>		<title>MathML Content Evaluator</title>

		<script type="text/javascript" src="math-library.js"></script>
		<script type="text/javascript" src="evaluator.js"></script>
		<script type="text/javascript" src="driver.js"></script>
	</head>
	<body>
		<p>Content MathML with accompanying Presentation MathML annotation and dynamically generated SVG annotation</p>
		<math xmlns="&MathML;">
			<semantics>
				<apply>
					<eq/>
					<mi>y</mi>
					<apply>
						<times/>
						<mn>5</mn>
						<apply>
							<sin/>
							<apply>
								<divide/>
								<mn>1</mn>
								<mi>x</mi>
							</apply>
						</apply>
					</apply>
				</apply>
				<annotation-xml encoding="MathML-Presentation">
					<mrow>
						<mi>y</mi>
						<mo>=</mo>
						<mn>5</mn>
						<mo>&InvisibleTimes;</mo>
						<mo>sin</mo>
						<mfrac>
							<mn>1</mn>
							<mi>x</mi>
						</mfrac>
					</mrow>
				</annotation-xml>

			</semantics>
		</math>
	</body>
</html>