diff --git a/docs/html/CSS-styles.html b/docs/html/CSS-styles.html index 616f24db2..0c9cfb750 100644 --- a/docs/html/CSS-styles.html +++ b/docs/html/CSS-styles.html @@ -6,13 +6,13 @@ - CSS Style Objects — MathJax v1.1 documentation + CSS Style Objects — MathJax v1.1a documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -159,7 +159,7 @@ samples. In particular, the exte
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -156,7 +156,7 @@ This is bold text shown in red
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -118,7 +118,7 @@ additional internal data.

    loadHooks

    An object containing the load hooks for the various files, set up by -the loadHook() method, or by the +the LoadHook() method, or by the MathJax.Hub.Register.LoadHook() method.

    @@ -257,8 +257,8 @@ puts a warning message into the MathJax message box on screen.

    -
    -loadHook(file, callback)
    +
    +LoadHook(file, callback)

    Registers a callback to be executed when the given file is loaded. The file load operation needs to be started when this method is called, so it can be used to register a hook for a file @@ -423,7 +423,7 @@ actual root URL location).

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/callback.html b/docs/html/api/callback.html index 497878dd7..5ecc867f8 100644 --- a/docs/html/api/callback.html +++ b/docs/html/api/callback.html @@ -6,13 +6,13 @@ - The MathJax.Callback Class — MathJax v1.1 documentation + The MathJax.Callback Class — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -128,11 +128,11 @@ the function as well.

    Here, object is an object that has a method called method, and the callback will execute that method (with the object as this) when it is called. For example,

    -
    ["length",[1,2,3,4]]
    +
    ["toString",[1,2,3,4]]
     
    -

    would call the length method on the array [1,2,3,4] when -the callback is called, returning 4.

    +

    would call the toString method on the array [1,2,3,4] when +the callback is called, returning 1,2,3,4.

    @@ -289,8 +289,8 @@ commands.

    -
    -executeHooks(hooks[, data[, reset]])
    +
    +ExecuteHooks(hooks[, data[, reset]])

    Calls each callback in the hooks array (or the single hook if it is not an array), passing it the arguments stored in the data array. If reset is true, then the callback’s @@ -298,7 +298,7 @@ array. If reset is executed. If any of the hooks returns a Callback object, then it collects those callbacks and returns a new callback that will execute when all the ones returned by the hooks have been -completed. Otherwise, MathJax.Callback.executeHooks() +completed. Otherwise, MathJax.Callback.ExecuteHooks() returns null.

    @@ -420,7 +420,7 @@ and returns the signal object. See
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/elementjax.html b/docs/html/api/elementjax.html index 7fa8eb433..e0ede65ce 100644 --- a/docs/html/api/elementjax.html +++ b/docs/html/api/elementjax.html @@ -6,13 +6,13 @@ - The MathJax.ElementJax Class — MathJax v1.1 documentation + The MathJax.ElementJax Class — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -271,7 +271,7 @@ contextual menu.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/html.html b/docs/html/api/html.html index 073f84c9a..00f123383 100644 --- a/docs/html/api/html.html +++ b/docs/html/api/html.html @@ -6,13 +6,13 @@ - The MathJax.HTML Object — MathJax v1.1 documentation + The MathJax.HTML Object — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -86,7 +86,7 @@ describes the contents to create for the element. For example

    var div = MathJax.HTML.Element(
       "div",
       {id: "MathDiv", style:{border:"1px solid", padding:"5px"}},
    -  ["Here is math: $x+1$",["br"],"and a display $$x+1\\over x-1$$"]
    +  ["Here is math: \\(x+1\\)",["br"],"and a display $$x+1\\over x-1$$"]
     );
     
    @@ -177,8 +177,8 @@ provided. It is equivalent to

    -
    -setText(script, text)
    +
    +setScript(script, text)

    Sets the contents of the script element to be the given text, properly taking into account the browser limitations and bugs.

    @@ -300,7 +300,7 @@ above,

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/hub.html b/docs/html/api/hub.html index b33e847d3..dec2ba186 100644 --- a/docs/html/api/hub.html +++ b/docs/html/api/hub.html @@ -6,13 +6,13 @@ - The MathJax.Hub Object — MathJax v1.1 documentation + The MathJax.Hub Object — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -685,7 +685,7 @@ error on the page.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/index.html b/docs/html/api/index.html index 2c86519b3..d4a722446 100644 --- a/docs/html/api/index.html +++ b/docs/html/api/index.html @@ -6,13 +6,13 @@ - The MathJax API — MathJax v1.1 documentation + The MathJax API — MathJax v1.1a documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -132,7 +132,7 @@ on the main MathJax documentation page.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -210,7 +210,7 @@ of the various types from one another.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/jax.html b/docs/html/api/jax.html index 1947b45ab..ced1a4cd0 100644 --- a/docs/html/api/jax.html +++ b/docs/html/api/jax.html @@ -6,13 +6,13 @@ - The Base Jax Class — MathJax v1.1 documentation + The Base Jax Class — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -313,7 +313,7 @@ isn’t called until those files are completely loaded.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/message.html b/docs/html/api/message.html index 0d216852c..9e629302e 100644 --- a/docs/html/api/message.html +++ b/docs/html/api/message.html @@ -6,13 +6,13 @@ - The MathJax.Message Object — MathJax v1.1 documentation + The MathJax.Message Object — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -272,7 +272,7 @@ newlines. This is used in debugging MathJax operations.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/object.html b/docs/html/api/object.html index bba2b6777..42e05f7c6 100644 --- a/docs/html/api/object.html +++ b/docs/html/api/object.html @@ -6,13 +6,13 @@ - The MathJax Object-Oriented Programming Model — MathJax v1.1 documentation + The MathJax Object-Oriented Programming Model — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -61,7 +61,7 @@ subclasses of MathJax.Object or one of its subclasses, and are instantiated by calling the object class as you would a function.

    For example:

    MathJax.Object.Foo = MathJax.Object.Subclass({
    -  Init: function (x) {this.SetX(x)},
    +  Init: function (x) {this.setX(x)},
       getX: function () {return this.x},
       setX: function (x) {this.x = x}
     });
    @@ -341,7 +341,7 @@ wrapping the def for the 
               previous |
    -        
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/outputjax.html b/docs/html/api/outputjax.html index 93329edb0..1ec99709a 100644 --- a/docs/html/api/outputjax.html +++ b/docs/html/api/outputjax.html @@ -6,13 +6,13 @@ - The MathJax.OutputJax Class — MathJax v1.1 documentation + The MathJax.OutputJax Class — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -228,7 +228,7 @@ tag associated with the element jax.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/queue.html b/docs/html/api/queue.html index e10cfa204..7da317896 100644 --- a/docs/html/api/queue.html +++ b/docs/html/api/queue.html @@ -6,13 +6,13 @@ - The MathJax.Callback.Queue Class — MathJax v1.1 documentation + The MathJax.Callback.Queue Class — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -231,7 +231,7 @@ it has been waiting for a command to complete.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/signal.html b/docs/html/api/signal.html index 44270331e..50324909d 100644 --- a/docs/html/api/signal.html +++ b/docs/html/api/signal.html @@ -6,13 +6,13 @@ - The MathJax.Callback.Signal Class — MathJax v1.1 documentation + The MathJax.Callback.Signal Class — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -319,7 +319,7 @@ message is posted to the signal.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/variable.html b/docs/html/api/variable.html index d058aaff9..ea58c0991 100644 --- a/docs/html/api/variable.html +++ b/docs/html/api/variable.html @@ -6,13 +6,13 @@ - The MathJax variable — MathJax v1.1 documentation + The MathJax variable — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • @@ -97,10 +97,10 @@ signals.

    -MathJax.Extensions
    +MathJax.Extension

    Initially empty, this is where extensions can load their code. For example, the tex2jax preprocessor creates -MathJax.Extensions.tex2jax for its code and variables.

    +MathJax.Extension.tex2jax for its code and variables.

    @@ -205,7 +205,7 @@ perform typesetting actions (and is previous | -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • The MathJax API »
  • diff --git a/docs/html/callbacks.html b/docs/html/callbacks.html index beda23173..a8881b229 100644 --- a/docs/html/callbacks.html +++ b/docs/html/callbacks.html @@ -6,13 +6,13 @@ - Using Callbacks — MathJax v1.1 documentation + Using Callbacks — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Synchronizing your code with MathJax »
  • @@ -290,7 +290,7 @@ schedules it to be called in half a second.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Synchronizing your code with MathJax »
  • diff --git a/docs/html/community.html b/docs/html/community.html index 15e6a58cb..0ba51fa2d 100644 --- a/docs/html/community.html +++ b/docs/html/community.html @@ -6,13 +6,13 @@ - The MathJax Community — MathJax v1.1 documentation + The MathJax Community — MathJax v1.1a documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -141,7 +141,7 @@ our previous | -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -264,7 +264,7 @@ is normally loaded on demand.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -486,7 +486,7 @@ when MathJax runs, and browser-dependent erratic behavior will result.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -246,7 +246,7 @@ converting the math images to their original TeX code.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -87,7 +87,7 @@
    ExecuteHook()
    -
    executeHooks()
    +
    ExecuteHooks()
    @@ -154,7 +154,7 @@
    loadError()
    -
    loadHook()
    +
    LoadHook()
    loadTimeout()
    Log()
    @@ -215,7 +215,7 @@
    Set()
    -
    setText()
    +
    setScript()
    Signal()
    SourceElement()
    Startup()
    @@ -288,7 +288,7 @@
  • index
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -146,7 +146,7 @@ formats for mathematical journals, articles, and books.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -121,7 +121,7 @@ MathML that works in all modern browsers.


    -

    This version of the documentation was built June 02, 2011.

    +

    This version of the documentation was built July 12, 2011.

    @@ -179,7 +179,7 @@ MathML that works in all modern browsers.

  • next |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -368,7 +368,7 @@ fonts help page for details).

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -130,7 +130,7 @@ page for more details.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -123,7 +123,7 @@ mathematics on your web pages interactive and dynamic.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -180,7 +180,7 @@ children of mrow or i
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -291,7 +291,7 @@ dynamic as the rest of the page.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -249,7 +249,7 @@ The default is 1.5 seconds.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/HTML-CSS.html b/docs/html/options/HTML-CSS.html index cded40fa7..d3097ac87 100644 --- a/docs/html/options/HTML-CSS.html +++ b/docs/html/options/HTML-CSS.html @@ -6,13 +6,13 @@ - The HTML-CSS output processor — MathJax v1.1 documentation + The HTML-CSS output processor — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -245,7 +245,7 @@ where the tooltip will be placed.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/MMLorHTML.html b/docs/html/options/MMLorHTML.html index 7a99b3d6b..d6792c94d 100644 --- a/docs/html/options/MMLorHTML.html +++ b/docs/html/options/MMLorHTML.html @@ -6,13 +6,13 @@ - The MMLorHTML configuration options — MathJax v1.1 documentation + The MMLorHTML configuration options — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -128,7 +128,7 @@ complicated output generated by MathJax, so its setting is
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/MathML.html b/docs/html/options/MathML.html index e6bcaafa3..0faac4919 100644 --- a/docs/html/options/MathML.html +++ b/docs/html/options/MathML.html @@ -6,13 +6,13 @@ - The MathML input processor — MathJax v1.1 documentation + The MathML input processor — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -117,7 +117,7 @@ spacing would be used (rather than TeX spacing rules).

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/MathMenu.html b/docs/html/options/MathMenu.html index 9606f3096..45cf7ae82 100644 --- a/docs/html/options/MathMenu.html +++ b/docs/html/options/MathMenu.html @@ -6,13 +6,13 @@ - The MathMenu extension — MathJax v1.1 documentation + The MathMenu extension — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -179,7 +179,7 @@ style in a JavaScript object.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/MathZoom.html b/docs/html/options/MathZoom.html index 4a5489fc7..021a73c33 100644 --- a/docs/html/options/MathZoom.html +++ b/docs/html/options/MathZoom.html @@ -6,13 +6,13 @@ - The MathZoom extension — MathJax v1.1 documentation + The MathZoom extension — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -132,7 +132,7 @@ style in a JavaScript object.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/NativeMML.html b/docs/html/options/NativeMML.html index a67d0db4b..2cbc57ee3 100644 --- a/docs/html/options/NativeMML.html +++ b/docs/html/options/NativeMML.html @@ -6,13 +6,13 @@ - The NativeMML output processor — MathJax v1.1 documentation + The NativeMML output processor — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -156,7 +156,7 @@ CSS style in a JavaScript object.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/TeX.html b/docs/html/options/TeX.html index a899cd036..119848cd3 100644 --- a/docs/html/options/TeX.html +++ b/docs/html/options/TeX.html @@ -6,13 +6,13 @@ - The TeX input processor — MathJax v1.1 documentation + The TeX input processor — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -178,7 +178,7 @@ be sufficient for any reasonable equation.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/hub.html b/docs/html/options/hub.html index ad4b0d19c..2642f98ef 100644 --- a/docs/html/options/hub.html +++ b/docs/html/options/hub.html @@ -6,13 +6,13 @@ - The Core Configuration Options — MathJax v1.1 documentation + The Core Configuration Options — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -228,7 +228,7 @@ that act as the defaults for the user’s settings in that menu. The possible values are:

    -zoom: "none"
    +zoom: "None"

    This indicates when typeset mathematics should be zoomed. It can be set to "None", "Hover", "Click", or "Double-Click" to set the zoom trigger.

    @@ -353,7 +353,7 @@ does not cause a default configuration file to be loaded.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/index.html b/docs/html/options/index.html index 2acda7ade..06089da5e 100644 --- a/docs/html/options/index.html +++ b/docs/html/options/index.html @@ -6,13 +6,13 @@ - Configuration Objects — MathJax v1.1 documentation + Configuration Objects — MathJax v1.1a documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -179,7 +179,7 @@ are categorized by the component they affect.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -132,7 +132,7 @@ details on how to represent HTML code in this way.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/mml2jax.html b/docs/html/options/mml2jax.html index 77b38fa3c..a96a6fb08 100644 --- a/docs/html/options/mml2jax.html +++ b/docs/html/options/mml2jax.html @@ -6,13 +6,13 @@ - The mml2jax Preprocessor — MathJax v1.1 documentation + The mml2jax Preprocessor — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -132,7 +132,7 @@ details on how to represent HTML code in this way.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/tex2jax.html b/docs/html/options/tex2jax.html index ec7a48f78..8aa7fcad0 100644 --- a/docs/html/options/tex2jax.html +++ b/docs/html/options/tex2jax.html @@ -6,13 +6,13 @@ - The tex2jax Preprocessor — MathJax v1.1 documentation + The tex2jax Preprocessor — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • @@ -227,7 +227,7 @@ been marked as ignored above.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Configuration Objects »
  • diff --git a/docs/html/output.html b/docs/html/output.html index fbf91f5c1..c27ddda56 100644 --- a/docs/html/output.html +++ b/docs/html/output.html @@ -6,13 +6,13 @@ - MathJax Output Formats — MathJax v1.1 documentation + MathJax Output Formats — MathJax v1.1a documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -231,7 +231,7 @@ exactly what the performance of MathJax in IE9 will be like.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -164,7 +164,7 @@ instructions for these are given via the links below.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -129,7 +129,7 @@ your pages. If you need to adjust the configuration, see
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Using MathJax in popular web platforms »
  • diff --git a/docs/html/platforms/wordpress.html b/docs/html/platforms/wordpress.html index b63114c6b..2a8a3450e 100644 --- a/docs/html/platforms/wordpress.html +++ b/docs/html/platforms/wordpress.html @@ -6,13 +6,13 @@ - Installing MathJax in WordPress — MathJax v1.1 documentation + Installing MathJax in WordPress — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Using MathJax in popular web platforms »
  • @@ -131,7 +131,7 @@ your pages. If you need to adjust the configuration, see
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Using MathJax in popular web platforms »
  • diff --git a/docs/html/queues.html b/docs/html/queues.html index eb52bf5fa..9a8068591 100644 --- a/docs/html/queues.html +++ b/docs/html/queues.html @@ -6,13 +6,13 @@ - Using Queues — MathJax v1.1 documentation + Using Queues — MathJax v1.1a documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Synchronizing your code with MathJax »
  • @@ -319,7 +319,7 @@ finishes everything it has queued when it was loaded. For example,

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Synchronizing your code with MathJax »
  • diff --git a/docs/html/search.html b/docs/html/search.html index 2e1be6d4c..28cabdf6c 100644 --- a/docs/html/search.html +++ b/docs/html/search.html @@ -6,13 +6,13 @@ - Search — MathJax v1.1 documentation + Search — MathJax v1.1a documentation - + @@ -38,7 +38,7 @@
  • index
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -86,7 +86,7 @@
  • index
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -242,7 +242,7 @@ structure and methods of the signal object.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • Synchronizing your code with MathJax »
  • diff --git a/docs/html/start.html b/docs/html/start.html index ae4d15adf..8afd5a9a1 100644 --- a/docs/html/start.html +++ b/docs/html/start.html @@ -6,13 +6,13 @@ - Getting Started — MathJax v1.1 documentation + Getting Started — MathJax v1.1a documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -432,7 +432,7 @@ MathJax, you could visit the previous | -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -143,14 +143,14 @@ pushed into the queue:

    1. Load the extension files:
        -
      • Post the Begin Extension startup signal
      • +
      • Post the Begin Extensions startup signal
      • Load the files from the MathJax.Hub.config.extensions array
          -
        • Most extensions will post a Extension [name] Ready -startup message when they are loaded (where [name] is -the name of the extension)
        • +
        • Most extensions will post a [name] Ready or Extension +[name] Ready startup message when they are loaded (where +[name] is the name of the extension)
      • -
      • Post the End Extension startup signal
      • +
      • Post the End Extensions startup signal
    @@ -237,7 +237,7 @@ complete, however, before 7 will be performed.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -146,7 +146,7 @@ directory for a working example of using signals.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -350,6 +350,7 @@ be loaded automatically when the macro or environment is first used.

    { } ~ +' \ (backslash-space) \! @@ -1354,7 +1355,7 @@ vmatrix
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -115,15 +115,15 @@ find the element jax for the math element on the page, and use its methods to modify and update the mathematics that it displays.

    For example, suppose you have the following HTML in your document

    <div id="MathDiv">
    -  The answer you provided is: ${}$.
    +  The answer you provided is: \({}\).
     </div>
     

    and MathJax has already preprocessed and typeset the mathematics -within dollar signs (it will be blank). A student has typed -something elsewhere on the page, and you want to typeset their answer -in the location of the mathematics that is already there. You could -replace the entire contents of the MathDiv element and call +within the div. A student has typed something elsewhere on the page, +and you want to typeset their answer in the location of the +mathematics that is already there. You could replace the entire +contents of the MathDiv element and call MathJax.Hub.Typeset() as described above, but there is a more efficient approach, which is to ask MathJax for the element jax for the mathematics, and call its method for replacing the formula shown @@ -310,7 +310,7 @@ You typed: ${}$

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -315,7 +315,7 @@ retired in favor of the GitHub site.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »
  • @@ -252,7 +252,7 @@ font menu (since Opera can’t display many of the characters).
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v1.1a documentation »