Use ⁡ after \mathop{} no matter what its contents (it used to only do it for \mathop{\rm ...}

This commit is contained in:
Davide P. Cervone 2011-05-09 08:22:10 -04:00
parent edd68a415a
commit 66bc9b8317
8 changed files with 10 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1239,7 +1239,9 @@
if (match) {
def.mathvariant = MML.VARIANT.NORMAL;
mml = STACKITEM.fn(this.mmlToken(MML.mi(match[1]).With(def)));
} else {mml = MML.TeXAtom(TEX.Parse(arg,this.stack.env).mml()).With(def)}
} else {
mml = STACKITEM.fn(MML.TeXAtom(TEX.Parse(arg,this.stack.env).mml()).With(def));
}
} else {mml = MML.TeXAtom(this.ParseArg(name)).With(def)}
this.Push(mml);
},