Use mathit less, so things are less italic

Auditors: alpert
This commit is contained in:
Emily Eisenberg 2013-07-05 21:14:04 -07:00
parent 37355b82d1
commit 96733c279c

View File

@ -32,7 +32,7 @@ var MJLite = (function() {
group.type = "ord";
elem.className = "mord";
}
return makeSpan(className, mathit(group.value));
return makeSpan(className, textit(group.value));
} else if (group.type === "sup") {
var sup = makeSpan("msup", buildExpression(group.value.sup));
return makeSpan("mord", buildExpression(group.value.base).concat(sup));
@ -47,11 +47,9 @@ var MJLite = (function() {
return makeSpan("mord", buildExpression(group.value.base, elem).concat(supsub));
} else if (group.type === "open") {
return makeSpan("mopen", mathit(group.value));
return makeSpan("mopen", textit(group.value));
} else if (group.type === "close") {
return makeSpan("mclose", mathit(group.value));
} else if (group.type === "cdot") {
return makeSpan("mbin", textit("cdot"));
return makeSpan("mclose", textit(group.value));
} else if (group.type === "frac") {
var numer = makeSpan("mfracnum", buildExpression(group.value.numer, numer));
var mid = makeSpan("mfracmid", makeSpan());