diff options
author | rbuj <[email protected]> | 2018-10-02 13:10:08 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-10-03 14:08:59 +0200 |
commit | 5321fc435e72a203e362a3ff30637ae486a4f38b (patch) | |
tree | 5b31ff75cd137b5590a7def377aa7c69cc90711f /help/C | |
parent | 931b63cc3b4805a0c5b9f6eaa424498b7cde026b (diff) | |
download | mate-calc-5321fc435e72a203e362a3ff30637ae486a4f38b.tar.bz2 mate-calc-5321fc435e72a203e362a3ff30637ae486a4f38b.tar.xz |
Write equation using MathML
Diffstat (limited to 'help/C')
-rw-r--r-- | help/C/superscript.page | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/help/C/superscript.page b/help/C/superscript.page index e57a818..94acb61 100644 --- a/help/C/superscript.page +++ b/help/C/superscript.page @@ -15,7 +15,24 @@ </p> <example> <p> - x³+2x²−5 + <math xmlns="http://www.w3.org/1998/Math/MathML" alttext="x³+2x²−5"> + <mrow> + <msup> + <mi>x</mi> + <mn>3</mn> + </msup> + <mo>+</mo> + <mrow> + <mn>2</mn> + <msup> + <mi>x</mi> + <mn>2</mn> + </msup> + </mrow> + <mo>-</mo> + <mn>5</mn> + </mrow> + </math> </p> </example> <p> |