We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b30c8f2 commit 9f14997Copy full SHA for 9f14997
unpacked/jax/input/TeX/jax.js
@@ -1430,8 +1430,10 @@
1430
var pos = {o: "over", u: "under"}[name.charAt(1)];
1431
var base = this.ParseArg(name);
1432
if (base.Get("movablelimits")) {base.movablelimits = false}
1433
- if (base.isa(MML.munderover) && base.isEmbellished())
1434
- {base = MML.mrow(MML.mo().With({rspace:0}),base)} // add an empty <mi> so it's not embellished any more
+ if (base.isa(MML.munderover) && base.isEmbellished()) {
+ base.Core().With({lspace:0,rspace:0}); // get spacing right for NativeMML
1435
+ base = MML.mrow(MML.mo().With({rspace:0}),base); // add an empty <mi> so it's not embellished any more
1436
+ }
1437
var mml = MML.munderover(base,null,null);
1438
mml.SetData(
1439
mml[pos],
0 commit comments