I'm trying to output a parallelogram svg by using MathJax,here is my source mathml,please try them on MathJax demo page:
<math><mpadded voffset="-1.5ex"><mo mathsize="300%">▱</mo></mpadded><mi>A</mi><mi>B</mi><mi>C</mi><mi>D</mi></math>
As you see I've set mathsize
attribute to make the output result bigger,then I found that parallelogram itself did bigger but it went up too.So I set voffset
to make it lower.The result is,lots of space above parallelogram.
I want to remove the space,how should I do?
ps:One way to solve this problem is modifying the transform attribute in the svg after MathJax rendering,which I don't want to apply.I'm prefer to modify the mathml to solve it.Can you provides me some help?Thx a lot!