Skip to content

Instantly share code, notes, and snippets.

@suissa
Created October 10, 2015 13:39
Show Gist options
  • Save suissa/4a139f7ef4a8d95e5dd9 to your computer and use it in GitHub Desktop.
Save suissa/4a139f7ef4a8d95e5dd9 to your computer and use it in GitHub Desktop.
MathML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>MathML</title>
</head>
<body>
<math>
<mrow>
<mi>x</mi>
<mo>=</mo>
<mfrac>
<mrow>
<mo form="prefix">&minus;</mo>
<mi>b</mi>
<mo>&PlusMinus;</mo>
<msqrt>
<msup>
<mi>b</mi>
<mn>2</mn>
</msup>
<mo>&minus;</mo>
<mn>4</mn>
<mo>&InvisibleTimes;</mo>
<mi>a</mi>
<mo>&InvisibleTimes;</mo>
<mi>c</mi>
</msqrt>
</mrow>
<mrow>
<mn>2</mn>
<mo>&InvisibleTimes;</mo>
<mi>a</mi>
</mrow>
</mfrac>
</mrow>
</math>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment