diff --git a/config/default.js b/config/default.js index 1a37b448a..2a097782b 100644 --- a/config/default.js +++ b/config/default.js @@ -560,9 +560,9 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the AsciiMath inupt jax. + // These parameters control the AsciiMath input jax. // - AasciiMath: { + AsciiMath: { // // Determines whether limits are placed above and below operators, // or next to them. (AsciiMath doesn't have separate in-line and @@ -573,7 +573,7 @@ MathJax.Hub.Config({ // // The character to use for decimal places when scanning for a number. - // If you change it to ,, beware of things like "(1,2)" which would need + // If you change it to ",", beware of things like "(1,2)" which would need // to be changed to "(1, 2)" to be parsed correctly. // decimal: "." @@ -581,7 +581,7 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the MathML inupt jax. + // These parameters control the MathML input jax. // MathML: { // diff --git a/unpacked/config/default.js b/unpacked/config/default.js index 1a37b448a..2a097782b 100644 --- a/unpacked/config/default.js +++ b/unpacked/config/default.js @@ -560,9 +560,9 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the AsciiMath inupt jax. + // These parameters control the AsciiMath input jax. // - AasciiMath: { + AsciiMath: { // // Determines whether limits are placed above and below operators, // or next to them. (AsciiMath doesn't have separate in-line and @@ -573,7 +573,7 @@ MathJax.Hub.Config({ // // The character to use for decimal places when scanning for a number. - // If you change it to ,, beware of things like "(1,2)" which would need + // If you change it to ",", beware of things like "(1,2)" which would need // to be changed to "(1, 2)" to be parsed correctly. // decimal: "." @@ -581,7 +581,7 @@ MathJax.Hub.Config({ //============================================================================ // - // These parameters control the MathML inupt jax. + // These parameters control the MathML input jax. // MathML: { // diff --git a/unpacked/extensions/TeX/cancel.js b/unpacked/extensions/TeX/cancel.js index 7d0d303df..4731f8c99 100644 --- a/unpacked/extensions/TeX/cancel.js +++ b/unpacked/extensions/TeX/cancel.js @@ -8,7 +8,7 @@ * * \cancel{math} % strikeout math from lower left to upper right * \bcancel{math} % strikeout from upper left to lower right - * \xcancel{math} % strikout with an X + * \xcancel{math} % strikeout with an X * \cancelto{value}{math} % strikeout with arrow going to value * * --------------------------------------------------------------------- diff --git a/unpacked/extensions/TeX/extpfeil.js b/unpacked/extensions/TeX/extpfeil.js index 7818eaa3b..5b1c3f5d2 100644 --- a/unpacked/extensions/TeX/extpfeil.js +++ b/unpacked/extensions/TeX/extpfeil.js @@ -67,7 +67,7 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { // TEX.Parse.Augment({ NewExtArrow: function (name) { - var cs = this.GetArgument(name), + var cs = this.GetArgument(name), space = this.GetArgument(name), chr = this.GetArgument(name); if (!cs.match(/^\\([a-z]+|.)$/i)) diff --git a/unpacked/extensions/TeX/noErrors.js b/unpacked/extensions/TeX/noErrors.js index ca71f9788..074ab9bab 100644 --- a/unpacked/extensions/TeX/noErrors.js +++ b/unpacked/extensions/TeX/noErrors.js @@ -15,10 +15,11 @@ * inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"] * multiLine: true, // false for TeX on all one line * style: { - * "font-family": "serif", - * "font-size": "80%", + * "font-size": "90%", + * "text-align": "left", * "color": "black", - * "border": "1px solid" + * "padding": "1px 3px", + * "border": "1px solid" * // add any additional CSS styles that you want * // (be sure there is no extra comma at the end of the last item) * }