Fix the AsciiMath block name in default.js, and fix a number of comments in extensions
This commit is contained in:
parent
cfa168e642
commit
70ea836047
|
@ -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: {
|
||||
//
|
||||
|
|
|
@ -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: {
|
||||
//
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* ---------------------------------------------------------------------
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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)
|
||||
* }
|
||||
|
|
Loading…
Reference in New Issue
Block a user