... | ... | @@ -39,7 +39,7 @@ could be replaced by |
|
|
|
|
|
where `"TC"` is the identifier for the message `"Typesetting complete"`, and provided you have defined
|
|
|
|
|
|
var _ = function () {MathJax.Localization._.apply(MathJax.Localization,arguments)}
|
|
|
var _ = function () {return MathJax.Localization._.apply(MathJax.Localization,arguments)}
|
|
|
|
|
|
earlier. (Since most of MathJax is defined within a function closure, making such function shortcuts is straight-forward.)
|
|
|
|
... | ... | @@ -60,7 +60,7 @@ To use a domain with your id, pass `_()` an array consisting of the domain and t |
|
|
|
|
|
to get the message with id `"mb"` in the domain `"TeX"`. Note that the local definition for `_()` within the TeX input jax could be
|
|
|
|
|
|
var _ = function (id) {MathJax.Localization._.apply(MathJax.Localization,[ ["TeX",id] ].concat([].slice.call(arguments,1)));
|
|
|
var _ = function (id) {return MathJax.Localization._.apply(MathJax.Localization,[ ["TeX",id] ].concat([].slice.call(arguments,1)))};
|
|
|
|
|
|
in which case the message above could become
|
|
|
|
... | ... | |