Created
October 10, 2015 13:39
-
-
Save suissa/4a139f7ef4a8d95e5dd9 to your computer and use it in GitHub Desktop.
MathML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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">−</mo> | |
<mi>b</mi> | |
<mo>±</mo> | |
<msqrt> | |
<msup> | |
<mi>b</mi> | |
<mn>2</mn> | |
</msup> | |
<mo>−</mo> | |
<mn>4</mn> | |
<mo>⁢</mo> | |
<mi>a</mi> | |
<mo>⁢</mo> | |
<mi>c</mi> | |
</msqrt> | |
</mrow> | |
<mrow> | |
<mn>2</mn> | |
<mo>⁢</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