commit f0a8d82f579ea39341b74b708535430b1e13c20e
parent b6d16ccd10ea808e964a6eea7deae18df4bd6491
Author: Davide P. Cervone <dpvc@union.edu>
Date: Mon, 7 Mar 2011 20:46:57 -0500
Update the html output
Diffstat:
94 files changed, 4202 insertions(+), 1839 deletions(-)
diff --git a/docs/html/CSS-styles.html b/docs/html/CSS-styles.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="Glossary" href="glossary.html" />
<link rel="prev" title="Describing HTML snippets" href="HTML-snippets.html" />
@@ -130,11 +130,6 @@ samples. In particular, the <tt class="docutils literal"><span class="pre">exte
<h4>Next topic</h4>
<p class="topless"><a href="glossary.html"
title="next chapter">Glossary</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/CSS-styles.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/HTML-snippets.html b/docs/html/HTML-snippets.html
@@ -21,10 +21,10 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="CSS Style Objects" href="CSS-styles.html" />
- <link rel="prev" title="Converting to MathJax from jsMath" href="jsMath.html" />
+ <link rel="prev" title="The MathJax Object-Oriented Programming Model" href="api/object.html" />
</head>
<body>
@@ -38,7 +38,7 @@
<a href="CSS-styles.html" title="CSS Style Objects"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="jsMath.html" title="Converting to MathJax from jsMath"
+ <a href="api/object.html" title="The MathJax Object-Oriented Programming Model"
accesskey="P">previous</a> |</li>
<li><a href="index.html">MathJax v1.1 documentation</a> »</li>
</ul>
@@ -122,16 +122,11 @@ This is bold text shown in red
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
- <p class="topless"><a href="jsMath.html"
- title="previous chapter">Converting to MathJax from jsMath</a></p>
+ <p class="topless"><a href="api/object.html"
+ title="previous chapter">The MathJax Object-Oriented Programming Model</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="CSS-styles.html"
title="next chapter">CSS Style Objects</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/HTML-snippets.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
@@ -159,7 +154,7 @@ This is bold text shown in red
<a href="CSS-styles.html" title="CSS Style Objects"
>next</a> |</li>
<li class="right" >
- <a href="jsMath.html" title="Converting to MathJax from jsMath"
+ <a href="api/object.html" title="The MathJax Object-Oriented Programming Model"
>previous</a> |</li>
<li><a href="index.html">MathJax v1.1 documentation</a> »</li>
</ul>
diff --git a/docs/html/_sources/api/ajax.txt b/docs/html/_sources/api/ajax.txt
@@ -35,7 +35,7 @@ Properties
Number of milliseconds to wait for a file to load before
it is considered to have failed to load.
- *Default:* 20 seconds
+ *Default:* 15 seconds
.. describe:: STATUS.OK
@@ -60,6 +60,12 @@ Properties
callbacks that are to be run when they load or timeout, and
additional internal data.
+.. describe:: loadHooks
+
+ An object containing the load hooks for the various files, set up by
+ the :meth:`loadHook()` method, or by the
+ :meth:`MathJax.Hub.Register.LoadHook()` method.
+
Methods
=======
@@ -106,9 +112,9 @@ Methods
file has been completely loaded and initialized. The `file`
parameter is the name of the file that has been loaded. This
routine will cause any callback functions registered for the file
- or included in the :meth:``MathJax.Ajax.Require()`` calls to be
+ or included in the :meth:`MathJax.Ajax.Require()` calls to be
executed, passing them the status or the load
- (`MathJax.Ajax.STATUS.OK`` or ``MathJax.Ajax.STATUS.ERROR``) as
+ (``MathJax.Ajax.STATUS.OK`` or ``MathJax.Ajax.STATUS.ERROR``) as
their last parameter.
:Parameters:
@@ -148,6 +154,18 @@ Methods
- **callback** --- the callback specification
:Returns: the callback object
+.. method:: Preloading(file1[,file2...])
+
+ Used withing combined configuration files to indicate what files are
+ in the configuration file. Marks the files are loading (since there
+ will never be an explicit :meth:`Load()` or :meth:`Require()` call for
+ then), so that load-hooks and other load-related events can be
+ properly processed.
+
+ :Parameters:
+ - **file1, file2, ...** --- the names of the files in the combined file
+ :Returns: ``null``
+
.. method:: Styles(styles[,callback])
Creates a stylesheet from the given style data. `styles` can
diff --git a/docs/html/_sources/api/elementjax.txt b/docs/html/_sources/api/elementjax.txt
@@ -24,7 +24,7 @@ that class.
Class Properties
================
-.. describe:: name
+.. describe:: id
The name of the jax.
@@ -42,11 +42,13 @@ Instance Properties
.. describe:: inputJax
- A reference to the input jax that created the element.
+ A reference to the input jax that created the element. (In the
+ future, this will be changed to the name of the input jax.)
.. describe:: outputJax
- A reference to the output jax that has processed this element.
+ A reference to the output jax that has processed this element. (In
+ the future, this will be changed to the name of the output jax.)
.. describe:: inputID
@@ -61,7 +63,8 @@ Instance Properties
.. describe:: originalText
A string indicating the original input text that was processed for
- this element.
+ this element. (In the future, this may be managed by the input jax
+ rather than ``MathJax.Hub``.)
.. describe:: mimeType
diff --git a/docs/html/_sources/api/html.txt b/docs/html/_sources/api/html.txt
@@ -81,6 +81,17 @@ Methods
- **text** --- the text for the new node
:Returns: the new text node
+.. method:: setText(script,text)
+
+ Sets the contents of the ``script`` element to be the given
+ ``text``, properly taking into account the browser limitations and
+ bugs.
+
+ :Parameters:
+ - **script** --- the script whose content is to be set
+ - **text** --- the text that is to be the script's new content
+ :Returns: ``null``
+
.. describe:: Cookie.Set(name,data)
Creates a MathJax cookie using the ``MathJax.HTML.Cookie.prefix``
@@ -91,7 +102,7 @@ Methods
MathJax.HTML.Cookie.Set("test",{x:42, y:"It Works!"});
- will create a cookie named "mjx:test" that stores the values of
+ will create a cookie named "mjx.test" that stores the values of
``x`` and ``y`` provided in the `data` object. This data can be
retrieved using the :meth:`MathJax.HTML.Cookie.Get()` method
discussed below.
diff --git a/docs/html/_sources/api/hub.txt b/docs/html/_sources/api/hub.txt
@@ -28,7 +28,7 @@ Properties
options and their default values are given in the :ref:`Core
Options <configure-hub>` reference page.
-.. describe:: processUpdateTime: 500
+.. describe:: processUpdateTime: 250
The minimum time (in milliseconds) between updates of the
"Processing Math" message.
@@ -38,6 +38,11 @@ Properties
The hub processing signal (tied to the
:meth:`MathJax.Hub.Register.MessageHook()` method).
+.. describe:: queue
+
+ MathJax's main processing queue. Use :meth:`MathJax.Hub.Queue()` to push
+ callbacks onto this queue.
+
.. describe:: Browser
The name of the browser as determined by MathJax. It will be one
@@ -106,6 +111,15 @@ Methods
- **options** --- object containing options to be set
:Returns: ``null``
+.. describe:: Configured()
+
+ When ``delayStartupUntil`` is specified in the configuration file or
+ in the script that loads ``MathJax.js``, MathJax's startup sequence is
+ delayed until this routine is called. See :ref:`Configuring MathJax
+ <configuration>` for details on how this is used.
+
+ :Returns: ``null``
+
.. describe:: Register.PreProcessor(callback)
Used by preprocessors to register themselves with MathJax so that
diff --git a/docs/html/_sources/api/inputjax.txt b/docs/html/_sources/api/inputjax.txt
@@ -35,7 +35,7 @@ that class.
Properties
==========
-.. describe:: name
+.. describe:: id
The name of the jax.
@@ -47,6 +47,11 @@ Properties
The directory where the jax files are stored (e.g., ``"[MathJax]/jax/input/TeX"``);
+.. describe:: elementJax
+
+ The name of the ElementJax class that this input jax will produce
+ (typically ``mml``, as that is the only ElementJax at the moment).
+
Methods
=======
@@ -54,15 +59,12 @@ Methods
.. Method:: Translate(script)
:noindex:
- This is the main routine called by MathJax when a ``<script>`` of
- the appropriate type is found. The default :meth:`Translate()`
- method simply loads the ``jax.js`` file and returns that callback
- for that load function so that MathJax will know when to try
- the :meth:`Translate()` action again. When the ``jax.js`` file
- loads, it should override the default :meth:`Translate()` with its
- own version that does the actual translation; that way, when the
- second Translate call is made, it will be to the actual
- translation routine rather than the default loader.
+ This is the main routine called by MathJax when a ``<script>`` of the
+ appropriate type is found. The default :meth:`Translate()` method
+ throws an error indicating that :meth:`Translate()` hasn't been
+ redefined, so when the ``jax.js`` file loads, it should override the
+ default :meth:`Translate()` with its own version that does the actual
+ translation.
The translation process should include the creation of an
:ref:`Element Jax <api-element-jax>` that stores the data needed
@@ -84,3 +86,4 @@ Methods
:Parameters:
- **mimetype** --- the MIME-type of the input this jax processes
:Returns: ``null``
+
diff --git a/docs/html/_sources/api/jax.txt b/docs/html/_sources/api/jax.txt
@@ -15,7 +15,7 @@ Unlike most MathJax.Object classes, calling the class object creates a
.. code-block:: javascript
MathJax.InputJax.MyInputJax = MathJax.InputJax({
- name: "MyInputJax",
+ id: "MyInputJax",
version: "1.0",
...
});
@@ -40,7 +40,7 @@ Class Properties
Instance Properties
===================
-.. describe:: name
+.. describe:: id
The name of the jax.
@@ -67,35 +67,41 @@ Instance Properties
Methods
=======
-.. Method:: Translate(script)
+.. Method:: Process(script)
+ :noindex:
- This is the method that the ``MathJax.Hub`` calls when it needs
- the input or output jax to process the given math ``<script>``
- call. Its default action is to start loading the jax's ``jax.js``
- file, and redefine the :meth:`Translate()` method to be the
- :meth:`noTranslate()` method below. The ``jax.js`` file should
- redefine the :meth:`Translate()` method to perform the translation
- operation for the specific jax. For an input jax, it should
- return the `ElementJax` object that it created.
+ This is the method that the ``MathJax.Hub`` calls when it needs the
+ input or output jax to process the given math ``<script>``. Its
+ default action is to start loading the jax's ``jax.js`` file, and
+ redefine itself to simplu return the callback for the laod operation
+ (so that further calls to it will cause the processing to wait for the
+ callback). Once the ``jax.js`` file has loaded, this method is
+ replaced by the jax's :meth:`Translate()` method, so that subsequent calls
+ to :meth:`Process()` will perform the appropriate translation.
:Parameters:
- **script** --- reference to the DOM ``<script>`` object for
the mathematics to be translated
:Returns: an `ElementJax` object, or ``null``
-.. Method:: noTranslate(script)
+.. Method:: Translate(script)
- This is a temporary routine that is used while the ``jax.js`` file
- is loading. It throws an error indicating the the
- :meth:`Translate()` method hasn't been redefined. That way, if
- the ``jax.js`` file failes to load for some reason, you will
- receive an error trying to process mathematics with this input
- jax.
+ This is a stub for a routine that should be defined by the jax's
+ ``jax.js`` file when it is loaded. It should perform the translation
+ action for the specific jax. For an input jax, it should return the
+ `ElementJax` object that it created. The :meth:`Translate()` mehtod is
+ never called directly by MathJax; during the :meth:`loadComplete()`
+ call, this funciton is copied to the :meth:`Process()` method, and is
+ called via that name. The default :meth:`Translate()` method throws an
+ error indicating that the :meth:`Translate()` meth was not been
+ redefined. That way, if the ``jax.js`` file fails to load for some
+ reason, you will receive an error trying to process mathematics with
+ this jax.
:Parameters:
- **script** --- reference to the DOM ``<script>`` object for
the mathematics to be translated
- :Returns: ``null``
+ :Returns: an `ElementJax` object, or ``null``
.. Method:: Register(mimetype)
@@ -136,13 +142,16 @@ Methods
1. Post the "[name] Jax Config" message to the startup signal.
2. Perform the jax's :meth:`Config()` method.
3. Post the "[name] Jax Require" message to the startup signal.
- 4. Load the files from the jax's ``require`` array (which may
- have been modified during the configuration process).
+ 4. Load the files from the jax's ``require`` and
+ ``config.extensions`` arrays.
5. Post the "[name] Jax Startup" message to the startup signal.
6. Perform the jax's :meth:`Startup()` method.
7. Post the "[name] Jax Ready" message to the startup signal.
8. perform the :meth:`MathJax.Ajax.loadComplete()` call for the
``jax.js`` file.
-
+ Note that the configuration process (the :meth:`Config()` call) can
+ modify the ``require`` or ``config.extensions`` arrays to add more
+ files that need to be loaded, and that the :meth:`Startup()` method
+ isn't called until those files are completely loaded.
diff --git a/docs/html/_sources/api/message.txt b/docs/html/_sources/api/message.txt
@@ -66,7 +66,7 @@ Methods
- **message** --- the text to display in the message area
- **n** --- the message id number
- **delay** --- amout of time to display the message
- :Returns: the message id nuber for this message.
+ :Returns: the message id number for this message.
.. method:: Clear(n[,delay])
@@ -78,9 +78,42 @@ Methods
- **delay** --- the delay before removing the message
:Returns: ``null``
+.. method:: Remove()
+
+ This removes the message frame from the window (it will reappear when
+ future messages are set, however).
+
+ :Returns: ``null``
+
+.. method:: File(file)
+
+ This sets the message area to a "Loading *file*" message, where *file*
+ is the name of the file (with ``[MathJax]`` representing the root
+ directory).
+
+ :Parameters:
+ - **file** --- the name of the file being loaded.
+ :Returns: the message id number for the message created.
+
+.. method:: filterText(text,n)
+
+ This method is called on each message before it is displayed. It can
+ be used to modify (e.g., shorten) the various messages before they are
+ displayed. The default action is to check of the ``messageStyle``
+ configuration parameter is ``simple``, and if so, convert loading and
+ processing messages to a simpler form. This method can be overridden
+ to perform other sanitization of the message strings.
+
+ :Parameters:
+ - **text** --- the text of the message to be posted
+ - **n** --- the id number of the message to be posted
+ :Returns: the modified message text
+
.. method:: Log()
Returns a string of all the messages issued so far, separated by
newlines. This is used in debugging MathJax operations.
:Returns: string of all messages so far
+
+
diff --git a/docs/html/_sources/api/outputjax.txt b/docs/html/_sources/api/outputjax.txt
@@ -36,7 +36,7 @@ that class.
Properties
==========
-.. describe:: name
+.. describe:: id
The name of the jax.
@@ -57,16 +57,13 @@ Methods
This is the main routine called by MathJax when an element jax is
to be converted to output. The default :meth:`Translate()`
- method simply loads the ``jax.js`` file and returns that callback
- for that load function so that MathJax will know when to try
- the :meth:`Translate()` action again. When the ``jax.js`` file
- loads, it should override the default :meth:`Translate()` with its
- own version that does the actual translation; that way, when the
- second Translate call is made, it will be to the actual
- translation routine rather than the default loader.
+ method throws an error indicating that :meth:`Translate()` hasn't been
+ redefined, so when the ``jax.js`` file loads, it should override the
+ default :meth:`Translate()` with its own version that does the actual
+ translation.
You should use ``MathJax.Hub.getJaxFor(script)`` to obtain the
- element jax for the given script. The translation process may add
+ element jax for the given script. The translation process may
modify the element jax (e.g., if it has data that needs to be
stored with the jax), and may insert DOM elements into the
document near the jax's ``<script>`` tag.
diff --git a/docs/html/_sources/community.txt b/docs/html/_sources/community.txt
@@ -40,12 +40,12 @@ Issue tracking
==============
Found a bug or want to suggest an improvement? Post it to our `issue tracker
-<http://github.com/mathjax/mathjax/issues>`_. We monitor the tracker closely,
+<http://github.com/mathjax/MathJax/issues>`_. We monitor the tracker closely,
and work hard to respond to problems quickly.
Before you create a new issue, however, please search the issues to see if it
has already been reported. You could also be using an outdated version of
-MathJax, so be sure to :ref:`upgrade your copy <getting-mathjax-svn>` to verify
+MathJax, so be sure to :ref:`upgrade your copy <getting-mathjax-git>` to verify
that the problem persists in the lastest version.
diff --git a/docs/html/_sources/config-files.txt b/docs/html/_sources/config-files.txt
@@ -0,0 +1,192 @@
+.. _common-configurations:
+
+*********************
+Common Configurations
+*********************
+
+MathJax comes with a number of pre-defined configuration files in the
+``MathJax/config`` directory. The ``default.js`` file contains nearly all
+the possible configuration options together with comments explaining them,
+so you can use that file to customize MathJax to your needs. Simply load
+it via
+
+.. code-block:: html
+
+ <script type="text/javascript" src="path-to-MathJax/MathJax.js?config=default"></script>
+
+where ``path-to-MathJax`` is the URL to the MathJax directory on your
+server or hard disk.
+
+The remaining files are combined configuration files that include not just
+configuration parameters but also the files that MathJax would need to
+load for those configurations. This means MathJax will have to load fewer
+files, and since each file access requires establishing connections over
+the network, it can be better to load one larger file than several smaller
+ones. See :ref:`Loading and Configuring MathJax <loading>` for more
+details about how to load configurations, and how to modify the parameters
+for a configuration file.
+
+The following sections describe the contents of the combined configuration
+files. Each comes in two flavors: a standard version and a "full" version.
+The standard version simply defines the output processor(s) that are part
+of the configuration, but doesn't load the code that implements the output
+processor; the full version loads the complete output processors, so
+everything that MathJax needs for the page should be loaded up front, and
+there will be no delay once the page is ready to be processed. To obtain
+the "full" version, add ``-full`` to the end of the configuration file
+name.
+
+
+The ``TeX-AMS-MML_HTMLorMML`` configuration file
+================================================
+
+This configuration file is the most general of the pre-defined
+configurations. It loads all the important MathJax components, including
+the TeX and MathML preprocessors and input processors, the AMSmath,
+AMSsymbols, noErrors, and noUndefined TeX extensions, both the native
+MathML and HTML-with-CSS output processor definitions, and the MathMenu and
+MathZoom extensions. It is equivalent to the following configuration:
+
+.. code-block:: javascript
+
+ MathJax.Hub.Config({
+ config: ["MMLorHTML.js"],
+ jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"],
+ extensions: ["tex2jax.js","mml2jax.js","MathMenu.js","MathZoom.js"],
+ TeX: {
+ extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
+ }
+ });
+
+In addition, it loads the mml Element Jax, the TeX and MathML input jax
+main code (not just the definition files), as well as the `toMathML`
+extension, which is used by the Show Source option in the MathJax
+contextual menu. The full version also loads both the HTML-CSS and
+NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which
+is normally loaded on demand.
+
+See the :ref:`tex2jax configuration <configure-tex2jax>` section for
+other configuration options for the ``tex2jax`` preprocessor, and the
+:ref:`TeX input jax configuration <configure-TeX>` section for options
+that control the TeX input processor.
+See the :ref:`mml2jax configuration <configure-mml2jax>` section for
+other configuration options for the ``mml2jax`` preprocessor, and the
+:ref:`MathML input jax configuration <configure-MathML>` section for
+options that control the MathML input processor.
+See :ref:`MathJax Output Formats <output-formats>` for more
+information on the NativeMML and HTML-CSS output processors. See the
+:ref:`MMLorHTML configuration <configure-MMLorHTML>` section for
+details on the options that control the ``MMLorHTML`` configuration.
+
+
+The ``TeX-AMS_HTML`` configuration file
+================================================
+
+This configuration file is for sites that only use TeX format for their
+mathematics, and that want the output to be as close to TeX output as
+possible. This uses the HTML-CSS output jax (even when the user's browser
+understands MathML). The user can still use the MathJax contextual menu
+to select the NativeMML output jax if they desire.
+
+This file includes all the important MathJax components for TeX input and
+output, including the `tex2jax` preprocessor and TeX input jax, the
+AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, the
+HTML-with-CSS output processor definition, and the MathMenu and MathZoom
+extensions. It is equivalent to the following configuration:
+
+.. code-block:: javascript
+
+ MathJax.Hub.Config({
+ jax: ["input/TeX","output/HTML-CSS"],
+ extensions: ["tex2jax.js","MathMenu.js","MathZoom.js"],
+ TeX: {
+ extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
+ }
+ });
+
+In addition, it loads the mml Element Jax and the TeX input jax main code
+(not just the definition file), as well as the `toMathML` extension, which
+is used by the Show Source option in the MathJax contextual menu. The full
+version also loads the HTML-CSS output jax main code, plus the HTML-CSS
+`mtable` extension, which is normally loaded on demand.
+
+See the :ref:`tex2jax configuration <configure-tex2jax>` section for
+other configuration options for the ``tex2jax`` preprocessor, and the
+:ref:`TeX input jax configuration <configure-TeX>` section for options
+that control the TeX input processor.
+See :ref:`MathJax Output Formats <output-formats>` for more
+information on the HTML-CSS output processor.
+
+
+The ``MML_HTMLorMML`` configuration file
+================================================
+
+This configuration file is for sites that only use MathML format for their
+mathematics. It will use MathML output in browsers where that is
+supported, and HTML-CSS output otherwise. The user can still use the
+MathJax contextual menu to select the other output format if they desire.
+
+This file includes all the important MathJax components for MathML input
+and output, including the `mml2jax` preprocessor and MathML input jax, the
+NativeMML and HTML-CSS output processor definition files, and the MathMenu
+and MathZoom extensions. It is equivalent to the following configuration:
+
+.. code-block:: javascript
+
+ MathJax.Hub.Config({
+ config: ["MMLorHTML.js"],
+ jax: ["input/MathML","output/HTML-CSS","output/NativeMML"],
+ extensions: ["mml2jax.js","MathMenu.js","MathZoom.js"]
+ });
+
+In addition, it loads the mml Element Jax and the MathML input jax main
+code (not just the definition file), as well as the `toMathML` extension,
+which is used by the Show Source option in the MathJax contextual menu.
+The full version also loads both the HTML-CSS and NativeMML output jax main
+code files, plus the HTML-CSS `mtable` extension, which is normally loaded
+on demand.
+
+See the :ref:`mml2jax configuration <configure-mml2jax>` section for
+other configuration options for the ``mml2jax`` preprocessor, and the
+:ref:`MathML input jax configuration <configure-MathML>` section for
+options that control the MathML input processor.
+See :ref:`MathJax Output Formats <output-formats>` for more
+information on the NativeMML and HTML-CSS output processors. See the
+:ref:`MMLorHTML configuration <configure-MMLorHTML>` section for
+details on the options that control the ``MMLorHTML`` configuration.
+
+
+The ``Accessible`` configuration file
+================================================
+
+This configuration file is essentially the same as
+``TeX-AMS-MML_HTMLorMML`` except that it includes configuration that is
+designed for assitive technology, particularly for those with visual
+challenges. It is equivalent to the following configuration:
+
+.. code-block:: javascript
+
+ MathJax.Hub.Config({
+ config: ["MMLorHTML.js"],
+ jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"],
+ extensions: ["tex2jax.js","mml2jax.js","MathMenu.js","MathZoom.js"],
+ TeX: {
+ extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
+ },
+ NativeMML: { showMathMenuMSIE: false },
+ menuSettings: { zoom: "Double-Click" },
+ errorSettings: { message: ["[Math Error]"] }
+ });
+
+This turns off the MathJax contextual Message for Internet Explorer, since
+it can interfere with some screen readers. It also sets the zoom trigger
+to double-click, so that readers can see a larger version of the
+mathematics but double-clicking on any equation.
+
+In addition, it loads the mml Element Jax, the TeX and MathML input jax
+main code (not just the definition files), as well as the `toMathML`
+extension, which is used by the Show Source option in the MathJax
+contextual menu. The full version also loads both the HTML-CSS and
+NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which
+is normally loaded on demand.
+
diff --git a/docs/html/_sources/configuration.txt b/docs/html/_sources/configuration.txt
@@ -6,18 +6,28 @@ Loading and Configuring MathJax
You load MathJax into a web page by including its main JavaScript file
into the page. That is done via a ``<script>`` tag that links to the
-``MathJax.js`` file. Place the following line in the ``<head>``
+``MathJax.js`` file. To do that, place the following line in the ``<head>``
section of your document:
.. code-block:: html
<script type="text/javascript" src="path-to-MathJax/MathJax.js"></script>
-where ``path-to-MathJax`` is replaced by the URL of the MathJax
-directory on your server, or (if you are using MathJax locally rather
-than through a server) the location of that directory on your hard
-disk. For example, if the MathJax directory is at the top level of
-your web server's directory hierarchy, you might use
+where ``path-to-MathJax`` is replaced by the URL of the copy of MathJax
+that you are loading. For example, if you are using the MathJax
+distributed network service, the tag might be
+
+.. code-block:: html
+
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js">
+ </script>
+
+If you have installed MathJax yourself, ``path-to-MathJax`` will be the
+location of MathJax on your server, or (if you are using MathJax locally
+rather than through a server) the location of that directory on your hard
+disk. For example, if the MathJax directory is at the top level of your
+web server's directory hierarchy, you might use
.. code-block:: html
@@ -25,15 +35,29 @@ your web server's directory hierarchy, you might use
to load MathJax.
-Although it is possible to load MathJax from a site other than your
-own web server, there are issues involved in doing so that you need to
-take into consideration. See the :ref:`Notes About Shared Servers
-<cross-domain-linking>` for more details. Please do **not** link to
-the copy of MathJax at ``www.mathjax.org``, as we do not have the
-resources to act as a web service for all the sites on the web that
-would like to display mathematics. If you are able to run MathJax
-from your own server, please do so (this will probably give you better
-response time in any case).
+If you install MathJax on a server in a domain that is different from the
+one containing the page that will load MathJax, then there are issues
+involved in doing so that you need to take into consideration. See the
+:ref:`Notes About Shared Servers <cross-domain-linking>` for more details.
+
+When you load MathJax, it is common to include additional parameters for
+MathJax as part of the URL. These control MathJax's configuration, and are
+discussed in the :ref:`Configuration Objects <configuration>` section. A
+typical invocation of MathJax would be
+
+.. code-block:: html
+
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </script>
+
+which loads MathJax with a configuration file that includes everything you
+need in order to enter mathematics in either TeX, LaTeX, or MathML
+notation, and produces output using MathML if the browser supports that,
+or HTML-with-CSS otherwise. If you **don't** load an explicit
+configuration file, you will need to include an in-line configuration
+block in order to tell MathJax how to read and display the mathematics on
+your pages. See the section below for details.
It is best to load MathJax in the document's ``<head>`` block, but it
is also possible to load MathJax into the ``<body>`` section, if
@@ -51,325 +75,344 @@ been prepared, for example, via a `GreaseMonkey
advanced topic, however; see :ref:`Loading MathJax Dynamically
<ajax-mathjax>` for more details.
+.. _loading-CDN:
-Configuring MathJax
-===================
+Loading MathJax from the CDN
+============================
-There are several ways to configure MathJax, but the easiest is to use
-the ``config/MathJax.js`` file that comes with MathJax. See the
-comments in that file, or the :ref:`configuration details
-<configuration>` section, for explanations of the meanings of the various
-configuration options. You can edit the ``config/MathJax.js`` file to
-change any of the settings that you want to customize. When you
-include MathJax in your page via
+MathJax is now available as a web service from ``cdn.mathjax.org``, so you
+can obtain MathJax from there without needing to install it on your own
+server. The CDN is part of a distributed "cloud" network, so it is
+handled by servers around the world. That means that you should get acces
+to a server geographically near you, for a fast, reliable connection.
-.. code-block:: html
+The CDN hosts the most current version of MathJax, as well as older
+versions, so you can either link to a version that stays up-to-date as
+Mathjax is improved, or you can stay with one of the release versions so
+that you pages always use the same version of MathJax.
- <script type="text/javascript" src="path-to-MathJax/MathJax.js"></script>
+The URL that you use to obtain MathJax determines the version that you
+get. The CDN has the following directory structure:
-it will load ``config/MathJax.js`` automatically as one of its
-first actions.
+.. code-block:: sh
-Alternatively, you can configure MathJax efficiently by calling
-:meth:`MathJax.Hub.Config()` when you include MathJax in your page, as
-follows:
+ mathjax/ # project-name
+ 1.0-latest/
+ 1.1-beta/ # temporary
+ 1.1-latest/ # the 1.1 release with any ciritical patches
+ ...
+ latest/ # the most current version (1.1-latest in this case)
-.. code-block:: html
+Each directory corresponds to an official MathJax release; however,
+hotfixes (urgent bug fixes) will be applied in each release branch as
+necessary, even if new releases are not prepared. In other words,
+``1.1-latest`` will initially point to v1.1, but over time may be updated
+with patches that would correspond to releases that might be numbers 1.1a,
+1.1b, etc., even if such releases are not actually prepared for
+distribution (they likely won't be).
- <script type="text/javascript" src="path-to-MathJax/MathJax.js">
- MathJax.Hub.Config({
- extensions: ["tex2jax.js"],
- jax: ["input/TeX", "output/HTML-CSS"],
- tex2jax: {
- inlineMath: [ ['$','$'], ["\\(","\\)"] ],
- displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
- },
- "HTML-CSS": { availableFonts: ["TeX"] }
- });
- </script>
+We may occasionally introduce directories for betas, as indicated above,
+but they will be temprorary, and will be removed after the official
+release.
-This example includes the ``tex2jax`` preprocessor and configures it
-to use both the standard TeX and LaTeX math delimiters. It uses the
-TeX input processor and the HTML-CSS output processor, and forces the
-HTML-CSS processor to use the TeX fonts rather that other locally
-installed fonts (e.g., :term:`STIX` fonts). See the
-:ref:`configuration options <configuration>` section (or the comments
-in the ``config/MathJax.js`` file) for more information about the
-configuration options that you can include in the
-:meth:`MathJax.Hub.Config()` call. Note that if you configure MathJax
-using this in-line approach, the ``config/MathJax.js`` file is **not**
-loaded.
-
-Finally, if you would like to use several different configuration
-files (like ``config/MathJax.js``, but with different settings in each
-one), you can copy ``config/MathJax.js`` to ``config/MathJax-2.js``,
-or some other convenient name, and use
+To load from a particular release, use the directory for that release.
+For example,
.. code-block:: html
- <script type="text/javascript" src="path-to-MathJax/MathJax.js">
- MathJax.Hub.Config({ config: "MathJax-2.js" });
- </script>
-
-to load the alternative configuration file ``config/MathJax-2.js``
-from the MathJax ``config`` directory. In this way, you can have as
-many distinct configuration files as you need.
-
-
-.. _common-configurations:
-
-Common Configurations
-=====================
-
-The following examples show configurations that are useful for some
-common situations. This is certainly not an exhaustive list, and
-there are variations possible for any of them. Again, the comments in
-the ``config/MathJax.js`` file can help you decide what settings to
-include, even if you are using the in-line configuration method.
+ <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/1.1-latest/MathJax.js"></script>
-The TeX setup
--------------
+will load the stable v1.1 version, even if we release v1.2 or other later
+versions, while
-This example calls the ``tex2jax`` preprocessor to identify
-mathematics in the page by looking for TeX and LaTeX math delimiters.
-It uses ``$...$`` and ``\(...\)`` for in-line mathematics, while
-``$$...$$`` and ``\[...\]`` mark displayed equations. Because dollar
-signs are used to mark mathematics, if you want to produce an actual
-dollar sign in your document, you must "escape" it using a slash:
-``\$``. This configuration also loads the ``AMSmath`` and
-``AMSsymbols`` extensions so that the macros and environments they
-provide are defined for use on the page.
+.. code-block:: html
-.. code-block:: javascript
-
- MathJax.Hub.Config({
- extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
- jax: ["input/TeX","output/HTML-CSS"],
- tex2jax: {
- inlineMath: [['$','$'],["\\(","\\)"]],
- processEscapes: true,
- },
- });
+ <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
-Other extensions that you may consider adding to the `extensions`
-array include: ``TeX/noErrors.js``, which shows the original TeX code
-if an error occurs while processing the mathematics (rather than an
-error message), ``TeX/noUndefined.js``, which shows undefined
-macros names in red (rather than producing an error), and
-``TeX/autobold.js``, which automatically inserts ``\boldsymbol{...}``
-around your mathematics when it appears in a section of your page that
-is in bold. Most of the other TeX extensions are loaded automatically
-when needed, and so do not need to be included explicitly in your
-`extensions` array.
+will always be the most current stable release, so it will go from v1.1 to
+v1.2 autmatically when that is released. Note that all the versions
+available on the CDN are stable versions; the development version is not
+hosted on the CDN.
-See the :ref:`tex2jax configuration <configure-tex2jax>` section for
-other configuration options for the ``tex2jax`` preprocessor, and the
-:ref:`TeX input jax configuration <configure-TeX>` section for options
-that control the TeX input processor.
+The use of ``cdn.mathjax.org`` is governed by its `terms of service
+<http://www.mathjax.org/download/mathjax-cdn-terms-of-service/>`_, so be
+sure to read that before linked to the MathJax CDN server.
-The MathML setup
-----------------
+Configuring MathJax
+===================
-This example calls the ``mml2jax`` preprocessor to identify
-mathematics in the page that is in :term:`MathML` format, which uses
-``<math display="block">`` to indicate displayed equations, and
-``<math display="inline">`` or simply ``<math>`` to mark in-line
-formulas.
+There are two ways to configure MathJax: via a configuration file, or by
+including configuration commands wthin the web page itself. These can be
+used independently, or in combination. For example, you can load a main
+pre-defined configuration file, but include in-line commands to
+adjust the configuration to your needs.
+
+Note that you must use at least one of these two forms of configuration.
+Unlike earlier versions of MathJax, version 1.1 does not load a default
+configuration file. If you have been using version 1.0's
+``config/MathJax.js`` for your configuration, you will need to load that
+configuration file explicitly via a ``config`` parameter, as described
+below.
+
+
+.. _config-files:
+
+Using a configuration file
+==========================
+
+The first way to configure MathJax is to use a configuration file.
+MathJax comes with a number of pre-defined configuration files, which are
+stored in the ``MathJax/config`` directory. Among these are the following
+
+.. describe:: default.js
+
+ A file that contains nearly all the configuration options with comments
+ describing them, which you can edit to suit your needs.
+
+.. describe:: TeX-AMS-MML_HTMLorMML.js
+
+ Allows math to be specified in TeX, LaTeX, or MathML notation, with the
+ `AMSmath` and `AMSsymbols` packages included, producing output using
+ MathML if the browser supports it, and HTML-with-CSS otherwise.
+
+.. describe:: TeX-AMS_HTML.js
+
+ Allows math to be specified in TeX or LaTeX notation (with the
+ `AMSmath` and `AMSsymbols` packages included, and produces output
+ using the HTML-CSS output processor.
+
+.. describe:: MML_HTMLorMML.js
+
+ Allows math to be specified using MathML notation, and produces MathML
+ output if the browser supports it, or HTML-CSS output otherwise.
+
+.. describe:: Accessible.js
+
+ Essentially the same as ``TeX-AMS-MML_HTMLorMML``, but with some
+ settings specified to make MathJax work better with assistive
+ technology (for the visually impaired). This includes setting the
+ zoom trigger to be a double-click, and removing the MathMenu in
+ Internet Explorer (which can interfere with some screen readers).
+
+The first of these is a file that you can edit to suit your needs. It
+contains nearly all the configuration options that MathJax allows, and has
+comments explaining them. The others are what are called `combined
+configuration files`, which not only configure MathJax, but also pre-load the
+various files that the configuration requires. (The contents of these
+files are explained in more detail in the `Common Configurations
+<common-configurations>`_ section.)
+
+Usually, MathJax loads its components only when they are needed, but each
+component will require a separate file to be loaded, and that can cause
+delays before the mathematics is displayed. The combined configuration
+files load the majority of the needed files all as one large file, reducing
+the number of network requests that are needed. That means you will
+probably be getting the componets that MathJax needs faster than you would
+without the combined file, but you may be loading components that are never
+actually used; that is the trade off.
+
+Each of the combined configuration files comes in two flavors: the ones
+listed above, which only configure the output processors but don't include
+the main code, and a "full" version, that also includes the complete
+output processors. For example, with ``TeX-AMS_HTML.js`` and
+``TeX-AMS_HTML-full.js``, the latter includes the complete HTML-CSS output
+processor. The "full" configuration files are substantially larger (on
+the order of 70KB), so you need to decide whether it is worth loading the
+full configuraiton for your pages.
+
+If most of your pages include mathematics, then it is to your advantage to
+load the full version, but if you are including MathJax in a theme file for
+a blog or wiki that only includes mathematics occasionally, then perhaps it
+is better to use the standard configuration instead, in which case the
+output processors are only loaded when they are actually needed, saving the
+loading of 70KB for pages that don't. Of course, if your server is
+configured to compress the files it sends, the difference between the two
+is considerably reduced. Furthermore, most browsers will cache the
+javascript they receive, so the download cost should only occur on the
+first page a user views, so it may be best to use the "full" version after
+all. Note, however, that mobile devices sometimes have limits on the size
+of files that they cache, so they may be forced to download the
+configuration on every page. You need to keep these issues in mind as you
+decide on which configuration to use.
+
+To load a configuration file, use ``config=filename`` (where ``filename``
+is one of the names above without the ``.js``) as a parameter to the URL of
+the ``MathJax.js`` file. For example
-.. code-block:: javascript
+.. code-block:: html
- MathJax.Hub.Config({
- extensions: ["mml2jax.js"],
- jax: ["input/MathML","output/HTML-CSS"]
- });
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </script>
-Note that this will work in HTML files, not just XHTML files (MathJax
-works with both), and that the web page need not be served with any
-special MIME-type. Also note that, unless you are using XHTML rather
-than HTML, you should not include a namespace prefix for your
-``<math>`` tags; for example, you should not use ``<m:math>`` except
-in a file where you have tied the ``m`` namespace to the MathML DTD.
+loads the ``config/TeX-AMS-MML_HTMLorMML.js`` configuration file from the
+MathJax distributed network service.
-See the :ref:`mml2jax configuration <configure-mml2jax>` section for
-other configuration options for the ``mml2jax`` preprocessor, and the
-:ref:`MathML input jax configuration <configure-MathML>` section for
-options that control the MathML input processor.
+You can include more than one configuration file by separating them with
+commas. For example, if you have a locally defined configuration file
+called ``MathJax/config/local/local.js`` that modifies the settings for the
+``TeX-AMS_HML`` configuration, defines some new TeX macros, and so on, you
+can use
+.. code-block:: html
-Both TeX and MathML
--------------------
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML,local/local.js">
+ </script>
-This example provides for both TeX and MathML input in the same file.
-It calls on both the ``tex2jax`` and ``mml2jax`` preprocessors and the
-TeX and MathML input jax to do the job.
+to first load the main configuraiton, then the local modifications.
-.. code-block:: javascript
- MathJax.Hub.Config({
- extensions: ["tex2jax.js", "mml2jax.js"],
- jax: ["input/TeX", "input/MathML", "output/HTML-CSS"],
- });
+Using in-line configuration options
+===================================
-Notice that no ``tex2jax`` configuration section is included, so it
-uses its default options (no single dollar signs for in-line math).
+The second way to configure MathJax is through `in-line configuration`,
+that puts the configuration options within the web page itself. This
+process has changed in version 1.1 to make it compatible with HTML5.
+Earlier versions of MathJax had in-line configuration included within the
+content of the ``<script>`` tag that loads ``MathJax.js``, but HTML5 makes
+it illegal to have content for a script with a ``src`` attribute.
-The majority of the code for the TeX and MathML input processors are
-not loaded until they are actually needed by the mathematics on the
-page, so if this configuration is used on a page that include only
-MathML, the TeX input processor will not be loaded. Thus it is
-reasonably efficient to specify both input processors even if only one
-(or neither one) is used.
+MathJax solves this problem by using separate ``<script>`` tags to perform
+configuration for MathJax. Because MathJax starts its configuration
+process as soon as it is loaded, the configuration script must come
+**before** the script tag that loads ``MathJax.js`` itself. You do this
+by including a ``<script>`` with ``type="text/x-mathjax-config"``, whose
+content will be run when MathJax performs its configuration. Generally,
+this script will include a :meth:`MathJax.Hub.Config()` call to perform
+MathJax configuration, but it can also include other MathJax commands,
+such as registering signal actions, or any JavaScript commands that you
+want. You can have as many such script tags as you want, and MathJax will
+process them in order as they appear in the document.
+For instance,
-TeX input with MathML output
-----------------------------
+.. code-block:: html
-This example configures MathJax to use the ``tex2jax`` preprocessor
-and TeX input processor, but the choice of output format is determined
-by MathJax depending on the capabilities of the user's browser. The
-is performed by the ``MMLorHTML.js`` configuration file that is loaded
-in the `config`` array.
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ extensions: ["tex2jax.js"],
+ jax: ["input/TeX", "output/HTML-CSS"],
+ tex2jax: {
+ inlineMath: [ ['$','$'], ["\\(","\\)"] ],
+ displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
+ processEscapes: true
+ },
+ "HTML-CSS": { availableFonts: ["TeX"] }
+ });
+ </script>
+ <script type="text/javascript" src="path-to-MathJax/MathJax.js">
-.. code-block:: javascript
+This example includes the `tex2jax` preprocessor and configures it to use
+both the standard :term:`TeX` and :term:`LaTeX` math delimiters. It uses
+the `TeX` input processor and the `HTML-CSS` output processor, and forces the
+HTML-CSS processor to use the TeX fonts rather that other locally installed
+fonts (e.g., :term:`STIX` fonts). See the :ref:`configuration options
+<configuration>` section (or the comments in the ``config/default.js``
+file) for more information about the configuration options that you can
+include in the :meth:`MathJax.Hub.Config()` call. Note that this
+configuration does **not** load any pre-defined configuration file.
+
+Note that you can combine in-line configuration with file-based
+configuration, simply include ``text/x-mathjax-config`` scripts as above,
+but also include ``config=filename`` when you load the ``MathJax.js``
+file. For example, the `tex2jax` preprocessor does **not** the TeX
+single-dollar in-line math delimiters by default. You can load one of the
+pre-defined configuration files that include the TeX preprocessor, and use
+an in-line configuration block to enable the single-dollar signs:
- MathJax.Hub.Config({
- config: ["MMLorHTML.js"],
- extensions: ["tex2jax.js"],
- jax: ["input/TeX"]
- });
-
-With this setup, Firefox or Internet Explorer with the `MathPlayer
-plugin <http://www.dessci.com/en/products/mathplayer/>`_ installed
-will use the NativeMML output processor, while all other browsers will
-use the HTML-CSS output processor. Since native MathML support is
-faster than MathJax's HTML-CSS processor, this will mean that the web
-pages will display faster for Firefox and IE than they would
-otherwise. This speed comes at the cost, however, as you are now
-relying on the native MathML support to render the mathematics, and
-that is outside of MathJax's control. There may be spacing or other
-display differences (compared to MathJax's HTML-CSS output) when the
-NativeMML output processor is used.
-
-See :ref:`MathJax Output Formats <output-formats>` for more
-information on the NativeMML and HTML-CSS output processors. See the
-:ref:`MMLorHTML configuration <configure-MMLorHTML>` section for
-details on the options that control the ``MMLorHTML`` configuration.
-
-
-MathML input and output in all browsers
----------------------------------------
-
-This example configures MathJax to look for MathML within your page,
-and to display it using the browser's native MathML support, if
-possible, or its HTML-CSS output if not.
-
-.. code-block:: javascript
-
- MathJax.Hub.Config({
- config: ["MMLorHTML.js"],
- extensions: ["mml2jax.js"],
- jax: ["input/MathML"]
- });
-
-Using this configuration, MathJax finally makes MathML available in
-all modern browsers.
-
-See the :ref:`MMLorHTML configuration <configure-MMLorHTML>` section
-for details on the options that control the ``MMLorHTML``
-configuration file, the :ref:`MathML configuration <configure-MathML>`
-section for the options that control the MathML output processor, and
-the :ref:`mml2jax configuration <configure-mml2jax>` section for the
-options that control the ``mml2jax`` preprocessor.
-
-
-.. _configuration:
-
-Configuration Objects
-=====================
-
-The various components of MathJax, including its input and output
-processors, its preprocessors, its extensions, and the MathJax core,
-all can be configured through the ``config/MathJax.js`` file, or via a
-:meth:`MathJax.Hub.Config()` call (indeed, if you look closely, you
-will see that ``config/MathJax.js`` is itself one big call to
-:meth:`MathJax.Hub.Config()`). Anything that is in
-``config/MathJax.js`` can be included in-line to configure MathJax.
-
-The structure that you pass to :meth:`MathJax.Hub.Config()` is a
-JavaScript object that includes name-value pairs giving the names of
-parameters and their values, with pairs separated by commas. Be
-careful not to include a comma after the last value, however, as some
-browsers (namely Internet Explorer) will fail to process the
-configuration if you do.
-
-The MathJax components, like the TeX input processor, have their own
-sections in the configuration object, labeled by the component name,
-and using an configuration object as its value. The object is itself
-a configuration object made up of name-value pairs that give the
-configuration options for the component.
+.. code-block:: html
-For example,
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ tex2jax: {
+ inlineMath: [ ['$','$'], ["\\(","\\)"] ],
+ processEscapes: true
+ }
+ });
+ </script>
+ <script type="text/javascript" src="path-to-MathJax/MathJax.js?config=TeX-AMS_HTML">
+ </script>
-.. code-block:: javascript
- MathJax.Hub.Config({
- showProcessingMessages: false,
- jax: ["input/TeX", "output/HTML-CSS"],
- TeX: {
- TagSide: "left",
- Macros: {
- RR: '{\\bf R}',
- bold: ['{\\bf #1}',1]
- }
- }
- });
+.. _delayStartupUntil:
+
+Configuring MathJax after it is loaded
+======================================
+
+Because MathJax begins its configuration process immediately after it is
+loaded (so that it can start loading files as quickly as it can), the
+configuration blocks for MathJax must come before ``MathJax.js`` is loaded,
+so they will be available to MathJax when it starts up. There are
+situations, however, when you might want to put off configuring MathJax
+until later in the page.
+
+One such situation is when you have a site that loads MathJax as part of a
+theme or template, but want to be able to modify the configuration on
+specific pages of the site. To accomplish this, you need to ask MathJax
+to delay its startup configuration until some later time. MathJax uses
+the ``delayStartupUntil`` parameter to control the timing of the startup
+sequence. By default, it is set to ``none``, meaning there is no delay
+and MathJax starts configuration right away.
+
+You can set ``delayStartupUntil=onload`` in order to prevent MathJax from
+continuing its startup process until the page's onLoad handler fires. This
+allows MathJax to find the ``text/x-mathjax-config`` blocks that occur
+anywhere on the page, not just the ones that appear above the ``<script>``
+that loads ``MathJax.js``. It also means that MathJax will not begin
+loading any of the files that it needs until then as well, which may delay
+the displaying of your mathematics, since the onLoad handler doesn't
+execute until all the images and other media are available. (If you have
+used a combined configuration file, however, it already includes all the
+main files that MathJax needs, so there is not much loss in delaying the
+startup.)
+
+You can set ``delayStartupUntil=configured`` in order to delay the startup
+configuration until the :meth:`MathJax.Hub.Configured()` method is
+called. This allows you to delay startup until later on the page, but
+then restart MathJax configuration process as soon as possible rather than
+waiting for the entire page to load. For example, you could use
-is a configuration that includes two settings for the MathJax Hub (one
-for `showProcessingMessages` and one of the `jax` array), and a
-configuration object for the TeX input processor. The latter includes
-a setting for the TeX input processor's `TagSide` option (to set tags
-on the left rather than the right) and a setting for `Macros`, which
-defines new TeX macros (in this case, two macros, one called ``\RR``
-that produces a bold "R", and one called ``\bold`` that puts is
-argument in bold face).
+.. code-block:: html
-The ``config/MathJax.js`` file is another example that shows nearly
-all the configuration options for all of MathJax's components.
+ <script type="text/javascript"
+ src="path-to-MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML&delayStartupUntil=configured">
+ </script>
+in your theme's header file, and
-Configuration Options by Component
-==================================
+.. code-block:: html
-The individual options are explained in the following sections, which
-are categorized by the component they affect.
+ <script type="text/javascript">
+ MathJax.Hub.Configured()
+ </script>
-.. toctree::
- :maxdepth: 1
+in its footer, so that MathJax will delay setting up until the footer is
+reached, but will not have to wait until images and other files are
+laoded. If you have ``text/x-mathjax-config`` script tags within the main
+body of the document, MathJax will read and process those before
+continuing its startup. In this way you can use a default configuration
+that can be modified on a page-by-page basis.
- The core options <options/hub>
-.. toctree::
- :maxdepth: 1
+Details of the MathJax configuration process
+============================================
- The tex2jax preprocessor options <options/tex2jax>
- The mml2jax preprocessor options <options/mml2jax>
- The jsMath2jax preprocessor options <options/jsMath2jax>
+Since there are a number of different ways to configure MathJax, it is
+important to know how they interact. The configuration process is the
+following:
-.. toctree::
- :maxdepth: 1
+1. Process any configuration file explicitly specified as a script parameter.
+2. Process the in-line script body (deprecated), if present.
+3. If delayed startup is requested, wait for the indicated signal.
+4. Process ``text/x-mathjax-config`` config blocks.
+5. Process any config files queued in the configuration's `config` array
+ by earlier config code.
- The TeX input processor options <options/TeX>
- The MathML input processor options <options/MathML>
- The HTML-CSS output processor options <options/HTML-CSS>
- The NativeMML output processor options <options/NativeMML>
- The MMLorHTML configuration options <options/MMLorHTML>
-
-.. toctree::
- :maxdepth: 1
+Note that ``text/x-mathjax-config`` script blocks must either precede the
+``MathJax.js`` script element, or startup must be delayed. Otherwise, blocks
+that follow the ``MathJax.js`` script element may or may not be available
+when MathJax runs, and browser-dependent erratic behavior will result.
- The MathMenu options <options/MathMenu>
- The MathZoom options <options/MathZoom>
- The FontWarnings options <options/FontWarnings>
-
diff --git a/docs/html/_sources/dynamic.txt b/docs/html/_sources/dynamic.txt
@@ -20,9 +20,7 @@ handler yourself, to let it know that it is OK to typeset the
mathematics on the page. You accomplish this by calling the
:meth:`MathJax.Hub.Startup.onload()` method as part of your MathJax
startup script. To do this, you will need to give MathJax an in-line
-configuration, so you will not be able to use the
-``config/MathJax.js`` file (though you can add it to your in-line
-configuration's `config` array).
+configuration.
Here is an example of how to load and configure MathJax dynamically:
@@ -31,7 +29,7 @@ Here is an example of how to load and configure MathJax dynamically:
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
- script.src = "/MathJax/MathJax.js"; // use the location of your MathJax
+ script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js";
var config = 'MathJax.Hub.Config({' +
'extensions: ["tex2jax.js"],' +
@@ -45,13 +43,12 @@ Here is an example of how to load and configure MathJax dynamically:
document.getElementsByTagName("head")[0].appendChild(script);
})();
-Be sure to set the ``src`` to the correct URL for your copy of
-MathJax. You can adjust the ``config`` variable to your needs, but be
-careful to get the commas right. The ``window.opera`` test is because
+You can adjust the ``config`` variable to your needs, but be careful to get
+the commas right. The ``window.opera`` test is because some versions of
Opera doesn't handle setting ``script.text`` properly, while Internet
Explorer doesn't handle setting the ``innerHTML`` of a script tag.
-Here is a version that uses the ``config/MathJax.js`` file to
+Here is a version that uses the ``config=filename`` method to
configure MathJax:
.. code-block:: javascript
@@ -59,10 +56,9 @@ configure MathJax:
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
- script.src = "/MathJax/MathJax.js"; // use the location of your MathJax
+ script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full";
- var config = 'MathJax.Hub.Config({ config: "MathJax.js" }); ' +
- 'MathJax.Hub.Startup.onload();';
+ var config = 'MathJax.Hub.Startup.onload();';
if (window.opera) {script.innerHTML = config}
else {script.text = config}
@@ -71,13 +67,12 @@ configure MathJax:
})();
Note that the **only** reliable way to configure MathJax is to use an
-in-line configuration of the type discussed above. You should **not**
-call :meth:`MathJax.Hub.Config()` directly in your code, as it will
-not run at the correct time --- it will either run too soon, in which
-case ``MathJax`` may not be defined and the function will throw an
-error, or it will run too late, after MathJax has already finished its
-configuration process, so your changes will not have the desired
-effect.
+in-line configuration block of the type discussed above. You should
+**not** call :meth:`MathJax.Hub.Config()` directly in your code, as it will
+not run at the correct time --- it will either run too soon, in which case
+``MathJax`` may not be defined and the function will throw an error, or it
+will run too late, after MathJax has already finished its configuration
+process, so your changes will not have the desired effect.
MathJax and GreaseMonkey
@@ -97,8 +92,7 @@ Note, however, that most browsers don't allow you to insert a script
that loads a ``file://`` URL into a page that comes from the web (for
security reasons). That means that you can't have your GreaseMonkey
script load a local copy of MathJax, so you have to refer to a
-server-based copy. In the scripts below, you need to insert the URL
-of a copy of MathJax from your own server.
+server-based copy. The MathJax CDN works nicely for this.
----
@@ -122,12 +116,8 @@ IE+MathPlayer.
(document.getElementsByTagNameNS == null ? false :
(document.getElementsByTagNameNS("http://www.w3.org/1998/Math/MathML","math").length > 0))) {
var script = document.createElement("script");
- script.src = "http://www.yoursite.edu/MathJax/MathJax.js"; // put your URL here
- var config = 'MathJax.Hub.Config({' +
- 'extensions:["mml2jax.js"],' +
- 'jax:["input/MathML","output/HTML-CSS"]' +
- '});' +
- 'MathJax.Hub.Startup.onload()';
+ script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full";
+ var config = 'MathJax.Hub.Startup.onload()';
if (window.opera) {script.innerHTML = config} else {script.text = config}
document.getElementsByTagName("head")[0].appendChild(script);
}
@@ -153,29 +143,25 @@ converting the math images to their original TeX code.
//
// Replace the images with MathJax scripts of type math/tex
//
- var images = document.getElementsByTagName('img');
+ var images = document.getElementsByTagName('img'), count = 0;
for (var i = images.length - 1; i >= 0; i--) {
var img = images[i];
if (img.className === "tex") {
var script = document.createElement("script"); script.type = "math/tex";
if (window.opera) {script.innerHTML = img.alt} else {script.text = img.alt}
- img.parentNode.replaceChild(script,img);
+ img.parentNode.replaceChild(script,img); count++;
}
}
- //
- // Load MathJax and have it process the page
- //
- var script = document.createElement("script");
- script.src = "http://www.yoursite.edu/MathJax/MathJax.js"; // put your URL here
- var config = 'MathJax.Hub.Config({' +
- 'config: ["MMLorHTML.js"],' +
- 'extensions:["TeX/noErrors.js","TeX/noUndefined.js",' +
- '"TeX/AMSmath.js","TeX/AMSsymbols.js"],' +
- 'jax:["input/TeX"]' +
- '});' +
- 'MathJax.Hub.Startup.onload()';
- if (window.opera) {script.innerHTML = config} else {script.text = config}
- document.getElementsByTagName("head")[0].appendChild(script);
+ if (count) {
+ //
+ // Load MathJax and have it process the page
+ //
+ var script = document.createElement("script");
+ script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full";
+ var config = 'MathJax.Hub.Startup.onload()';
+ if (window.opera) {script.innerHTML = config} else {script.text = config}
+ document.getElementsByTagName("head")[0].appendChild(script);
+ }
}
**Source**: `mathjax_wikipedia.user.js <_static/mathjax_wikipedia.user.js>`_
diff --git a/docs/html/_sources/index.txt b/docs/html/_sources/index.txt
@@ -15,6 +15,8 @@ Basic Usage
Getting Started with MathJax <start>
Installing and Testing MathJax <installation>
Loading and Configuring MathJax <configuration>
+ Common MathJax Configurations <config-files>
+ MathJax Configuration Options <options/index>
Using MathJax in Web Platforms <platforms/index>
.. toctree::
@@ -30,6 +32,19 @@ Basic Usage
The MathJax Community <community>
+.. _upgrading-MathJax:
+
+Upgrading MathJax
+=================
+
+.. toctree::
+ :maxdepth: 1
+
+ What's New in MathJax v1.1 <whats-new>
+ Migrating from MathJax v1.0 to v1.1 <upgrade>
+ Converting to MathJax from jsMath <jsMath>
+
+
.. _advanced-topics:
Advanced Topics
@@ -49,10 +64,6 @@ Advanced Topics
Details of the MathJax API<api/index>
-.. toctree::
- :maxdepth: 1
-
- Converting to MathJax from jsMath <jsMath>
Reference Pages
===============
@@ -66,6 +77,12 @@ Reference Pages
* :ref:`Search <search>`
+* `User Help Pages <http://www.mathjax.org/help/user>`_:
+
+ + `MathJax Font Help <http://www.mathjax.org/help/fonts>`_
+ + `MathJax Contextual Menu <http://www.mathjax.org/help/menu>`_
+ + `MathJax Zoom Feature <http://www.mathjax.org/help/zoom>`_
+
--------
This version of the documentation was built |today|.
diff --git a/docs/html/_sources/installation.txt b/docs/html/_sources/installation.txt
@@ -4,6 +4,12 @@
Installing and Testing MathJax
******************************
+The easiest way to use MathJax is to link directly to the MathJax
+distributed network service (see :ref:`Using the MathJax CDN
+<mathjax-CDN>`). In that case, there is no need to install MathJax
+yourself, and you can begin using MathJax right away; skip this document on
+installation and go directly to :ref:`Configuring MathJax <loading>`.
+
MathJax can be loaded from a public web server or privately from your hard drive
or other local media. To use MathJax in either way, you will need to obtain a
copy of MathJax and its font package. There are three ways to do this: via
@@ -18,11 +24,11 @@ Obtaining MathJax via Git
The easiest way to get MathJax and keep it up to date is to use the `Git
<http://git-scm.com/>`_ version control system to access our `GitHub repository
-<http://github.com/mathjax/mathjax>`_. Use the commands
+<http://github.com/mathjax/mathjax>`_. Use the command
.. code-block:: sh
- git clone git://github.com/mathjax/MathJax.git mathjax
+ git clone git://github.com/mathjax/MathJax.git MathJax
to obtain and set up a copy of MathJax. Note that there is no longer
a ``fonts.zip`` file, and that the ``fonts`` directory is now part of
@@ -32,7 +38,7 @@ Whenever you want to update MathJax, you can now use
.. code-block:: sh
- cd mathjax
+ cd MathJax
git remote show origin
to check if there are updates to MathJax (this will print several
@@ -41,21 +47,22 @@ date or out of date). If MathJax needs updating, use
.. code-block:: sh
- cd mathjax
+ cd MathJax
git pull origin
to udpate your copy of MathJax to the current release version. If you
keep MathJax updated in this way, you will be sure that you have the
latest bug fixes and new features as they become available.
-This gets you the current development copy of MathJax, which is the
-"bleeding-edge" version that contains all the latest changes to
-MathJax. At times, however, these may be less stable than the
-"release" version. If you prefer to use the most stable version (that
-may not include all the latest patches and features), use ``git tag
--l`` to see all versions and use ``git checkout <tag_name>`` to
-checkout that version of MathJax. When you want to upgrade to a new
-release, you will need to repeat this for the latest release tag.
+This gets you the current development copy of MathJax, which is the version
+that contains all the latest changes to MathJax. Although we try to make
+sure this version is a stable and usable version of MathJax, it is under
+active development, and at times it may be less stable than the "release"
+version. If you prefer to use the most stable version (that may not
+include all the latest patches and features), use ``git tag -l`` to see all
+versions and use ``git checkout <tag_name>`` to checkout that version of
+MathJax. When you want to upgrade to a new release, you will need to
+repeat this for the latest release tag.
.. _getting-mathjax-svn:
@@ -66,11 +73,11 @@ Obtaining MathJax via SVN
If you are more comfortable with the `subversion
<http://subversion.apache.org/>`_ source control system, you may want
to use GitHub's ``svn`` service to obtain MathJax. If you want to get the
-latest revision using ``svn``, use the commands
+latest revision using ``svn``, use the command
.. code-block:: sh
- svn checkout http://svn.github.com/mathjax/MathJax.git mathjax
+ svn checkout http://svn.github.com/mathjax/MathJax.git MathJax
to obtain and set up a copy of MathJax. Note that there is no longer
a ``fonts.zip`` file, and that the ``fonts`` directory is now part of
@@ -80,7 +87,7 @@ Whenever you want to update MathJax, you can now use
.. code-block:: sh
- cd mathjax
+ cd MathJax
svn status -u
to check if there are updates to MathJax. If MathJax needs updating,
@@ -88,19 +95,20 @@ use
.. code-block:: sh
- cd mathjax
+ cd MathJax
svn update
to udpate your copy of MathJax to the current release version. If you
keep MathJax updated in this way, you will be sure that you have the
latest bug fixes and new features as they become available.
-This gets you the current development copy of MathJax, which is the
-"bleeding-edge" version that contains all the latest changes to
-MathJax. At times, however, these may be less stable than the
-"release" version. If you prefer to use one of the tagged releases
-instead, then either use ``git`` as described above, or one of the
-archive files as described below. You can use
+This gets you the current development copy of MathJax, which is the version
+that contains all the latest changes to MathJax. Although we try to make
+sure this version is a stable and usable version of MathJax, it is under
+active development, and at times it may be less stable than the "release"
+version. If you prefer to use one of the tagged releases instead, then
+either use ``git`` as described above, or one of the archive files as
+described below. You can use
.. code-block:: sh
@@ -134,10 +142,19 @@ let you refer to the main MathJax file as ``/MathJax/MathJax.js`` from
within any page on your server.
From the `MathJax GitHub download link
-<http://github.com/mathjax/mathjax/>`_ (the big download button at the
+<http://github.com/mathjax/mathjax/>`_ (the download button at the
right), you can also select the ``Download .tar.gz`` or ``Download
-.zip`` buttons to get a copy of the current "bleeding-edge" version of
-MathJax that contains all the latest changes and bug-fixes.
+.zip`` buttons to get a copy of the current development version of
+MathJax that contains all the latest changes and bug-fixes.
+
+If a packaged release recevies any important updates, then those updates
+will be part of the `branch` for that version. The link to the ``.zip``
+file in the download list will be the original release version, not the
+patched version. To obtain the patched version, use the `Branches` drop
+down menu (at the far left of the menus within the page) to select the the
+release branch, and then use the downlaod button and the ``Downlaod
+.tar.gz`` or ``Download .zip`` button to get the latest patched version of
+that release.
Testing your installation
@@ -156,8 +173,7 @@ properly. If you have installed MathJax on a server, use the web
address for those files rather than opening them locally. When you
view the ``index.html`` file, you should see (after a few moments) a
message that MathJax appears to be working. If not, you should check
-that the files have been transferred to the server completely, that
-the fonts archive has been unpacked in the correct location, and that
+that the files have been transferred to the server completely, and that
the permissions allow the server to access the files and folders that
are part of the MathJax directory (be sure to verify the MathJax
folder's permissions as well). Checking the server logs may help
@@ -177,29 +193,27 @@ a different site. For example, a departmental server at
installation at ``www.yourcollege.edu`` rather than installing a
separate copy on the departmental machine. MathJax can certainly
be loaded from another server, but there is one imporant caveat ---
-Firefox's same-origin security policy for cross-domain scripting.
-
-Firefox’s interpretation of the same-origin policy is more strict than
-most other browsers, and it affects how fonts are loaded with the
-`@font-face` CSS directive. MathJax uses this directive to load
-web-based math fonts into a page when the user doesn't have them
-installed locally on their own computer. Firefox's security policy,
-however, only allows this when the fonts come from the same server as
-the web page itself, so if you load MathJax (and hence its web fonts)
-from a different server, Firefox won't be able to access those web
-fonts. In this case, MathJax will pause while waiting for the font to
-download (which will never happen) and will time out after about 15
-seconds for each font it tries to access. Typically that is three or
-four fonts, so your Firefox users will experience a minute or so
-delay before mathematics is displayed, and then it will probably
-display incorrectly because the browser doesn't have access to the
-correct fonts.
+Firefox's and IE9's same-origin security policy for cross-domain scripting.
+
+Firefox's interpretation of the same-origin policy is more strict than most
+other browsers, and it affects how fonts are loaded with the `@font-face`
+CSS directive. MathJax uses this directive to load web-based math fonts
+into a page when the user doesn't have them installed locally on their own
+computer. Firefox's security policy, however, only allows this when the
+fonts come from the same server as the web page itself, so if you load
+MathJax (and hence its web fonts) from a different server, Firefox won't be
+able to access those web fonts. In this case, MathJax will pause while
+waiting for the font to download (which will never happen); it will time
+out after about 5 seconds and switch to image fonts as a fallback.
+Similarly, IE9 has a similar same-origin policy in its `IE9 standards
+mode`, so it exhibits this same behavior.
There is a solution to this, however, if you manage the server where
MathJax is installed, and if that server is running the `Apache web
server <http://www.apache.org/>`_. In the remote server's
``MathJax/fonts/HTML-CSS/TeX/otf`` folder, create a file called
-``.htaccess`` that contains the following lines: ::
+``.htaccess`` that contains the following lines:
+::
<FilesMatch "\.(ttf|otf|eot)$">
<IfModule mod_headers.c>
@@ -207,18 +221,17 @@ server <http://www.apache.org/>`_. In the remote server's
</IfModule>
</FilesMatch>
-and make sure the permissions allow the server to read this file.
-(The file's name starts with a period, which causes it to be an
-"invisible" file on unix-based operating systems. Some systems,
-particularly graphic user interfaces, may not allow you to create such
-files, so you might need to use the command-line interface to
-accomplish this.)
+and make sure the permissions allow the server to read this file. (The
+file's name starts with a period, which causes it to be an "invisible" file
+on unix-based operating systems. Some systems, particularly those with
+graphical user interfaces, may not allow you to create such files, so you
+might need to use the command-line interface to accomplish this.)
-This file should make it possible for pages at other sites to load
-MathJax from this server in such a way that Firefox will be able to
-download the web-based fonts. If you want to restrict the sites that
-can access the web fonts, change the ``Access-Control-Allow-Origin``
-line to something like::
+This file should make it possible for pages at other sites to load MathJax
+from this server in such a way that Firefox and IE9 will be able to
+download the web-based fonts. If you want to restrict the sites that can
+access the web fonts, change the ``Access-Control-Allow-Origin`` line to
+something like::
Header set Access-Control-Allow-Origin "http://www.math.yourcollege.edu"
@@ -231,7 +244,7 @@ for more details.
.. _ff-local-fonts:
-Forefox and Local Fonts
+Firefox and local fonts
=======================
Firefox's same-origin security policy affects its ability to load
@@ -252,3 +265,28 @@ containing the page that uses MathJax. This is an unfortunate
restriction, but it is a limitiation imposed by Firefox's security
model that MathJax can not circumvent. Currently, this is not a
problem for other browsers.
+
+One solution to this problem is to install the MathJax fonts locally, so
+that Firefox will not have to use web-based fonts in the first place. To
+do that, either install the `STIX fonts <http://stixfonts.org>`_, or copy
+the fonts from ``MathJax/fonts/HTML-CSS/TeX/otf`` into your systems fonts
+directory and restart your browser (see the `MathJax fonts help page
+<http://www.mathjax.org/help/fonts>`_ for details).
+
+
+IE9 and remote fonts
+====================
+
+IE9's same-origin policy affects its ability to load web-based fonts, as
+described above. This has implications not ony to cross-domain loading of
+MathJax, but also to the case where you view a local page (with a
+``file://`` URL) that accesses MathJax from a remote site, like the MathJax
+CDN service. In this case, IE9 does **not** honor the
+``Access-Control-Allow-Origin`` setting of the remote server (as it would
+if the web page came from an ``http://`` URL), and so it **never** allows the
+font to be accessed.
+
+One solution to this problem is to install the MathJax fonts locally so
+that MathJax doesn't have to use web-based fonts in the first place. Your
+best bet is to install the `STIX fonts`_ on your system (see the `MathJax
+fonts help page`_ for details).
diff --git a/docs/html/_sources/jsMath.txt b/docs/html/_sources/jsMath.txt
@@ -11,21 +11,39 @@ processing the mathematics within the webpage once it has been loaded
in the browser by a user viewing your web pages. If you are using
jsMath with its ``tex2math`` preprocessor, then switching to MathJax
should be easy, and is simply a matter of configuring MathJax
-appropriately. See the section on :ref:`Configuring MathJax
-<configuration>` for details about loading and configuring MathJax.
+appropriately. See the section on :ref:`Loading and Configuring MathJax
+<loading>` for details.
On the other hand, if you are using jsMath's ``<span
class="math">...</span>`` and ``<div class="math">...</div>`` tags to
mark the mathematics in your document, then you should use MathJax's
``jsMath2jax`` preprocessor when you switch to MathJax. To do this,
include ``"jsMath2jax.js"`` in the `extensions` array of your
-configuration, with the `jax` array set to include ``"input/TeX"``.
+configuration, with the `jax` array set to include ``"input/TeX"``. For
+example,
-.. code-block:: javascript
+.. code-block:: html
- extensions: ["jsMath2jax.js"],
- jax: ["input/TeX", ...]
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ extensions: ["jsMath2jax.js"]
+ });
+ </script>
+ <script
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML">
+ </script>
+
+would load the ``jsMath2jax`` preprocessor, along with a configuration
+file that processes TeX input and produces HTML-with-CSS output.
There are a few configuration options for ``jsMath2jax``, which you
-can find in the ``config/MathJax.js`` file, or in the :ref:`jsMath
+can find in the ``config/default.js`` file, or in the :ref:`jsMath
configuration options <configure-jsMath2jax>` section.
+
+If you are generating your jsMath documents programmatically, it would be
+better to convert from generating the jsMath ``<span>`` and ``<div>`` tags
+to producing the corresponding MathJax ``<script>`` tags. You would use
+``<script type="math/tex">`` in place of ``<span class="math">`` and
+``<script type="math/tex; mode=display">`` in place of ``<div
+class="math">``. See the section on :ref:`How mathematics is stored in the
+page <mathjax-script-tags>` for more details.
diff --git a/docs/html/_sources/mathml.txt b/docs/html/_sources/mathml.txt
@@ -5,7 +5,7 @@ MathJax MathML Support
**********************
The support for :term:`MathML` in MathJax consists of three parts: the
-`mml2jax` preprocessor, the MathML input processor, and the NativeMML
+`mml2jax` preprocessor, the `MathML` input processor, and the `NativeMML`
output processor. The first of these looks for ``<math>`` tags within
your document and marks them for later processing by MathJax. The
second converts the MathML to the internal format used by MathJax, and
@@ -34,9 +34,9 @@ any of the other setup issues that make using native MathML
difficult. MathJax handles the setup and properly marks the
mathematics so that the browser will render it as MathML. In
addition, MathJax provides its contextual menu for the MathML, which
-lets the user zoom the mathematics for easier reading, get the copy
+lets the user zoom the mathematics for easier reading, get and copy
the source markup, and so on, so there is added value to using MathJax
-even whith a pure MathML workflow.
+even with a pure MathML workflow.
MathML in HTML pages
diff --git a/docs/html/_sources/model.txt b/docs/html/_sources/model.txt
@@ -50,6 +50,8 @@ and it also avoids the conflict between the use of the less-than sign,
an HTML tag).
+.. _mathjax-script-tags:
+
How mathematics is stored in the page
=====================================
diff --git a/docs/html/_sources/options/HTML-CSS.txt b/docs/html/_sources/options/HTML-CSS.txt
@@ -30,6 +30,12 @@ would set the ``preferredFont`` option to the :term:`STIX` fonts.
factor. The user can also adjust this value using the contextual
menu item associated with the typeset mathematics.
+.. describe:: minScaleAdjust: 50
+
+ This gives a minimum scale (as a percent) for the scaling used my
+ MathJax to match the equation to the surrounding text. This will
+ prevent MathJax from making the mathematics too small.
+
.. describe:: availableFonts: ["STIX","TeX"]
This is a list of the fonts to look for on a user's computer in
diff --git a/docs/html/_sources/options/MathMenu.txt b/docs/html/_sources/options/MathMenu.txt
@@ -20,7 +20,7 @@ options, include a ``MathMenu`` section in your
would set the ``delay`` option to 600 milliseconds.
-.. describe:: delay: 400
+.. describe:: delay: 150
This is the hover delay for the display (in milliseconds) for
submenus in the contextual menu: when the mouse is over a submenu
diff --git a/docs/html/_sources/options/TeX.txt b/docs/html/_sources/options/TeX.txt
@@ -65,3 +65,17 @@ to be defined within the TeX input processor.
would ask the TeX processor to define two new macros: ``\RR``,
which produces a bold-face "R", and ``\bold{...}``, which takes one
parameter and set it in the bold-face font.
+
+.. describe:: MAXMACROS: 10000
+
+ Because a definition of the form ``\def\x{\x} \x`` would cause MathJax
+ to loop infinitely, the `MAXMACROS` constant will limit the nuber of
+ macro substitutions allowed in any expression processed by MathJax.
+
+.. describe:: MAXBUFFER: 5*1024
+
+ Because a definition of the form ``\def\x{\x aaa} \x`` would loop
+ infinitely, and at the same time stack up lots of a's in MathJax's
+ equation buffer, the `MAXBUFFER` constant is used to limit the size of
+ the string being processed by MathJax. It is set to 5KB, which should
+ be sufficient for any reasonable equation.
+\ No newline at end of file
diff --git a/docs/html/_sources/options/hub.txt b/docs/html/_sources/options/hub.txt
@@ -132,7 +132,11 @@ behavior of MathJax. They are given with their default values.
configuration, styles, jax, and so on) as soon as it can. If you
expect to be doing additional configuration on the page, however,
you may want to have it wait until the page's onload hander is
- called. If so, set this to ``"onload"``.
+ called. If so, set this to ``"onload"``. You can also set this to
+ ``"configured"``, in which case, MathJax will delay its startup until
+ you explicitly call :meth:`MathJax.Hub.Configured()`. See
+ :ref:`Configuring MathJax after it is loaded <delayStartupUntil>` for more
+ details.
.. describe:: skipStartupTypeset: false
@@ -207,3 +211,10 @@ behavior of MathJax. They are given with their default values.
on :ref:`CSS style objects <css-style-objects>` for details on
how these are specified in JavaScript.
+.. describe:: v1.0-compatible: true
+
+ This controls whether MathJax issues the warning about not having an
+ explicit configuration in the event that the `jax` array is empty
+ after configuration is complete. If you really intend that array to
+ be empty, set this flag to ``false``. Note that setting this to false
+ does **not** cause a default configuration file to be loaded.
+\ No newline at end of file
diff --git a/docs/html/_sources/options/index.txt b/docs/html/_sources/options/index.txt
@@ -0,0 +1,91 @@
+.. _configuration:
+
+*********************
+Configuration Objects
+*********************
+
+The various components of MathJax, including its input and output
+processors, its preprocessors, its extensions, and the MathJax core,
+all can be configured through the ``config/default.js`` file, or via a
+:meth:`MathJax.Hub.Config()` call (indeed, if you look closely, you
+will see that ``config/default.js`` is itself one big call to
+:meth:`MathJax.Hub.Config()`). Anything that is in
+``config/default.js`` can be included in-line to configure MathJax.
+
+The structure that you pass to :meth:`MathJax.Hub.Config()` is a
+JavaScript object that includes name-value pairs giving the names of
+parameters and their values, with pairs separated by commas. Be
+careful not to include a comma after the last value, however, as some
+browsers (namely Internet Explorer) will fail to process the
+configuration if you do.
+
+The MathJax components, like the TeX input processor, have their own
+sections in the configuration object, labeled by the component name,
+and using a configuration object as its value. The object is itself
+a configuration object made up of name-value pairs that give the
+configuration options for the component.
+
+For example,
+
+.. code-block:: javascript
+
+ MathJax.Hub.Config({
+ showProcessingMessages: false,
+ jax: ["input/TeX", "output/HTML-CSS"],
+ TeX: {
+ TagSide: "left",
+ Macros: {
+ RR: '{\\bf R}',
+ bold: ['{\\bf #1}',1]
+ }
+ }
+ });
+
+is a configuration that includes two settings for the MathJax Hub (one
+for `showProcessingMessages` and one of the `jax` array), and a
+configuration object for the TeX input processor. The latter includes
+a setting for the TeX input processor's `TagSide` option (to set tags
+on the left rather than the right) and a setting for `Macros`, which
+defines new TeX macros (in this case, two macros, one called ``\RR``
+that produces a bold "R", and one called ``\bold`` that puts is
+argument in bold face).
+
+The ``config/MathJax.js`` file is another example that shows nearly
+all the configuration options for all of MathJax's components.
+
+
+Configuration Options by Component
+==================================
+
+The individual options are explained in the following sections, which
+are categorized by the component they affect.
+
+.. toctree::
+ :maxdepth: 1
+
+ The core options <hub>
+
+.. toctree::
+ :maxdepth: 1
+
+ The tex2jax preprocessor options <tex2jax>
+ The mml2jax preprocessor options <mml2jax>
+ The jsMath2jax preprocessor options <jsMath2jax>
+
+.. toctree::
+ :maxdepth: 1
+
+ The TeX input processor options <TeX>
+ The MathML input processor options <MathML>
+ The HTML-CSS output processor options <HTML-CSS>
+ The NativeMML output processor options <NativeMML>
+ The MMLorHTML configuration options <MMLorHTML>
+
+.. toctree::
+ :maxdepth: 1
+
+ The MathMenu options <MathMenu>
+ The MathZoom options <MathZoom>
+ The FontWarnings options <FontWarnings>
+
+
diff --git a/docs/html/_sources/output.txt b/docs/html/_sources/output.txt
@@ -10,9 +10,18 @@ Currently, MathJax can render math in two ways:
- Using a browser's native MathML support.
These are implemented by the `HTML-CSS` and `NativeMML` output
-processors. You select which one you want to use by including either
-``"output/HTML-CSS"`` or ``"output/NativeMML"`` in the `jax` array of
-your MathJax configuration. For example
+processors.
+
+If you are using one of the combined configuration files, then this will
+select one of these output processors for you. If the config file ends in
+``_HTML``, then it is the HTML-CSS output processor, and if it ends in
+``_HTMLorMML``, then the NativeMML output processor will be chosen if the
+browser supports it, otherwise HTML-CSS output will be used.
+
+If you are performing your own in-line or file-based configuration, you
+select which one you want to use by including either ``"output/HTML-CSS"``
+or ``"output/NativeMML"`` in the `jax` array of your MathJax configuration.
+For example
.. code-block:: javascript
@@ -25,7 +34,7 @@ The HTML-CSS output processor produces high-quality output in all
major browsers, with results that are consistent across browsers and
operating systems. This is MathJax's primary output mode. It's major
advantage is its quality and consistency; it's drawback is that it is
-slower that the NativeMML mode at rendering the mathematics. (The
+slower than the NativeMML mode at rendering the mathematics. (The
HTML-CSS processor has not yet been optimized for speed, so you can
expect some improvement in the future. Note that IE8 in "IE8
standards mode" is an order of magnitude slower than any other browser
@@ -41,20 +50,19 @@ MathML. Opera has some built-in support for MathML that works well
with simple equations, but fails with more complex formulas, so we
don't recommend using the NativeMML output processor with Opera. Safari,
Chrome, Konqueror, and most other browsers don't support MathML
-natively.
+natively, but may in the future, since MathML is part of the HTML5
+specification.
-The advantage of the NativeMML output Processor is its speed, since
-native MathML support is much faster than using complicated HTML and
-CSS to lay out mathematics via an interpreted language like JavaScript
-(as the HTML-CSS output processor does). The disadvantage is that you
-are dependent on the browser's MathML implementation for your
+The advantage of the NativeMML output Processor is its speed, since native
+MathML support is much faster than using complicated HTML and CSS to lay
+out mathematics, as the HTML-CSS output processor does. The disadvantage
+is that you are dependent on the browser's MathML implementation for your
rendering, and these vary in quality of output and completeness of
-implementation. MathJax may rely on features that are not available
-in some renderers (for example, Firefox's MathML support does not
-implement some of the named widths, such as
-``negativethinmathspace``). The results using the NativeMML output
-processor may have spacing or other rendering problems that are
-outside of MathJax's control.
+implementation. MathJax may rely on features that are not available in
+some renderers (for example, Firefox's MathML support does not implement
+some of the named widths, such as ``negativethinmathspace``). The results
+using the NativeMML output processor may have spacing or other rendering
+problems that are outside of MathJax's control.
Automatic Selection of the Output Processor
===========================================
@@ -62,11 +70,16 @@ Automatic Selection of the Output Processor
Since not all browsers support MathML natively, it would be unwise to
choose the NativeMML output processor unless you are sure of your
audience's browser capabilities. MathJax can help with that, however,
-since there is a special configuration file that will choose between
-NativeMML and HTML-CSS depending on the browser in use. To invoke it,
-add ``"MMLorHTML.js"`` to your configurations `config` array, and **do
-not** include an output processor in your `jax` array; MathJax will
-fill that in for you based on the abilities of your user's browser.
+since a number of its combined configuration files will select NativeMML
+output when the browser supports it, and HTML-CSS output otherwise. These
+are the configuration files that end in ``_HTMLorMML``.
+
+If you are doing your own configuration, there is a special configuration
+file that you can include that will choose between NativeMML and HTML-CSS
+depending on the browser in use. To invoke it, add ``"MMLorHTML.js"`` to
+your configurations `config` array, and **do not** include an output
+processor in your `jax` array; MathJax will fill that in for you based on
+the abilities of your user's browser.
.. code-block:: javascript
@@ -74,18 +87,34 @@ fill that in for you based on the abilities of your user's browser.
jax: ["input/TeX"]
You can customize which choice to make on a browser-by-browser basis
-or a global basis. See the ``config/MathJax.js`` file or the
-:ref:`Configuring MathJax <configuration>` section for futher
-details.
+or a global basis. See the ``config/default.js`` file or the
+:ref:`Configuring MMLorHTML <configure-MMLorHTML>` section for futher
+details. As an example, this configuration tells MathJax to use HTML-CSS
+output rather than native MathML support for Firefox:
+
+.. code-block:: html
+
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ MMLorHTML: { prefer: { Firefox: "HTML" } }
+ });
+ </script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </script>
+
+With this configuration, MathML output will be used only for IE with the
+MathPlayer plugin (Firefox is the only other browser to have native MathML
+support that is sufficient for use with MathJax). Note, however, that a
+user can employ the MathJax contectual menu to select the other renderer if
+he or she wishes.
MathJax produces MathML that models the underlying mathematics as best
it can, rather than using complicated hacks to improve output for a
particular MathML implementation. When you make the choice to use the
NativeMML output processor, you are making a trade-off: gaining speed
at the expense of quality and reliability, a decision that should not
-be taken lightly. Note, however, that a user can employ the MathJax
-contectual menu to select the other other renderer if he or she
-wishes.
+be taken lightly.
.. _html-css-with-ie8:
@@ -93,16 +122,16 @@ wishes.
HTML-CSS with IE8
=================
-Internet Explorer 8 has at least eight different rendering modes in
-which can operate, and that are triggered by the `DOCTYPE` of the
-document being viewed. Its "quirks" mode is its fastest mode, and its
-"IE8 standards" mode is its slowest. This is the mode triggered by
-strict HTML document types, and since most modern content management
-systems now include a `DOCTYPE` that activates "standards" mode, IE8
-will operate in its slowest manner. This is particularly apparent
-when MathJax is used, since IE8 in standards mode runs 20 to 30 times
-slower than it does in its IE7 emulation mode, and 60 times slower
-than in quirks mode.
+Internet Explorer 8 has at least eight different rendering modes in which
+it can operate, and that are triggered by the `DOCTYPE` of the document
+being viewed. Its "quirks" mode is its fastest mode, and its "IE8
+standards" mode is its slowest. This is the mode triggered by strict HTML
+document types, and since most modern content management systems now
+include a `DOCTYPE` that activates "standards" mode, IE8 will operate in
+its slowest manner. This is particularly apparent when MathJax is used,
+since IE8 in standards mode runs 20 to 30 times slower than it does in its
+IE7 emulation mode, and 60 times slower than in quirks mode, on the sample
+equations page in ``test/sample.html``.
Most users find this speed reduction unacceptable when there is much
mathematics on the page. To overcome this problem, you may wish to
@@ -124,3 +153,7 @@ described above to select NativeMML output when possible, and request
that your users install the `MathPlayer plugin
<http://www.dessci.com/en/products/mathplayer/>`_, which will render
the mathematics much more quickly.
+
+It appears that IE9 in IE9 standards mode may perform better than IE8, but
+since IE9 is still in beta testing as of this writing, we have yet to see
+exactly what the performance of MathJax in IE9 will be like.
diff --git a/docs/html/_sources/platforms/index.txt b/docs/html/_sources/platforms/index.txt
@@ -4,6 +4,20 @@
Using MathJax in popular web platforms
======================================
+MathJax plugins are available for a growing number of wikis, blogs, and
+other content-management systems. These include WordPress, Blogger,
+Sphinx, TiddlyWiki, and MathEL-Wiki. A list of these is available in the
+`web applications and integrations
+<http://www.mathjax.org/community/mathjax-in-use/#web-apps>`_ list of the
+`MathJax web site <http://www.mathjax.org>`_.
+
+If the program you are using is not one of these, you may still be able to
+use MathJax by modifying the theme or template for your wiki or blog.
+
+
+Using MathJax in a Theme File
+=============================
+
Most web-based content-management systems include a theme or template
layer that determines how the pages look, and that loads information
common to all pages. Such theme files provide one popular way to
@@ -16,12 +30,11 @@ you.
To enable MathJax in your web platform, add the line::
- <script type="text/javascript" src="path-to-MathJax/MathJax.js"></script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
-(where ``path-to-MathJax`` is the web-address of the main MathJax
-directory for your server) either just before the ``</head>`` tag in
-your theme file, or at the end of the file if it contains no
-``</head>``.
+either just before the ``</head>`` tag in your theme file, or at the end of
+the file if it contains no ``</head>``.
The theme files for various popular platforms are:
diff --git a/docs/html/_sources/platforms/movable-type.txt b/docs/html/_sources/platforms/movable-type.txt
@@ -4,9 +4,6 @@
Using MathJax in Movable Type
=============================
-These instructions assume you already have placed the MathJax files on
-your server (see :ref:`Installing and Testing MathJax <installation>`).
-
1. Open Moveable Type Admin interface for the site on which you want to enable
MathJax.
@@ -25,17 +22,17 @@ your server (see :ref:`Installing and Testing MathJax <installation>`).
.. code-block:: html
- <script type="text/javascript" src="path-to-MathJax/MathJax.js"></script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </script>
- where ``path-to-MathJax`` is replaced by the web-address of the
- main MathJax dorectory on your server.
+ to load MathJax from our distributed netowrk service.
.. image:: ../images/mt_head.png
-5. Save the file. This should enable MathJax, so you should be able
- to start adding mathematical content to your pages. Use the
- ``config/MathJas.js`` file in the MathJax directory to configure
- MathJax to your needs (see :ref:`Configuring MathJax
- <configuration>` for details).
+5. Save the file. This will enable MathJax with both TeX and MathML
+ input, so you should be able to start adding mathematical content to
+ your pages. If you need to adjust the configuraiton, see
+ :ref:`Configuring MathJax <loading>` for more details.
diff --git a/docs/html/_sources/platforms/wordpress.txt b/docs/html/_sources/platforms/wordpress.txt
@@ -4,8 +4,9 @@
Installing MathJax in WordPress
===============================
-These instructions assume you already have placed the MathJax files on
-your server (see :ref:`Installing MathJax <installation>`).
+Note that there is a `WordPress plugin for MathJax
+<http://wordpress.org/extend/plugins/mathjax-latex/>`_, so that may be a
+better choice than editing the theme directly.
1. Open the WordPress admin interface.
@@ -28,15 +29,14 @@ your server (see :ref:`Installing MathJax <installation>`).
.. code-block:: html
- <script type="text/javascript" src="path-to-MathJax/MathJax.js"></script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </script>
just before that. Otherwise, insert the same code at the very
- bottom of the file. Here, ``path-to-MathJax`` should be replaced
- by the web-address of the main MathJax directory on your server,
- e.g., ``src="/mathjax/MathJax.js"``.
+ bottom of the file.
-4. Save the file. This should enable MathJax, so you should be able to
- start adding mathematical content to your pages. Use the
- ``config/MathJas.js`` file in the MathJax directory to configure
- MathJax to your needs (see :ref:`Configuring MathJax
- <configuration>` for details).
+4. Save the file. This will enable MathJax with both TeX and MathML
+ input, so you should be able to start adding mathematical content to
+ your pages. If you need to adjust the configuraiton, see
+ :ref:`Configuring MathJax <loading>` for more details.
diff --git a/docs/html/_sources/start.txt b/docs/html/_sources/start.txt
@@ -5,8 +5,63 @@ Getting Started
***************
MathJax allows you to include mathematics in your web pages, either
-using TeX and LaTeX notation, or as MathML. To use MathJax, you will
-need to do the following things:
+using TeX and LaTeX notation, or as MathML, and you can even use both
+in the same document.
+
+There are two ways to access MathJax: the easiest way is to use the
+copy of MathJax available from our distributed network service at
+``cdn.mathjax.org``, but you can also download and install a copy of
+MathJax on your own server, or for use locally on your own hard disk
+(with no need for network access). Both of these are described below,
+with links to more detailed explanations. This page gives the
+quickest and easiest ways to get MathJax up and running on your web
+site, but you may want to read the details in order to customize the
+setup for your pages.
+
+.. _mathjax-CDN:
+
+Using the MathJax Content Delivery Network (CDN)
+================================================
+
+To use MathJax from our server, you need to do two things:
+
+1. Link MathJax into the web pages that are to include mathematics.
+
+2. Put mathematics into your web pages so that MathJax can display
+ it.
+
+You accomplish the first step by putting
+
+.. code-block:: html
+
+ <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+
+into the ``<head>`` block of your document. (It can also go in the
+``<body>`` if necessary, but the head is to be preferred.) This will
+load the latest version of MathJax from the distributed server, and
+configure it to recognize mathematics in both TeX and MathML notation,
+and ask it to generate its output using MathML if the browser supports
+that, and otherwise use HTML-with-CSS to display the mathematics.
+This is the most general configuration, and should suffice for most
+people's needs. Other configurations are available, however, and you
+can also provide additional configuration parameters to taylor one of
+the confiogurations to your needs. More details can be found in the
+:ref:`Loading and Configuring MathJax <loading>` instructions.
+
+The use of ``cdn.mathjax.org`` is governed by its `terms of service
+<http://www.mathjax.org/download/mathjax-cdn-terms-of-service/>`_, so be
+sure to read that before linked to the MathJax CDN server.
+
+To see how to enter mathematics in your web pages, see `Putting
+mathematics in a web page`_ below.
+
+
+Installing Your Own Copy of MathJax
+===================================
+
+We recommend using the CDN service if you can, but you can also install
+MathJax on your own server, or locally on your own hard disk. To do
+so you will need to do the following things:
1. Obtain a copy of MathJax and make it available on your server.
@@ -17,23 +72,18 @@ need to do the following things:
4. Put mathematics into your web pages so that MathJax can display
it.
-Each of these steps is described briefly below, with links to more
-detailed explanations. This page gives the quickest and easiest ways
-to get MathJax up and running on your web site, but you may want to
-read the details in order to customize the setup for your pages.
-
Obtaining and Installing MathJax
-================================
+--------------------------------
The easiest way to set up MathJax is to obtain the v1.1 archive from
the `MathJax download page <http://www.mathjax.org/download/>`_ (you
-should obtain a file names something like
-``mathjax-MathJax-v1.0-X-XXXXXXXX.zip``, where the X's are
+should obtain a file named something like
+``mathjax-MathJax-v1.1-X-XXXXXXXX.zip``, where the X's are
random-looking letters and numbers). This archive includes both the
MathJax code and the MathJax webfonts, so it is the only file you
-need. (This is different from the beta releases, which had the fonts
-separate from the rest of the code).
+need. Note that this is different from earlier releases, which had
+the fonts separate from the rest of the code.
Unpack the archive and place the resulting MathJax folder onto your
web server at a convenient location where you can include it into your
@@ -44,56 +94,61 @@ from within any page on your server.
Note: While this is the easiest way to set up MathJax initially, there
is a better way to do it if you want to be able to keep your copy of
-MathJax up-to-date easily. That uses the `Git <http://git-scm.com/>`_
-version control system, and is described in the :ref:`Installing
-MathJax <getting-mathjax-git>` document. If you prefer using
-`Subversion <http://subversion.apache.org/>`_, you can also use that
-to get a copy of MathJax (see :ref:`Installing MathJax via SVN
+MathJax up-to-date. That uses the `Git <http://git-scm.com/>`_ version
+control system, and is described in the :ref:`Installing MathJax
+<getting-mathjax-git>` document. If you prefer using `Subversion
+<http://subversion.apache.org/>`_, you can also use that to get a copy
+of MathJax (see :ref:`Installing MathJax via SVN
<getting-mathjax-svn>`).
Once you have MathJax set up on your server, you can test it using the
files in the ``MathJax/test`` directory. Load them in your browser
using its web address rather than opening them locally (i.e., use an
``http://`` URL rather than a ``file://`` URL). When you view the
-``index.html`` file, after a few moments you should see a message that
-MathJax appears to be working. If not, check that the files have been
-transferred to the server completely and that the permissions allow
-the server to access the files and folders that are part of the
-MathJax directory. (Be sure to verify the MathJax folder's permissions
-as well.) Check the server log files for any errors that pertain to
-the MathJax installation; this may help locate problems in the
-permission or locations of files.
+``index.html`` file, after a few moments you should see a message
+indicating that MathJax appears to be working. If not, check that the
+files have been transferred to the server completely and that the
+permissions allow the server to access the files and folders that are
+part of the MathJax directory. (Be sure to verify the MathJax
+folder's permissions as well.) Check the server log files for any
+errors that pertain to the MathJax installation; this may help locate
+problems in the permission or locations of files.
-Configuring MathJax
-===================
+Configuring your copy of MathJax
+--------------------------------
When you include MathJax into your web pages as described below, it
-will load the file ``config/MathJax.js`` (i.e., the file named
-``MathJax.js`` in the ``config`` folder of the main ``MathJax``
-folder). This file contains the configuration parameters that
-control how MathJax operates. There are comments in it that
-explain each of the parameters, and you can edit the file to suit
-your needs.
-
-The default settings are appropriate for pages that use TeX as the
-input language, but you might still want to adjust some settings; for
-example, you might want to include some additional extensions such as
-the ``AMSmath`` and ``AMSsymbols`` extensions. The comments in the
-file should help you do this, but more detailed instructions are
-included in the :ref:`Configuring MathJax <configuration>` document.
-There are also ways to configure MathJax other than by using the
-``config/MathJax.js`` file; these are descibed on that page as well.
-
-
-Linking MathJax into a web page
-===============================
+will load the file ``config/TeX-AMS-MML_HTMLorMML.js`` (i.e., the file
+named ``TeX-AMS-MML_HTMLorMML.js`` in the ``config`` folder of the
+main ``MathJax`` folder). This file preloads all the most comply-used
+components of MathJax, allowing it to process mathematics that is in
+the TeX or LaTeX format, or in MathML notation. It will produce
+output in MathML form if the user's browser supports that, and will use
+HTML-with-CSS to render the mathematics otherwise.
+
+There are a number of other prebuilt configuration files that you can
+choose from as well, or you could use the ``config/default.js`` file and
+customize the settings yourself. The combined configuration files are
+described more fully in :ref:`Common Configurations
+<common-configurations>`, and the configuration options are described in
+:ref:`Configuration Options <configuration>`.
+
+Note: The configuration process has changed in MathJax v1.1, so if you have
+existing pages that use MathJax, you may need to modify the tag that
+loads MathJax so that is conforms with the new configuration process.
+See :ref:`Installing and Configuring MathJax <installation>` for more
+details.
+
+
+Linking your copy of MathJax into a web page
+--------------------------------------------
You can include MathJax in your web page by putting
.. code-block:: html
- <script type="text/javascript" src="path-to-MathJax/MathJax.js"></script>
+ <script type="text/javascript" src="path-to-MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
in your document's ``<head>`` block. Here, ``path-to-MathJax`` should
be replaced by the URL for the main MathJax directory, so if you have
@@ -102,7 +157,7 @@ site, you could use
.. code-block:: html
- <script type="text/javascript" src="/MathJax/MathJax.js"></script>
+ <script type="text/javascript" src="/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
to load MathJax in your page. For example, your page could look like
@@ -111,32 +166,31 @@ to load MathJax in your page. For example, your page could look like
<html>
<head>
...
- <script type="text/javascript" src="/MathJax/MathJax.js"></script>
+ <script type="text/javascript" src="/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</head>
<body>
...
</body>
</html>
-Although it is possible to load MathJax from a site other than your
-own web server, there are issues involved in doing so that you need to
-take into consideration. See the :ref:`Notes About Shared Servers
-<cross-domain-linking>` for more details. Please do **not** link to
-the copy of MathJax at ``www.mathjax.org``, as we do not have the
-resources to act as a web service for all the sites on the web that
-would like to display mathematics. If you are able to run MathJax
-from your own server, please do so (this will probably give you better
-response time in any case).
+If you have installed MathJax on a server that is in a different
+domain from the one serving the page that loads MathJax, be sure to
+read the :ref:`Notes About Shared Servers <cross-domain-linking>` for
+more details. In that case, you may wish to consider using the
+:ref:`MathJax CDN <mathjax-cdn>` rather than installing your own copy
+of MathJax.
Putting mathematics in a web page
=================================
-To put mathematics in your web page, you can use either TeX and LaTeX
-notation, or MathML notation (or both); the configuration file tells
-MathJax which you want to use, and how you plan to indicate the
-mathematics when you are using TeX notation. The following sections
-tell you how to use each of these formats.
+To put mathematics in your web page, you can use either :term:`TeX`
+and :term:`LaTeX` notation or :term:`MathML` notation or both within
+the same page; the MathJax configuration tells MathJax which you want
+to use, and how you plan to indicate the mathematics when you are
+using TeX notation. The configuration file used in the examples above
+tells MathJax to look for both TeX and MathML notation within your
+pages. These two formats are described in more detail below.
.. _tex-and-latex-input:
@@ -144,21 +198,18 @@ tell you how to use each of these formats.
TeX and LaTeX input
-------------------
-To process mathematics that is written in :term:`TeX` or :term:`LaTeX`
-format, include ``"input/TeX"`` in your configuration's `jax` array,
-and add ``"tex2jax.js"`` to the `extensions` array so that MathJax
-will look for TeX-style math delimiters to identify the mathematics on
-the page.
-
-.. code-block:: javascript
-
- extensions: ["tex2math.js"],
- jax: ["input/TeX", "output/HTML-CSS"]
-
-Note that the default math delimiters are ``$$...$$`` and ``\[...\]``
-for displayed mathematics, and ``\(...\)`` for in-line mathematics.
-In particular, the ``$...$`` in-line delimiters are **not** used by
-default. That is because dollar signs appear too often in
+Mathematics that is written in :term:`TeX` or :term:`LaTeX` format is
+indicated using *math delimiters* that surround the mathematics,
+telling MathJax what part of your page represents mathematics and what
+is normal text. There are two types of equations: ones that occur
+within a paragraph (in-line mathematics), and larger equations that
+appear separated from the rest of the text on lines by themselves
+(displayed mathematics).
+
+The default math delimiters are ``$$...$$`` and ``\[...\]`` for
+displayed mathematics, and ``\(...\)`` for in-line mathematics. Note
+in particular that the ``$...$`` in-line delimiters are **not** used
+by default. That is because dollar signs appear too often in
non-mathematical settings, which could cause some text to be treated
as mathematics unexpectedly. For example, with single-dollar
delimiters, "... the cost is $2.50 for the first one, and $2.00 for
@@ -167,38 +218,60 @@ one, and" to be treated as mathematics since it falls between dollar
signs. For this reason, if you want to use single-dollars for in-line
math mode, you must enable that explicitly in your configuration:
-.. code-block:: javascript
+.. code-block:: html
- tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
+ });
+ </script>
+ <script type="text/javascipt" src="path-to-mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
-See the ``config/MathJax.js`` file, or the :ref:`tex2jax configuration
+See the ``config/default.js`` file, or the :ref:`tex2jax configuration
options <configure-tex2jax>` page, for additional configuration
-parameters that you can specify for the ``tex2jax`` preprocessor.
+parameters that you can specify for the `tex2jax` preprocessor,
+which is the component of MathJax that identifies TeX notation within
+the page). See the :ref:`TeX and LaTeX <TeX-support>` page for
+more on MathJax's support for TeX.
-Here is a complete sample page containing TeX mathematics (which
-assumes that ``config/MathJax.js`` is configured as described above):
+Here is a complete sample page containing TeX mathematics (also available
+in the ``test/sample-tex.html`` file):
.. code-block:: html
+ <!DOCTYPE html>
<html>
<head>
<title>MathJax TeX Test Page</title>
- <script type="text/javascript" src="/MathJax/MathJax.js"></script>
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
+ </script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </script>
</head>
<body>
- When \(a \ne 0\), there are two solutions to \(ax^2 + bx + c = 0\) and they are
+ When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</body>
</html>
-There are a number of extensions for the TeX input processor that you
-might want to add to the `extensions` array. These include:
+Since the TeX notation is part of the text of the page, there are some
+caveats that you must keep in mind when you enter your mathematics.
+In particular, you need to be careful about the use of less-than
+signs, since those are what the browser uses to indicate the start of
+a tag in HTML. Putting a space on both sides of the less-than sign
+should be sufficient, but see :ref:`TeX and LaTeX support
+<TeX-support>` for details.
+
+There are a number of extensions for the TeX input processor that are
+loaded by the ``TeX-AMS-MML_HTMLorMML`` configuration. These include:
- `TeX/AMSmath.js`, which defines the AMS math environments and
macros,
- `TeX/AMSsymbols.js`, which defines the macros for the symbols in
- the msam10 and msbm10 fonts,
+ the `msam10` and `msbm10` fonts,
- `TeX/noErrors.js`, which shows the original TeX code rather than
an error message when there is a problem processing the TeX, and
@@ -206,34 +279,16 @@ might want to add to the `extensions` array. These include:
- `TeX/noUndefined.js`, which prevents undefined macros from
producing an error message, and instead shows the macro name in red.
-For example,
-
-.. code-block:: javascript
-
- extensions: ["tex2math.js","TeX/noErrors.js","TeX/noUndefined.js",
- "TeX/AMSmath.js","TeX/AMSsymbols.js"]
-
-loads all four extensions, in addition to the ``tex2math``
-preprocessor.
+Other extensions may be loaded automatically when needed.
MathML input
------------
-To process mathematics written in :term:`MathML`, include
-``"input/MathML"`` in your configuration's `jax` array, and add
-``"mml2jax.js"`` to the `extensions` array so that MathJax will
-locate the ``<math>`` elements in the page automatically.
-
-.. code-block:: javascript
-
- extensions: ["mml2jax.js"],
- jax: ["input/MathML", "output/HTML-CSS"]
-
-With this configuration, you would mark your mathematics using
-standard ``<math>`` tags, where ``<math display="block">`` represents
-displayed mathematics and ``<math display="inline">`` or just
-``<math>`` represents in-line mathematics.
+For mathematics written in :term:`MathML` notation, you mark your
+mathematics using standard ``<math>`` tags, where ``<math
+display="block">`` represents displayed mathematics and ``<math
+display="inline">`` or just ``<math>`` represents in-line mathematics.
Note that this will work in HTML files, not just XHTML files (MathJax
works with both), and that the web page need not be served with any
@@ -242,15 +297,18 @@ than HTML, you should not include a namespace prefix for your
``<math>`` tags; for example, you should not use ``<m:math>`` except
in a file where you have tied the ``m`` namespace to the MathML DTD.
-Here is a complete sample page containing MathML mathematics (which
-assumes that ``config/MathJax.js`` is configured as described above):
+Here is a complete sample page containing MathML mathematics (also
+available in the ``test/sample-mml.html`` file):
.. code-block:: html
+ <!DOCTYPE html>
<html>
<head>
<title>MathJax MathML Test Page</title>
- <script type="text/javascript" src="/MathJax/MathJax.js"></script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </script>
</head>
<body>
@@ -283,9 +341,27 @@ assumes that ``config/MathJax.js`` is configured as described above):
</body>
</html>
-The ``mml2jax`` has only a few configuration options; see the
-``config/MathJax.js`` file or the :ref:`mml2jax configuration options
-<configure-mml2jax>` page for more details.
+When entering MathML notation in an HTML page (rather than an XHTML
+page), you should **not** use self-closing tags, but should use explicit
+open and close tags for all your math elements. For example, you
+should use
+
+.. code-block:: html
+
+ <mspace width="thinmathspace"></mspace>
+
+rather than ``<mspace width="5pt" />`` in an HTML document. If you use the
+self-closing form, some browsers will not build the math tree properly, and
+MathJax will receive a damaged math structure, which will not be rendered
+as the original notation would have been. Unfortunately, there is nothing
+MathJax can do about that, since the browser has incorrectly interpreted
+the tags long before MathJax has a chance to work with them.
+
+The component of MathJax that recognizes MathML notation is called the
+`mml2jax` extension, and it has only a few configuration options; see the
+``config/default.js`` file or the :ref:`mml2jax configuration options
+<configure-mml2jax>` page for more details. See the :ref:`MathML
+<MathML-support>` page for more on MathJax's MathML support.
Where to go from here?
@@ -297,7 +373,7 @@ able to use it to write web pages that include mathematics. At this
point, you can start making pages that contain mathematical content!
You could also read more about the details of how to :ref:`customize
-MathJax <configuration>`.
+MathJax <loading>`.
If you are trying to use MathJax in blog or wiki software or in some
other content-management system, you might want to read about :ref:`using
diff --git a/docs/html/_sources/startup.txt b/docs/html/_sources/startup.txt
@@ -63,11 +63,10 @@ pushed into the queue:
2. Perform the configuration actions:
- Post the ``Begin Config`` startup signal
- - Execute the content of the ``<script>`` that loaded MathJax,
- or load the ``config/MathJax.js`` file if the ``<script>``
- is empty
- - If the ``MathJax.Hub.config.delayStartupUntil`` value is set,
- wait until its condition is met
+ - Load any configuration files specified via ``config=`` as a script parameter
+ - Execute the content of the ``<script>`` that loaded MathJax, if it is not empty
+ - Wait for the ``delayStartupUntil`` condition to be met, if one was specified
+ - Execute any ``text/x-mathjax-config`` script blocks
- load the files listed in the ``MathJax.Hub.config.config`` array
- Post the ``End Config`` startup signal
@@ -115,15 +114,20 @@ pushed into the queue:
..
-7. Wait for the onload handler to fire
+7. Set the MathJax menu's renderer value based on the jax that have been
+ loaded
..
-8. Set ``MathJax.isReady`` to ``true``
+8. Wait for the onload handler to fire
..
-9. Perform the typesetting pass (preprocessors and processors)
+9. Set ``MathJax.isReady`` to ``true``
+
+..
+
+10. Perform the typesetting pass (preprocessors and processors)
- Post the ``Begin Typeset`` startup signal
- Post the ``Begin PreProcess`` hub signal
@@ -141,12 +145,16 @@ pushed into the queue:
..
-10. Post the ``End`` startup signal
-
-
-
-
-
+11. Post the ``End`` startup signal
+The loading of the jax and extensions in steps 5 and 6 are now done in
+parallel, rather than sequentially. That is, all the jax and extensions
+are requested simultaneously, so they load concurrently. That means they
+can load in any order, and that the begin and end signals for the jax and
+extensions can be intermixed. (In general, you will get `Begin Jax`
+followed by `Begin Extensions`, but the order of `End Jax` and `End
+Extensions` will depend on the file sbeing loaded.) Both 5 and 6 must
+complete, however, before 7 will be performed.
+See the ``test/sample-signals.html`` file to see the signals in action.
+\ No newline at end of file
diff --git a/docs/html/_sources/synchronize.txt b/docs/html/_sources/synchronize.txt
@@ -37,20 +37,19 @@ queues for actions that need to be synchronized with each other, but
not to MathJax as a whole. See the :ref:`Queue Object <api-queue>`
reference page for more details.
-**Signals** are another means of synchronizing your own code with
-MathJax. Many of the important actions that MathJax takes (like
-typesetting new math on the page, or loading an external component)
-are "announced" by posting a message to a special object called a
-`Signal`. Your code can register an interest in receiving one or more
-of these signals by providing a callback to be called when the signal
-is posted. When the signal arrives, MathJax will call your code.
-This works somewhat like an event handler, except that many different
-types of events can go through the same signal, and the signals have a
-"memory", meaning that if you register an interest in a particular
-type of signal and that signal has already occurred, you will be told
-about the past occurrances as well as any future ones. See the
-:ref:`Signal Object <api-signal>` reference page for more details.
-See also the ``test/sample-signals.html`` file in the MathJax ``test``
+**Signals** are another means of synchronizing your own code with MathJax.
+Many of the important actions that MathJax takes (like typesetting new math
+on the page, or loading an external component) are "announced" by posting a
+message to a special object called a `Signal`. Your code can register an
+interest in receiving one or more of these signals by providing a callback
+to be called when the signal is posted. When the signal arrives, MathJax
+will call your code. This works somewhat like an event handler, except
+that many different types of events can go through the same signal, and the
+signals have a "memory", meaning that if you register an interest in a
+particular type of signal and that signal has already occurred, you will be
+told about the past occurrances as well as any future ones. See the
+:ref:`Signal Object <api-signal>` reference page for more details. See
+also the ``test/sample-signals.html`` file in the MathJax ``test``
directory for a working example of using signals.
Each of these is explained in more detail in the links below:
diff --git a/docs/html/_sources/tex.txt b/docs/html/_sources/tex.txt
@@ -4,13 +4,13 @@
MathJax TeX and LaTeX Support
*****************************
-The support for TeX and LaTeX in MathJax consists of two parts: the
-`tex2jax` preprocessor, and the TeX input processor. The first of
-these looks for mathematics within your web page (indicated by math
-delimiters like ``$$...$$``) and marks the mathematics for later
-processing by MathJax. The TeX input processor is what converts the
-TeX notation into MathJax's internal format, where one of MathJax's
-output processors then displays it in the web page.
+The support for :term:`TeX` and :term:`LaTeX` in MathJax consists of two
+parts: the `tex2jax` preprocessor, and the `TeX` input processor. The
+first of these looks for mathematics within your web page (indicated by
+math delimiters like ``$$...$$``) and marks the mathematics for later
+processing by MathJax. The TeX input processor is what converts the TeX
+notation into MathJax's internal format, where one of MathJax's output
+processors then displays it in the web page.
The `tex2jax` preprocessor can be configured to look for whatever
markers you want to use for your math delimiters. See the
@@ -36,6 +36,45 @@ you need a LaTeX-to-HTML converter, you should consider `other options
<http://www.google.com/search?q=latex+to+html+converter>`_.
+TeX and LaTeX math delimiters
+=============================
+
+By default, the `tex2jax` preprocesor defines the LaTeX math delimiters,
+which are ``\(...\)`` for in-line math, and ``\[...\]`` for displayed
+equations. It also defines the TeX delimiters ``$$...$$`` for displayed
+equations, but it does **not** define ``$...$`` as in-line math
+delimiters. That is because dollar signs appear too often in
+non-mathematical settings, which could cause some text to be treated
+as mathematics unexpectedly. For example, with single-dollar
+delimiters, "... the cost is $2.50 for the first one, and $2.00 for
+each additional one ..." would cause the phrase "2.50 for the first
+one, and" to be treated as mathematics since it falls between dollar
+signs. For this reason, if you want to use single-dollars for in-line
+math mode, you must enable that explicitly in your configuration:
+
+.. code-block:: javascript
+
+ MathJax.Hub.Config({
+ tex2jax: {
+ inlineMath: [['$','$'], ['\\(','\\)']],
+ processEscapes: true
+ }
+ });
+
+Note that if you do this, you may want to also set ``processEscapes`` to
+``true``, as in the example above, so that you can use ``\$`` to prevent a
+dollar sign from being treated as a math delimiter within the text of your
+web page. (Note that within TeX mathematics, ``\$`` always has this
+meaning; ``processEscapes`` only affects the treatment of the *opening*
+math delimiter.)
+
+See the ``config/default.js`` file, or the :ref:`tex2jax configuration
+options <configure-tex2jax>` page, for additional configuration
+parameters that you can specify for the `tex2jax` preprocessor,
+which is the component of MathJax that identifies TeX notation within
+the page).
+
+
TeX and LaTeX in HTML documents
===============================
@@ -97,40 +136,61 @@ TeX and LaTeX extensions
========================
While MathJax includes nearly all of the Plain TeX math macros, and
-many of the LaTeX macros and environments, note everything is
+many of the LaTeX macros and environments, not everything is
implemented in the core TeX input processor. Some less-used commands
are defined in extensions to the TeX processor. MathJax will load
some extensions automatically when you first use the commands they
implement (for example, the ``\def`` and ``\newcommand`` macros are
-implemented in the ``TeX/newcommand.js`` extension, but MathJax loads
+implemented in the ``newcommand.js`` extension, but MathJax loads
this extension itself when you use those macros). Not all extensions
are set up to load automatically, however, so you may need to request
some extensions explicitly yourself.
To enable any of the TeX extensions, simply add the appropriate string
-(e.g., `"TeX/AMSmath.js"`) to your config's `extensions` array. The
-main extensions are described below.
+(e.g., ``"AMSmath.js"``) to the `extensions` array in the ``TeX`` block
+of your configuration. If you use one of the combined configuration files,
+like ``TeX-AMS_HTML``, this will already include several of the extensions
+automatically, but you can include others using a mathjax configuration
+script prior to loading MathJax. For example
+
+.. code-block:: html
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({ TeX: { extensions: ["autobold.js"] }});
+ </script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML">
+ </script>
+
+will load the `autobold` TeX extension in addition to those already
+included in the ``TeX-AMS_HTML`` configuration file.
+
+The main extensions are described below.
AMSmath and AMSsymbol
---------------------
-The `AMSmath` extension implements AMS math environments and macros,
-and the `AMSsymbol` extension implements macros for accessing the AMS
-symbol fonts. To use these extensions, add them to your `extensions` array.
+The `AMSmath` extension implements AMS math environments and macros, and
+the `AMSsymbol` extension implements macros for accessing the AMS symbol
+fonts. These are already included in the combined configuration files that
+load the TeX input processor. To use these extensions in your own
+configurations, add them to the `extensions` array in the TeX block.
.. code-block:: javascript
- extensions: ["TeX/AMSmath.js", "TeX/AMSsymbol.js", ...]
+ TeX: {
+ extensions: ["AMSmath.js", "AMSsymbol.js", ...]
+ }
-See the list of commands at the end of this document for details about
-what commands are implemented in these extensions.
+See the list of control sequences at the end of this document for details
+about what commands are implemented in these extensions.
-The `AMSmath` extension will be loaded automatically when you first
-use one of the math environments it defines, but you will have to load
-it explicitly if you want to use the other macros that it defines.
-The `AMSsymbols` extension is not loaded automatically, so you must
-include it explicitly if you want to use the macros it defines.
+If you are not using one of the combined configuration files, the `AMSmath`
+extension will be loaded automatically when you first use one of the math
+environments it defines, but you will have to load it explicitly if you
+want to use the other macros that it defines. The `AMSsymbols` extension
+is not loaded automatically, so you must include it explicitly if you want
+to use the macros it defines.
Autobold
@@ -141,7 +201,11 @@ appears in a section of an HTML page that is in bold.
.. code-block:: javascript
- extensions: ["TeX/autobold.js"]
+ TeX: {
+ extensions: ["autobold.js"]
+ }
+
+This extension is **not** loaded by the combined configuration files.
noErrors
@@ -153,24 +217,27 @@ whether the dollar signs are shown or not for in-line math, and
whether to put all the TeX on one line or use multiple lines (if the
original text contained line breaks).
-To enable the `noErrors` extension and configure it, use
+This extension is loaded by all the combined configuration files that
+include the TeX input processor. To enable the `noErrors` extension in
+your own configuration, or to modify its parameters, add something like the
+following to your :meth:`MathJax.Hub.Config()` call:
.. code-block:: javascript
- extensions: ["TeX/noErrors.js", ...],
TeX: {
- noErrors: {
- inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"]
- multiLine: true, // false for TeX on all one line
- style: {
- "font-family": "serif",
- "font-size": "80%",
- "color": "black",
- "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)
- }
+ extensions: ["noErrors.js"],
+ noErrors: {
+ inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"]
+ multiLine: true, // false for TeX on all one line
+ style: {
+ "font-family": "serif",
+ "font-size": "80%",
+ "color": "black",
+ "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)
}
+ }
}
Display-style math is always shown in multi-line format, and without
@@ -184,14 +251,14 @@ the paragraph, use
.. code-block:: javascript
TeX: {
- noErrors: {
- inlineDelimiters: ["$","$"], // or ["",""] or ["\\(","\\)"]
- multiLine: false,
- style: {
- "font-size": "normal",
- "border": ""
- }
+ noErrors: {
+ inlineDelimiters: ["$","$"], // or ["",""] or ["\\(","\\)"]
+ multiLine: false,
+ style: {
+ "font-size": "normal",
+ "border": ""
}
+ }
}
You may also wish to set the font family, as the default is "serif"
@@ -201,28 +268,31 @@ noUndefined
-----------
The `noUndefined` extension causes undefined control sequences to be
-shown as their macro names rather than produce an error message. So
+shown as their macro names rather than generating error messages. So
``$X_{\xxx}$`` would display as an "X" with a subscript consiting of the
text ``\xxx`` in red.
-To enable and configure this extension, use for example
+This extension is loaded by all the combined configuration files that
+include the TeX input processor. To enable the `noUndefined` extension
+in your own configuration, or to modify its parameters, add something like
+the following ro your :meth:`MathJax.Hub.Config()` call:
.. code-block:: javascript
- extensions: ["TeX/noUndefined.js", ...],
TeX: {
- noUndefined: {
- attributes: {
- mathcolor: "red",
- mathbackground: "#FFEEEE",
- mathsize: "90%"
- }
+ extensions: ["noUndefined.js"],
+ noUndefined: {
+ attributes: {
+ mathcolor: "red",
+ mathbackground: "#FFEEEE",
+ mathsize: "90%"
}
- }
+ }
+ }
The ``attributes`` setting specifies attributes to apply to the
``mtext`` element that encodes the name of the undefined macro. The
-default settings set ``mathcolor`` to ``"red"``, but do not set any
+default values set ``mathcolor`` to ``"red"``, but do not set any
other attributes. This example sets the background to a light pink,
and reduces the font size slightly.
@@ -272,9 +342,9 @@ array. You can configure the extension as follows:
.. code-block:: javascript
TeX: {
- unicode: {
- fonts: "STIXGeneral, 'Arial Unicode MS'"
- }
+ unicode: {
+ fonts: "STIXGeneral, 'Arial Unicode MS'"
+ }
}
@@ -949,6 +1019,7 @@ the macro name.
\subset
\subseteq
\subseteqq AMSsymbols
+ \subsetneq AMSsymbols
\substack AMSmath
\succ
\succapprox AMSsymbols
@@ -964,6 +1035,7 @@ the macro name.
\supset
\supseteq
\supseteqq AMSsymbols
+ \supsetneq AMSsymbols
\surd
\swarrow
diff --git a/docs/html/_sources/typeset.txt b/docs/html/_sources/typeset.txt
@@ -172,7 +172,8 @@ then you can use
to change the student's answer to be the typeset version of whatever
is in the ``studentAnswer`` variable.
-Here is a complete example that illustrates this approach
+Here is a complete example that illustrates this approach (available in a
+more full-featured version as ``test/sample-dynamic.html``):
.. code-block:: html
@@ -180,13 +181,16 @@ Here is a complete example that illustrates this approach
<head>
<title>MathJax Dynamic Math Test Page</title>
- <script src="/MathJax/MathJax.js">
+ <script type="text/x-mathjax-config">
MathJax.Hub.Config({
- extensions: ["tex2jax.js"],
- jax: ["input/TeX","output/HTML-CSS"],
- tex2jax: {inlineMath: [["$","$"],["\\(","\\)"]]}
+ tex2jax: {
+ inlineMath: [["$","$"],["\\(","\\)"]]
+ }
});
</script>
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full">
+ </script>
</head>
<body>
diff --git a/docs/html/_sources/upgrade.txt b/docs/html/_sources/upgrade.txt
@@ -0,0 +1,234 @@
+.. _upgrade:
+
+***********************************
+Migrating from MathJax v1.0 to v1.1
+***********************************
+
+MathJax v1.1 fixes a number of bugs in v1.0, and improves support for
+new versions of browsers and mobile devices. It includes changes to
+increase its performance, and to make it more compliant with HTML5. It
+has more flexible configuration options, and the ability to load
+configuration files that combine multiple files into a single one to
+increase loading speed when MathJax starts up. Finally, MathJax.org now
+offers MathJax as a web service through a distributed "cloud" server.
+
+This document describes the changes you may need to make to your MathJax
+configurations in order to take advantage of these improvements.
+
+
+Configuration Changes
+=====================
+
+The main changes that you will see as a page author are in the way that
+MathJax can be loaded and configured. If you have been using in-line
+configuration by putting a :meth:`MathJax.Hub.Config()` call in the body of
+the ``<script>`` tag that loads MathJax, then your site should work
+unchanged with version 1.1 of MathJax. You may wish to consider moving to
+the new HTML5-compliant method of configuring MathJax, however, which uses
+a separate ``<script>`` tag to specify the configuration. That tag should
+come **before** the one that loads ``Mathjax.js``, and should have
+``type="text/x-mathjax-config"`` rather than ``type="text/javascript"``.
+For example,
+
+.. code-block:: html
+
+ <script type="text/javascript" src="/MathJax/MathJax.js">
+ MathJax.Hub.Config({
+ jax: ["input/TeX","output/HTML-CSS"],
+ extensions: ["tex2jax.js"]
+ });
+ </script>
+
+would become
+
+.. code-block:: html
+
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ jax: ["input/TeX","output/HTML-CSS"],
+ extensions: ["tex2jax.js"]
+ });
+ </script>
+ <script type="text/javascript" src="/MathJax/MathJax.js"></script>
+
+instead. This will make sure your pages pass HTML5 validation. Be sure
+that you put the configuration block **before** the script that loads
+MathJax. See :ref:`Loading and Configuring MathJax <loading>` for more
+details.
+
+If your page simply loads ``MathJax.js`` and relies on
+``config/MathJax.js``, then you will need to modify your ``<script>`` tag
+in order to use MathJax v1.1. This is because MathJax no longer loads a
+default configuration file; you are required to explicity specify the
+configuration file if you use one. Furthermore, the name of the
+``config/MathJax.js`` file was a source of confusion, so it has been
+renamed ``config/default.js`` instead. Thus, if you used
+
+.. code-block:: html
+
+ <script type="text/javascript" src="/MathJax/MathJax.js"></script>
+
+in the past, you should replace it with
+
+.. code-block:: html
+
+ <script type="text/javascript" src="/MathJax/MathJax.js?config=default"></script>
+
+instead. If you don't do this, you will receive a warning message that
+directs you to a page that explains how to update your script tags to use
+the new configuration format.
+
+
+Combined Configurations
+=======================
+
+New with version 1.1 is the ability to combine several files into a single
+configuration file, and to load that via the same script that loads
+MathJax. This should make configuring MathJax easier, and also helps to
+speed up the initial loading of MathJax's components, since only one file
+needs to be downloaded.
+
+MathJax comes with four pre-built configurations, and our hope is that one
+of these will suit your needs. They are described in more detail in the
+:ref:`Using a Configuration File <config-files>` section. To load one,
+add ``?config=filename`` (where ``filename`` is the name of the
+configuration file without the ``.js``) to the URL that loads
+``MathJax.js``. For example
+
+.. code-block:: html
+
+ <script type="text/javascript" src="/MathJax/MathJax.js">
+ MathJax.Hub.Config({
+ jax: ["input/TeX","output/HTML-CSS"],
+ extensions: ["tex2jax.js","AMSmath.js","AMSsymbols.js"]
+ });
+ </script>
+
+could be replaced by the single line
+
+.. code-block:: html
+
+ <script type="text/javascript" src="/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>
+
+In this way, you don't have to include the in-line configuration, and all
+the needed files will be downloaded when MathJax starts up. For complete
+details about the contents of the combined configuration files, see the
+:ref:`Common Configurations <common-configurations>` section.
+
+If you want to use a pre-defined configuration file, but want to modify some
+of the configuration parameters, you can use both a
+``text/x-mathjax-config`` block and a ``config=filename`` parameter in
+combination. For example,
+
+.. code-block:: html
+
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ TeX: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ],
+ processEscapes: true
+ }
+ });
+ </script>
+ <script type="text/javascript" src="/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>
+
+would load the ``TeX-AMS_HTML`` configuration file, but would reconfigure
+the inline math delimiters to include ``$...$`` in addition to
+``\(...\)``, and would set the ``processEscapes`` parameter to ``true``.
+
+
+Loading MathJax from the CDN
+============================
+
+The MathJax installation is fairly substantial (due to the large number of
+images needed for the image fonts), and so you may not want to (or be able
+to) store MathJax on your own server. Keeping MathJax up to date can also
+be a maintenance problem, and you might prefer to let others handle that
+for you. In either case, using the MathJax distributed network service may be
+the best way for you to obtain MathJax. That way you can be sure you are
+using an up-to-date version of MathJax, and that the server will be fast
+and reliable.
+
+To use the MathJax CDN service, simply load MathJax as follows:
+
+.. code-block:: html
+
+ <script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ </scrip>
+
+Of course, you can load any configuration file that you wish, or use a
+``text/x=mathajx-config`` block to configure MathJax in-line.
+:ref:`More details <loading-CDN>` are available, if you need them.
+
+The use of ``cdn.mathjax.org`` is governed by its `terms of service
+<http://www.mathjax.org/download/mathjax-cdn-terms-of-service/>`_, so be
+sure to read that before linked to the MathJax CDN server.
+
+
+Change in default TeX delimiters
+================================
+
+In addition to the fact that MathJax v1.1 no longer loads a default
+configuration file, there is a second configuration change that could
+affect your pages. The ``config/MathJax.js`` file properly configured the
+`tex2jax` preprocessor to use only ``\(...\)`` and not ``$...$`` for in-line
+math delimiters, but the `tex2jax` preprocessor itself incorrectly
+defaulted to including ``$...$`` as in-line math delimiters. The result
+was that if you used in-line configuration to specify the ``tex2jax``
+preprocessor, single-dollar delimiters were enabled by default, while if
+you used file-based configuration, they weren't.
+
+This inconsistency was an error, and the correct behavior was supposed to
+have the single-dollar delimiters disabled in both cases. This is now
+true in v1.1 of MathJax. This means that if you used in-line
+configuration to specify the `tex2jax` preprocessor, you will need to
+change your configuration to explicitly enable the single-dollar
+delimiters if you want to use them.
+
+For example, if you had
+
+.. code-block:: html
+
+ <script type="text/javascript" src="/MathJax/MathJax.js">
+ MathJax.Hub.Config({
+ jax: ["input/TeX","output/HTML-CSS"],
+ extensions: ["tex2jax.js"]
+ });
+ </script>
+
+and you want to use single-dollar delimiters for in-line math, then you
+should replace this with
+
+.. code-block:: html
+
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ jax: ["input/TeX","output/HTML-CSS"],
+ extensions: ["tex2jax.js"],
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ],
+ processEscapes: true
+ }
+ });
+ </script>
+ <script type="text/javascript" src="/MathJax/MathJax.js"></script>
+
+The same technique can be used in conjunction with a combined
+configuration file. For example
+
+.. code-block:: html
+
+ <script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ],
+ processEscapes: true
+ }
+ });
+ </script>
+ <script type="text/javascript" src="/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>
+
+will load the pre-defined ``TeX-AMS_HTML`` configuration, but will modify
+the settings to allow ``$...$`` delimiters, and to process ``\$`` to
+produce dollar signs within the text of the page.
diff --git a/docs/html/_sources/whats-new.txt b/docs/html/_sources/whats-new.txt
@@ -0,0 +1,172 @@
+.. _whats-new:
+
+**************************
+What's New in MathJax v1.1
+**************************
+
+MathJax version 1.1 includes a number of important improvements and
+enhancements over version 1.0. We have worked hard to fix bugs, improve
+support for browsers and mobile devices, supprot TeX and MathML better, and
+increase MathJax's performance.
+
+In addition to these changes, MathJax.org now offers MathJax as a network
+service. Instead of having to install MathJax on your own server, you can
+link to our content delivery network (CDN) to get fast access to
+up-to-date and past versions of MathJax. See :ref:`Loading MathJax from
+the CDN <loading-CDN>` for more details.
+
+The following sections outline the changes in v1.1:
+
+Optimization
+============
+
+* Combined configuraiton files that load all the needed files in one piece
+ rather than loading them individually. This simplifies configuration
+ and speeds up typsetting of the mathematics on the page.
+
+* Improved responsiveness to mouse events during typesetting.
+
+* Parallel downloading of files needed by MathJax, for faster startup
+ times.
+
+* Shorter timeout for web fonts, so if they can't be downlaoded, you don't
+ have to wait so long.
+
+* Rollover to image fonts if a web font fails to load (so you don't have
+ to wait for *every* font to fail.
+
+* The MathJax files are now packed only with `yuicompressor` rather than a
+ custom compressor. The CDN serves gzipped versions, which compressed
+ better than the gzipped custom-packed files.
+
+* Improved rendering speed in IE by removing ``position:relative`` from
+ the style for mathematics.
+
+* Improve rendering speed for most browsers by isolating the mathematics
+ from page during typesetting (avoids full page reflows).
+
+
+Enhancements
+============
+
+* Allow the input and output jax configuration blocks to specify extensions
+ to be loaded when the jax is loaded (this avoids needing to load them up
+ front, so they don't have to be loaded on pages that don't include
+ mathematics, for example).
+
+* Better handling of background color from style attributes.
+
+* Ability to pass configuration parameters via script URL.
+
+* Support HTML5 compliant configuration syntax.
+
+* Switch the Git repository from storing the fonts in `fonts.zip` to
+ storing the `fonts/` directory directly.
+
+* Improved About box.
+
+* add a minimum scaling factor (so math won't get too small)
+
+
+TeX Support
+============
+
+* Added support for ``\href``, ``\style``, ``\class``, ``\cssId``.
+* Avoid recursive macro definitions and other resource consumption possibilities.
+* Fix for ``\underline`` bug.
+* Fix for bug with ``\fbox``.
+* Fix height problem with ``\raise`` and ``\lower``.
+* Fix problem with ``\over`` used inside array entries.
+* Fix problem with nesting of math delimiters inside text-mode material.
+* Fix single digit super- and subscripts followed by punctuation.
+* Make sure `movablelimits` is off for ``\underline`` and related macros.
+* Fix problem with dimensions given with ``pc`` units.
+
+
+MathML Support
+==============
+
+* Fix ``<`` and ``&`` being translated too early.
+* Handle self-closing tags in HTML files better.
+* Combine adjacent relational operators in ``<mo>`` tags.
+* Fix entity name problems.
+* Better support for MathML namespaces.
+* Properly handle comments within MathML in IE.
+* Properly consider ``<mspace>`` and ``<mtext>`` as space-like.
+* Improved support for ``<maction>`` with embelished operators.
+
+
+Other Bug Fixes
+===============
+
+* Fixed CSS bleed through with zoom and other situations.
+* Fixed problems with ``showMathMenuMSIE`` when set to ``false``.
+* Replaced illegal prefix characters in cookie name.
+* Improve placement of surd for square roots and n-th roots.
+* Fixed layer obscuring math from MathPlayer for screen readers.
+* Newlines in CDATA comments are now handled properly.
+* Resolved conflict between `jsMath2jax` and `tex2jax` both processing the
+ same equation.
+* Fixed problem with ``class="tex2jax_ignore"`` affecting the processing of
+ sibling elements.
+
+
+Browser Support
+===============
+
+**Android**
+
+* Added detection and configuration for Android browser.
+* Allow use of OTF web fonts in Android 2.2.
+
+
+**Blackberry**
+
+* MathJax now works with OS version 6.
+
+
+**Chrome**
+
+* Use OTF web fonts rather than SVG fonts for version 4 and above.
+
+
+**Firefox**
+
+* Added Firefox 4 detection and configuration.
+* Fix for extra line-break bug when displayed equations are in
+ preformatted text.
+* Update fonts so that FF 3.6.13 and above can read them.
+
+
+**Internet Explorer**
+
+* Changes for compatibility with IE9.
+* Fix for IE8 incorrectly parsing MathML.
+* Fix for IE8 namespace problem.
+* Fix for null ``parentNode`` problem.
+* Fix for ``outerHTML`` not quoting values of attributes.
+
+**iPhone/iPad**
+
+* Add support for OTF web fonts in iOS4.2.
+
+**Nokia**
+
+* MathJax now works with Symbian\ :sup:`3`\ .
+
+**Opera**
+
+* Prevent Opera from using STIX fonts unless explicitly requested via the
+ font menu (since Opera can't display many of the characters).
+* Fix for bad em-size detection in 10.61.
+* Fixed a problem with the About dialog in Opera 11.
+
+
+**Safari**
+
+* Use OTF web fonts for Safari/PC.
+
+
+**WebKit**
+
+* Better version detection.
diff --git a/docs/html/_static/logo.gif b/docs/html/_static/logo.gif
Binary files differ.
diff --git a/docs/html/_static/mathjax_mathml.user.js b/docs/html/_static/mathjax_mathml.user.js
@@ -6,17 +6,13 @@
// ==/UserScript==
if ((window.unsafeWindow == null ? window : unsafeWindow).MathJax == null) {
- if ((document.getElementsByTagName("math").length > 0) ||
- (document.getElementsByTagNameNS == null ? false :
- (document.getElementsByTagNameNS("http://www.w3.org/1998/Math/MathML","math").length > 0))) {
+ if ((document.getElementsByTagName("math").length > 0) ||
+ (document.getElementsByTagNameNS == null ? false :
+ (document.getElementsByTagNameNS("http://www.w3.org/1998/Math/MathML","math").length > 0))) {
var script = document.createElement("script");
- script.src = "http://www.yoursite.edu/MathJax/MathJax.js"; // put your URL here
- var config = 'MathJax.Hub.Config({' +
- 'extensions:["mml2jax.js"],' +
- 'jax:["input/MathML","output/HTML-CSS"]' +
- '});' +
- 'MathJax.Hub.Startup.onload()';
+ script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full";
+ var config = 'MathJax.Hub.Startup.onload()';
if (window.opera) {script.innerHTML = config} else {script.text = config}
document.getElementsByTagName("head")[0].appendChild(script);
- }
+ }
}
diff --git a/docs/html/_static/mathjax_wikipedia.user.js b/docs/html/_static/mathjax_wikipedia.user.js
@@ -9,27 +9,23 @@ if ((window.unsafeWindow == null ? window : unsafeWindow).MathJax == null) {
//
// Replace the images with MathJax scripts of type math/tex
//
- var images = document.getElementsByTagName('img');
+ var images = document.getElementsByTagName('img'), count = 0;
for (var i = images.length - 1; i >= 0; i--) {
var img = images[i];
if (img.className === "tex") {
var script = document.createElement("script"); script.type = "math/tex";
if (window.opera) {script.innerHTML = img.alt} else {script.text = img.alt}
- img.parentNode.replaceChild(script,img);
+ img.parentNode.replaceChild(script,img); count++;
}
}
- //
- // Load MathJax and have it process the page
- //
- var script = document.createElement("script");
- script.src = "http://www.yoursite.edu/MathJax/MathJax.js"; // put your URL here
- var config = 'MathJax.Hub.Config({' +
- 'config: ["MMLorHTML.js"],' +
- 'extensions:["TeX/noErrors.js","TeX/noUndefined.js",' +
- '"TeX/AMSmath.js","TeX/AMSsymbols.js"],' +
- 'jax:["input/TeX"]' +
- '});' +
- 'MathJax.Hub.Startup.onload()';
- if (window.opera) {script.innerHTML = config} else {script.text = config}
- document.getElementsByTagName("head")[0].appendChild(script);
+ if (count) {
+ //
+ // Load MathJax and have it process the page
+ //
+ var script = document.createElement("script");
+ script.src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full";
+ var config = 'MathJax.Hub.Startup.onload()';
+ if (window.opera) {script.innerHTML = config} else {script.text = config}
+ document.getElementsByTagName("head")[0].appendChild(script);
+ }
}
diff --git a/docs/html/_static/mj.css b/docs/html/_static/mj.css
@@ -139,8 +139,8 @@ div.body h6 {
background-color: #f2f2f2;
font-weight: normal;
color: #20435c;
- border-top: 1px solid #cccccc;
- border-bottom: 2px solid #cccccc;
+ border-top: 2px solid #cccccc;
+ border-bottom: 1px solid #cccccc;
margin: 30px -20px 20px -20px;
padding: 3px 0 3px 10px;
}
diff --git a/docs/html/api/ajax.html b/docs/html/api/ajax.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.Message Object" href="message.html" />
@@ -80,7 +80,7 @@ documentation for details on how to do this properly.</p>
<tt class="descname">timeout</tt></dt>
<dd><p>Number of milliseconds to wait for a file to load before
it is considered to have failed to load.</p>
-<p><em>Default:</em> 20 seconds</p>
+<p><em>Default:</em> 15 seconds</p>
</dd></dl>
<dl class="describe">
@@ -114,6 +114,14 @@ callbacks that are to be run when they load or timeout, and
additional internal data.</p>
</dd></dl>
+<dl class="describe">
+<dt>
+<tt class="descname">loadHooks</tt></dt>
+<dd><p>An object containing the load hooks for the various files, set up by
+the <a class="reference internal" href="#loadHook" title="loadHook"><tt class="xref py py-meth docutils literal"><span class="pre">loadHook()</span></tt></a> method, or by the
+<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Register.LoadHook()</span></tt> method.</p>
+</dd></dl>
+
</div>
<div class="section" id="methods">
<h2>Methods<a class="headerlink" href="#methods" title="Permalink to this headline">¶</a></h2>
@@ -183,9 +191,9 @@ already has been loaded, or where it is to be found.</p>
file has been completely loaded and initialized. The <cite>file</cite>
parameter is the name of the file that has been loaded. This
routine will cause any callback functions registered for the file
-or included in the :meth:<tt class="docutils literal"><span class="pre">MathJax.Ajax.Require()</span></tt> calls to be
+or included in the <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Ajax.Require()</span></tt> calls to be
executed, passing them the status or the load
-(<cite>MathJax.Ajax.STATUS.OK`</cite> or <tt class="docutils literal"><span class="pre">MathJax.Ajax.STATUS.ERROR</span></tt>) as
+(<tt class="docutils literal"><span class="pre">MathJax.Ajax.STATUS.OK</span></tt> or <tt class="docutils literal"><span class="pre">MathJax.Ajax.STATUS.ERROR</span></tt>) as
their last parameter.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
@@ -273,6 +281,30 @@ that may be loaded in the future.</p>
</dd></dl>
<dl class="method">
+<dt id="Preloading">
+<tt class="descname">Preloading</tt><big>(</big><em>file1</em><span class="optional">[</span>, <em>file2...</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#Preloading" title="Permalink to this definition">¶</a></dt>
+<dd><p>Used withing combined configuration files to indicate what files are
+in the configuration file. Marks the files are loading (since there
+will never be an explicit <a class="reference internal" href="#Load" title="Load"><tt class="xref py py-meth docutils literal"><span class="pre">Load()</span></tt></a> or <a class="reference internal" href="#Require" title="Require"><tt class="xref py py-meth docutils literal"><span class="pre">Require()</span></tt></a> call for
+then), so that load-hooks and other load-related events can be
+properly processed.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">Parameters :</th><td class="field-body"><ul class="first simple">
+<li><strong>file1, file2, ...</strong> — the names of the files in the combined file</li>
+</ul>
+</td>
+</tr>
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">null</span></tt></p>
+</td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
+<dl class="method">
<dt id="Styles">
<tt class="descname">Styles</tt><big>(</big><em>styles</em><span class="optional">[</span>, <em>callback</em><span class="optional">]</span><big>)</big><a class="headerlink" href="#Styles" title="Permalink to this definition">¶</a></dt>
<dd><p>Creates a stylesheet from the given style data. <cite>styles</cite> can
@@ -362,11 +394,6 @@ actual root URL location).</p>
<h4>Next topic</h4>
<p class="topless"><a href="message.html"
title="next chapter">The MathJax.Message Object</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/ajax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/callback.html b/docs/html/api/callback.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.Callback.Queue Class" href="queue.html" />
@@ -391,11 +391,6 @@ and returns the signal object. See
<h4>Next topic</h4>
<p class="topless"><a href="queue.html"
title="next chapter">The MathJax.Callback.Queue Class</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/callback.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/elementjax.html b/docs/html/api/elementjax.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The Base Jax Class" href="jax.html" />
@@ -69,7 +69,7 @@ that class.</p>
<h2>Class Properties<a class="headerlink" href="#class-properties" title="Permalink to this headline">¶</a></h2>
<dl class="describe">
<dt>
-<tt class="descname">name</tt></dt>
+<tt class="descname">id</tt></dt>
<dd><p>The name of the jax.</p>
</dd></dl>
@@ -91,13 +91,15 @@ that class.</p>
<dl class="describe">
<dt>
<tt class="descname">inputJax</tt></dt>
-<dd><p>A reference to the input jax that created the element.</p>
+<dd><p>A reference to the input jax that created the element. (In the
+future, this will be changed to the name of the input jax.)</p>
</dd></dl>
<dl class="describe">
<dt>
<tt class="descname">outputJax</tt></dt>
-<dd><p>A reference to the output jax that has processed this element.</p>
+<dd><p>A reference to the output jax that has processed this element. (In
+the future, this will be changed to the name of the output jax.)</p>
</dd></dl>
<dl class="describe">
@@ -116,7 +118,8 @@ collection, thus causing a memory leak.</p>
<dt>
<tt class="descname">originalText</tt></dt>
<dd><p>A string indicating the original input text that was processed for
-this element.</p>
+this element. (In the future, this may be managed by the input jax
+rather than <tt class="docutils literal"><span class="pre">MathJax.Hub</span></tt>.)</p>
</dd></dl>
<dl class="describe">
@@ -239,11 +242,6 @@ contextual menu.</p>
<h4>Next topic</h4>
<p class="topless"><a href="jax.html"
title="next chapter">The Base Jax Class</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/elementjax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/html.html b/docs/html/api/html.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.Callback Class" href="callback.html" />
@@ -176,6 +176,29 @@ provided. It is equivalent to</p>
</table>
</dd></dl>
+<dl class="method">
+<dt id="setText">
+<tt class="descname">setText</tt><big>(</big><em>script</em>, <em>text</em><big>)</big><a class="headerlink" href="#setText" title="Permalink to this definition">¶</a></dt>
+<dd><p>Sets the contents of the <tt class="docutils literal"><span class="pre">script</span></tt> element to be the given
+<tt class="docutils literal"><span class="pre">text</span></tt>, properly taking into account the browser limitations and
+bugs.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">Parameters :</th><td class="field-body"><ul class="first simple">
+<li><strong>script</strong> — the script whose content is to be set</li>
+<li><strong>text</strong> — the text that is to be the script’s new content</li>
+</ul>
+</td>
+</tr>
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">null</span></tt></p>
+</td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
<dl class="describe">
<dt>
<tt class="descname">Cookie.Set(name,data)</tt></dt>
@@ -185,7 +208,7 @@ the <cite>data</cite> object as the data for the cookie. For example,</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">HTML</span><span class="p">.</span><span class="nx">Cookie</span><span class="p">.</span><span class="nx">Set</span><span class="p">(</span><span class="s2">"test"</span><span class="p">,{</span><span class="nx">x</span><span class="o">:</span><span class="mi">42</span><span class="p">,</span> <span class="nx">y</span><span class="o">:</span><span class="s2">"It Works!"</span><span class="p">});</span>
</pre></div>
</div>
-<p>will create a cookie named “mjx:test” that stores the values of
+<p>will create a cookie named “mjx.test” that stores the values of
<tt class="docutils literal"><span class="pre">x</span></tt> and <tt class="docutils literal"><span class="pre">y</span></tt> provided in the <cite>data</cite> object. This data can be
retrieved using the <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.HTML.Cookie.Get()</span></tt> method
discussed below.</p>
@@ -248,11 +271,6 @@ above,</p>
<h4>Next topic</h4>
<p class="topless"><a href="callback.html"
title="next chapter">The MathJax.Callback Class</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/html.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/hub.html b/docs/html/api/hub.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.Ajax Object" href="ajax.html" />
@@ -77,7 +77,7 @@ Options</em></a> reference page.</p>
<dl class="describe">
<dt>
-<tt class="descname">processUpdateTime: 500</tt></dt>
+<tt class="descname">processUpdateTime: 250</tt></dt>
<dd><p>The minimum time (in milliseconds) between updates of the
“Processing Math” message.</p>
</dd></dl>
@@ -91,6 +91,13 @@ Options</em></a> reference page.</p>
<dl class="describe">
<dt>
+<tt class="descname">queue</tt></dt>
+<dd><p>MathJax’s main processing queue. Use <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Queue()</span></tt> to push
+callbacks onto this queue.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
<tt class="descname">Browser</tt></dt>
<dd><p>The name of the browser as determined by MathJax. It will be one
of <tt class="docutils literal"><span class="pre">Firefox</span></tt>, <tt class="docutils literal"><span class="pre">Safari</span></tt>, <tt class="docutils literal"><span class="pre">Chrome</span></tt>, <tt class="docutils literal"><span class="pre">Opera</span></tt>, <tt class="docutils literal"><span class="pre">MSIE</span></tt>,
@@ -162,7 +169,7 @@ need to do special processing. For example:</p>
<tt class="descname">Config</tt><big>(</big><em>options</em><big>)</big><a class="headerlink" href="#Config" title="Permalink to this definition">¶</a></dt>
<dd><p>Sets the configuration options (stored in <tt class="docutils literal"><span class="pre">MathJax.Hub.config</span></tt>)
to the values stored in the <cite>options</cite> object. See
-<a class="reference internal" href="../configuration.html#configuration"><em>Configuring MathJax</em></a> for details on how this
+<a class="reference internal" href="../options/index.html#configuration"><em>Configuring MathJax</em></a> for details on how this
is used and the options that you can set.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
@@ -182,6 +189,22 @@ is used and the options that you can set.</p>
<dl class="describe">
<dt>
+<tt class="descname">Configured()</tt></dt>
+<dd><p>When <tt class="docutils literal"><span class="pre">delayStartupUntil</span></tt> is specified in the configuration file or
+in the script that loads <tt class="docutils literal"><span class="pre">MathJax.js</span></tt>, MathJax’s startup sequence is
+delayed until this routine is called. See <a class="reference internal" href="../options/index.html#configuration"><em>Configuring MathJax</em></a> for details on how this is used.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><tt class="docutils literal"><span class="pre">null</span></tt></td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
+<dl class="describe">
+<dt>
<tt class="descname">Register.PreProcessor(callback)</tt></dt>
<dd><p>Used by preprocessors to register themselves with MathJax so that
they will be called during the <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.PreProcess()</span></tt>
@@ -630,11 +653,6 @@ error on the page.</p>
<h4>Next topic</h4>
<p class="topless"><a href="ajax.html"
title="next chapter">The MathJax.Ajax Object</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/hub.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/index.html b/docs/html/api/index.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="next" title="The MathJax variable" href="variable.html" />
<link rel="prev" title="Modifying Math on the Page" href="../typeset.html" />
@@ -101,11 +101,6 @@ on the main MathJax documentation page.</p>
<h4>Next topic</h4>
<p class="topless"><a href="variable.html"
title="next chapter">The MathJax variable</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/index.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/inputjax.html b/docs/html/api/inputjax.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.OutputJax Class" href="outputjax.html" />
@@ -79,7 +79,7 @@ that class.</p>
<h2>Properties<a class="headerlink" href="#properties" title="Permalink to this headline">¶</a></h2>
<dl class="describe">
<dt>
-<tt class="descname">name</tt></dt>
+<tt class="descname">id</tt></dt>
<dd><p>The name of the jax.</p>
</dd></dl>
@@ -95,21 +95,25 @@ that class.</p>
<dd><p>The directory where the jax files are stored (e.g., <tt class="docutils literal"><span class="pre">"[MathJax]/jax/input/TeX"</span></tt>);</p>
</dd></dl>
+<dl class="describe">
+<dt>
+<tt class="descname">elementJax</tt></dt>
+<dd><p>The name of the ElementJax class that this input jax will produce
+(typically <tt class="docutils literal"><span class="pre">mml</span></tt>, as that is the only ElementJax at the moment).</p>
+</dd></dl>
+
</div>
<div class="section" id="methods">
<h2>Methods<a class="headerlink" href="#methods" title="Permalink to this headline">¶</a></h2>
<dl class="method">
<dt>
<tt class="descname">Translate</tt><big>(</big><em>script</em><big>)</big></dt>
-<dd><p>This is the main routine called by MathJax when a <tt class="docutils literal"><span class="pre"><script></span></tt> of
-the appropriate type is found. The default <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a>
-method simply loads the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file and returns that callback
-for that load function so that MathJax will know when to try
-the <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> action again. When the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file
-loads, it should override the default <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> with its
-own version that does the actual translation; that way, when the
-second Translate call is made, it will be to the actual
-translation routine rather than the default loader.</p>
+<dd><p>This is the main routine called by MathJax when a <tt class="docutils literal"><span class="pre"><script></span></tt> of the
+appropriate type is found. The default <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> method
+throws an error indicating that <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> hasn’t been
+redefined, so when the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file loads, it should override the
+default <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> with its own version that does the actual
+translation.</p>
<p>The translation process should include the creation of an
<a class="reference internal" href="elementjax.html#api-element-jax"><em>Element Jax</em></a> that stores the data needed
for this element.</p>
@@ -177,11 +181,6 @@ of the various types from one another.</p>
<h4>Next topic</h4>
<p class="topless"><a href="outputjax.html"
title="next chapter">The MathJax.OutputJax Class</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/inputjax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/jax.html b/docs/html/api/jax.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax Object-Oriented Programming Model" href="object.html" />
@@ -60,7 +60,7 @@ other jax classes.</p>
<p>Unlike most MathJax.Object classes, calling the class object creates a
<em>subclass</em> of the class, rather than an instance of the class. E.g.,</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">InputJax</span><span class="p">.</span><span class="nx">MyInputJax</span> <span class="o">=</span> <span class="nx">MathJax</span><span class="p">.</span><span class="nx">InputJax</span><span class="p">({</span>
- <span class="nx">name</span><span class="o">:</span> <span class="s2">"MyInputJax"</span><span class="p">,</span>
+ <span class="nx">id</span><span class="o">:</span> <span class="s2">"MyInputJax"</span><span class="p">,</span>
<span class="nx">version</span><span class="o">:</span> <span class="s2">"1.0"</span><span class="p">,</span>
<span class="p">...</span>
<span class="p">});</span>
@@ -88,7 +88,7 @@ other jax classes.</p>
<h2>Instance Properties<a class="headerlink" href="#instance-properties" title="Permalink to this headline">¶</a></h2>
<dl class="describe">
<dt>
-<tt class="descname">name</tt></dt>
+<tt class="descname">id</tt></dt>
<dd><p>The name of the jax.</p>
</dd></dl>
@@ -123,16 +123,16 @@ configuration subsection for the specific jax in question.</p>
<div class="section" id="methods">
<h2>Methods<a class="headerlink" href="#methods" title="Permalink to this headline">¶</a></h2>
<dl class="method">
-<dt id="Translate">
-<tt class="descname">Translate</tt><big>(</big><em>script</em><big>)</big><a class="headerlink" href="#Translate" title="Permalink to this definition">¶</a></dt>
-<dd><p>This is the method that the <tt class="docutils literal"><span class="pre">MathJax.Hub</span></tt> calls when it needs
-the input or output jax to process the given math <tt class="docutils literal"><span class="pre"><script></span></tt>
-call. Its default action is to start loading the jax’s <tt class="docutils literal"><span class="pre">jax.js</span></tt>
-file, and redefine the <a class="reference internal" href="#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> method to be the
-<a class="reference internal" href="#noTranslate" title="noTranslate"><tt class="xref py py-meth docutils literal"><span class="pre">noTranslate()</span></tt></a> method below. The <tt class="docutils literal"><span class="pre">jax.js</span></tt> file should
-redefine the <a class="reference internal" href="#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> method to perform the translation
-operation for the specific jax. For an input jax, it should
-return the <cite>ElementJax</cite> object that it created.</p>
+<dt>
+<tt class="descname">Process</tt><big>(</big><em>script</em><big>)</big></dt>
+<dd><p>This is the method that the <tt class="docutils literal"><span class="pre">MathJax.Hub</span></tt> calls when it needs the
+input or output jax to process the given math <tt class="docutils literal"><span class="pre"><script></span></tt>. Its
+default action is to start loading the jax’s <tt class="docutils literal"><span class="pre">jax.js</span></tt> file, and
+redefine itself to simplu return the callback for the laod operation
+(so that further calls to it will cause the processing to wait for the
+callback). Once the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file has loaded, this method is
+replaced by the jax’s <a class="reference internal" href="#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> method, so that subsequent calls
+to <a class="reference internal" href="hub.html#Process" title="Process"><tt class="xref py py-meth docutils literal"><span class="pre">Process()</span></tt></a> will perform the appropriate translation.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -155,14 +155,19 @@ return the <cite>ElementJax</cite> object that it created.</p>
</dd></dl>
<dl class="method">
-<dt id="noTranslate">
-<tt class="descname">noTranslate</tt><big>(</big><em>script</em><big>)</big><a class="headerlink" href="#noTranslate" title="Permalink to this definition">¶</a></dt>
-<dd><p>This is a temporary routine that is used while the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file
-is loading. It throws an error indicating the the
-<a class="reference internal" href="#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> method hasn’t been redefined. That way, if
-the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file failes to load for some reason, you will
-receive an error trying to process mathematics with this input
-jax.</p>
+<dt id="Translate">
+<tt class="descname">Translate</tt><big>(</big><em>script</em><big>)</big><a class="headerlink" href="#Translate" title="Permalink to this definition">¶</a></dt>
+<dd><p>This is a stub for a routine that should be defined by the jax’s
+<tt class="docutils literal"><span class="pre">jax.js</span></tt> file when it is loaded. It should perform the translation
+action for the specific jax. For an input jax, it should return the
+<cite>ElementJax</cite> object that it created. The <a class="reference internal" href="#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> mehtod is
+never called directly by MathJax; during the <a class="reference internal" href="ajax.html#loadComplete" title="loadComplete"><tt class="xref py py-meth docutils literal"><span class="pre">loadComplete()</span></tt></a>
+call, this funciton is copied to the <a class="reference internal" href="hub.html#Process" title="Process"><tt class="xref py py-meth docutils literal"><span class="pre">Process()</span></tt></a> method, and is
+called via that name. The default <a class="reference internal" href="#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> method throws an
+error indicating that the <a class="reference internal" href="#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> meth was not been
+redefined. That way, if the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file fails to load for some
+reason, you will receive an error trying to process mathematics with
+this jax.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
@@ -177,7 +182,7 @@ jax.</p>
</ul>
</td>
</tr>
-<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">null</span></tt></p>
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">an <cite>ElementJax</cite> object, or <tt class="docutils literal"><span class="pre">null</span></tt></p>
</td>
</tr>
</tbody>
@@ -239,8 +244,8 @@ following:</p>
<li>Post the “[name] Jax Config” message to the startup signal.</li>
<li>Perform the jax’s <a class="reference internal" href="hub.html#Config" title="Config"><tt class="xref py py-meth docutils literal"><span class="pre">Config()</span></tt></a> method.</li>
<li>Post the “[name] Jax Require” message to the startup signal.</li>
-<li>Load the files from the jax’s <tt class="docutils literal"><span class="pre">require</span></tt> array (which may
-have been modified during the configuration process).</li>
+<li>Load the files from the jax’s <tt class="docutils literal"><span class="pre">require</span></tt> and
+<tt class="docutils literal"><span class="pre">config.extensions</span></tt> arrays.</li>
<li>Post the “[name] Jax Startup” message to the startup signal.</li>
<li>Perform the jax’s <a class="reference internal" href="#Startup" title="Startup"><tt class="xref py py-meth docutils literal"><span class="pre">Startup()</span></tt></a> method.</li>
<li>Post the “[name] Jax Ready” message to the startup signal.</li>
@@ -248,6 +253,10 @@ have been modified during the configuration process).</li>
<tt class="docutils literal"><span class="pre">jax.js</span></tt> file.</li>
</ol>
</div></blockquote>
+<p>Note that the configuration process (the <a class="reference internal" href="hub.html#Config" title="Config"><tt class="xref py py-meth docutils literal"><span class="pre">Config()</span></tt></a> call) can
+modify the <tt class="docutils literal"><span class="pre">require</span></tt> or <tt class="docutils literal"><span class="pre">config.extensions</span></tt> arrays to add more
+files that need to be loaded, and that the <a class="reference internal" href="#Startup" title="Startup"><tt class="xref py py-meth docutils literal"><span class="pre">Startup()</span></tt></a> method
+isn’t called until those files are completely loaded.</p>
</dd></dl>
</div>
@@ -275,11 +284,6 @@ have been modified during the configuration process).</li>
<h4>Next topic</h4>
<p class="topless"><a href="object.html"
title="next chapter">The MathJax Object-Oriented Programming Model</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/jax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/message.html b/docs/html/api/message.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.HTML Object" href="html.html" />
@@ -113,7 +113,7 @@ removed automatically; you must call the
</ul>
</td>
</tr>
-<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">the message id nuber for this message.</p>
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">the message id number for this message.</p>
</td>
</tr>
</tbody>
@@ -143,6 +143,69 @@ removed automatically; you must call the
</dd></dl>
<dl class="method">
+<dt id="Remove">
+<tt class="descname">Remove</tt><big>(</big><big>)</big><a class="headerlink" href="#Remove" title="Permalink to this definition">¶</a></dt>
+<dd><p>This removes the message frame from the window (it will reappear when
+future messages are set, however).</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><tt class="docutils literal"><span class="pre">null</span></tt></td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
+<dl class="method">
+<dt id="File">
+<tt class="descname">File</tt><big>(</big><em>file</em><big>)</big><a class="headerlink" href="#File" title="Permalink to this definition">¶</a></dt>
+<dd><p>This sets the message area to a “Loading <em>file</em>” message, where <em>file</em>
+is the name of the file (with <tt class="docutils literal"><span class="pre">[MathJax]</span></tt> representing the root
+directory).</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">Parameters :</th><td class="field-body"><ul class="first simple">
+<li><strong>file</strong> — the name of the file being loaded.</li>
+</ul>
+</td>
+</tr>
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">the message id number for the message created.</p>
+</td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
+<dl class="method">
+<dt id="filterText">
+<tt class="descname">filterText</tt><big>(</big><em>text</em>, <em>n</em><big>)</big><a class="headerlink" href="#filterText" title="Permalink to this definition">¶</a></dt>
+<dd><p>This method is called on each message before it is displayed. It can
+be used to modify (e.g., shorten) the various messages before they are
+displayed. The default action is to check of the <tt class="docutils literal"><span class="pre">messageStyle</span></tt>
+configuration parameter is <tt class="docutils literal"><span class="pre">simple</span></tt>, and if so, convert loading and
+processing messages to a simpler form. This method can be overridden
+to perform other sanitization of the message strings.</p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field"><th class="field-name">Parameters :</th><td class="field-body"><ul class="first simple">
+<li><strong>text</strong> — the text of the message to be posted</li>
+<li><strong>n</strong> — the id number of the message to be posted</li>
+</ul>
+</td>
+</tr>
+<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">the modified message text</p>
+</td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
+<dl class="method">
<dt id="Log">
<tt class="descname">Log</tt><big>(</big><big>)</big><a class="headerlink" href="#Log" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns a string of all the messages issued so far, separated by
@@ -180,11 +243,6 @@ newlines. This is used in debugging MathJax operations.</p>
<h4>Next topic</h4>
<p class="topless"><a href="html.html"
title="next chapter">The MathJax.HTML Object</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/message.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/object.html b/docs/html/api/object.html
@@ -21,10 +21,10 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
- <link rel="next" title="Converting to MathJax from jsMath" href="../jsMath.html" />
+ <link rel="next" title="Describing HTML snippets" href="../HTML-snippets.html" />
<link rel="prev" title="The Base Jax Class" href="jax.html" />
</head>
<body>
@@ -36,7 +36,7 @@
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
- <a href="../jsMath.html" title="Converting to MathJax from jsMath"
+ <a href="../HTML-snippets.html" title="Describing HTML snippets"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="jax.html" title="The Base Jax Class"
@@ -310,13 +310,8 @@ wrapping the <cite>def</cite> for the <a class="reference internal" href="#Subcl
<p class="topless"><a href="jax.html"
title="previous chapter">The Base Jax Class</a></p>
<h4>Next topic</h4>
- <p class="topless"><a href="../jsMath.html"
- title="next chapter">Converting to MathJax from jsMath</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/object.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
+ <p class="topless"><a href="../HTML-snippets.html"
+ title="next chapter">Describing HTML snippets</a></p>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -341,7 +336,7 @@ wrapping the <cite>def</cite> for the <a class="reference internal" href="#Subcl
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
- <a href="../jsMath.html" title="Converting to MathJax from jsMath"
+ <a href="../HTML-snippets.html" title="Describing HTML snippets"
>next</a> |</li>
<li class="right" >
<a href="jax.html" title="The Base Jax Class"
diff --git a/docs/html/api/outputjax.html b/docs/html/api/outputjax.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.ElementJax Class" href="elementjax.html" />
@@ -80,7 +80,7 @@ that class.</p>
<h2>Properties<a class="headerlink" href="#properties" title="Permalink to this headline">¶</a></h2>
<dl class="describe">
<dt>
-<tt class="descname">name</tt></dt>
+<tt class="descname">id</tt></dt>
<dd><p>The name of the jax.</p>
</dd></dl>
@@ -104,15 +104,12 @@ that class.</p>
<tt class="descname">Translate</tt><big>(</big><em>script</em><big>)</big></dt>
<dd><p>This is the main routine called by MathJax when an element jax is
to be converted to output. The default <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a>
-method simply loads the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file and returns that callback
-for that load function so that MathJax will know when to try
-the <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> action again. When the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file
-loads, it should override the default <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> with its
-own version that does the actual translation; that way, when the
-second Translate call is made, it will be to the actual
-translation routine rather than the default loader.</p>
+method throws an error indicating that <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> hasn’t been
+redefined, so when the <tt class="docutils literal"><span class="pre">jax.js</span></tt> file loads, it should override the
+default <a class="reference internal" href="jax.html#Translate" title="Translate"><tt class="xref py py-meth docutils literal"><span class="pre">Translate()</span></tt></a> with its own version that does the actual
+translation.</p>
<p>You should use <tt class="docutils literal"><span class="pre">MathJax.Hub.getJaxFor(script)</span></tt> to obtain the
-element jax for the given script. The translation process may add
+element jax for the given script. The translation process may
modify the element jax (e.g., if it has data that needs to be
stored with the jax), and may insert DOM elements into the
document near the jax’s <tt class="docutils literal"><span class="pre"><script></span></tt> tag.</p>
@@ -202,11 +199,6 @@ tag associated with the element jax.</p>
<h4>Next topic</h4>
<p class="topless"><a href="elementjax.html"
title="next chapter">The MathJax.ElementJax Class</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/outputjax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/queue.html b/docs/html/api/queue.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.Callback.Signal Class" href="signal.html" />
@@ -203,11 +203,6 @@ it has been waiting for a command to complete.</p>
<h4>Next topic</h4>
<p class="topless"><a href="signal.html"
title="next chapter">The MathJax.Callback.Signal Class</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/queue.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/signal.html b/docs/html/api/signal.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.InputJax Class" href="inputjax.html" />
@@ -290,11 +290,6 @@ message is posted to the signal.</p>
<h4>Next topic</h4>
<p class="topless"><a href="inputjax.html"
title="next chapter">The MathJax.InputJax Class</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/signal.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/api/variable.html b/docs/html/api/variable.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="The MathJax API" href="index.html" />
<link rel="next" title="The MathJax.Hub Object" href="hub.html" />
@@ -176,11 +176,6 @@ perform typesetting actions (and is <tt class="docutils literal"><span class="pr
<h4>Next topic</h4>
<p class="topless"><a href="hub.html"
title="next chapter">The MathJax.Hub Object</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/api/variable.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/callbacks.html b/docs/html/callbacks.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="up" title="Synchronizing your code with MathJax" href="synchronize.html" />
<link rel="next" title="Using Queues" href="queues.html" />
@@ -261,11 +261,6 @@ schedules it to be called in half a second.</p>
<h4>Next topic</h4>
<p class="topless"><a href="queues.html"
title="next chapter">Using Queues</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/callbacks.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/community.html b/docs/html/community.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
- <link rel="next" title="The MathJax Processing Model" href="model.html" />
+ <link rel="next" title="What’s New in MathJax v1.1" href="whats-new.html" />
<link rel="prev" title="MathJax Output Formats" href="output.html" />
</head>
<body>
@@ -35,7 +35,7 @@
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
- <a href="model.html" title="The MathJax Processing Model"
+ <a href="whats-new.html" title="What’s New in MathJax v1.1"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="output.html" title="MathJax Output Formats"
@@ -76,11 +76,11 @@ our groups.</p>
</div>
<div class="section" id="issue-tracking">
<span id="community-tracker"></span><h2>Issue tracking<a class="headerlink" href="#issue-tracking" title="Permalink to this headline">¶</a></h2>
-<p>Found a bug or want to suggest an improvement? Post it to our <a class="reference external" href="http://github.com/mathjax/mathjax/issues">issue tracker</a>. We monitor the tracker closely,
+<p>Found a bug or want to suggest an improvement? Post it to our <a class="reference external" href="http://github.com/mathjax/MathJax/issues">issue tracker</a>. We monitor the tracker closely,
and work hard to respond to problems quickly.</p>
<p>Before you create a new issue, however, please search the issues to see if it
has already been reported. You could also be using an outdated version of
-MathJax, so be sure to <a class="reference internal" href="installation.html#getting-mathjax-svn"><em>upgrade your copy</em></a> to verify
+MathJax, so be sure to <a class="reference internal" href="installation.html#getting-mathjax-git"><em>upgrade your copy</em></a> to verify
that the problem persists in the lastest version.</p>
</div>
<div class="section" id="powered-by-mathjax">
@@ -110,13 +110,8 @@ our <a class="reference external" href="http://www.mathjax.org/community/mathjax
<p class="topless"><a href="output.html"
title="previous chapter">MathJax Output Formats</a></p>
<h4>Next topic</h4>
- <p class="topless"><a href="model.html"
- title="next chapter">The MathJax Processing Model</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/community.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
+ <p class="topless"><a href="whats-new.html"
+ title="next chapter">What’s New in MathJax v1.1</a></p>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
@@ -141,7 +136,7 @@ our <a class="reference external" href="http://www.mathjax.org/community/mathjax
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
- <a href="model.html" title="The MathJax Processing Model"
+ <a href="whats-new.html" title="What’s New in MathJax v1.1"
>next</a> |</li>
<li class="right" >
<a href="output.html" title="MathJax Output Formats"
diff --git a/docs/html/config-files.html b/docs/html/config-files.html
@@ -0,0 +1,276 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <title>Common Configurations — MathJax v1.1 documentation</title>
+ <link rel="stylesheet" href="_static/mj.css" type="text/css" />
+ <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
+ <script type="text/javascript">
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: '',
+ VERSION: '1.1',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ </script>
+ <script type="text/javascript" src="_static/jquery.js"></script>
+ <script type="text/javascript" src="_static/underscore.js"></script>
+ <script type="text/javascript" src="_static/doctools.js"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
+ <link rel="top" title="MathJax v1.1 documentation" href="index.html" />
+ <link rel="next" title="Configuration Objects" href="options/index.html" />
+ <link rel="prev" title="Loading and Configuring MathJax" href="configuration.html" />
+ </head>
+ <body>
+
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="genindex.html" title="General Index"
+ accesskey="I">index</a></li>
+ <li class="right" >
+ <a href="options/index.html" title="Configuration Objects"
+ accesskey="N">next</a> |</li>
+ <li class="right" >
+ <a href="configuration.html" title="Loading and Configuring MathJax"
+ accesskey="P">previous</a> |</li>
+ <li><a href="index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+
+ <div class="document">
+ <div class="documentwrapper">
+ <div class="bodywrapper">
+ <div class="body">
+
+ <div class="section" id="common-configurations">
+<span id="id1"></span><h1>Common Configurations<a class="headerlink" href="#common-configurations" title="Permalink to this headline">¶</a></h1>
+<p>MathJax comes with a number of pre-defined configuration files in the
+<tt class="docutils literal"><span class="pre">MathJax/config</span></tt> directory. The <tt class="docutils literal"><span class="pre">default.js</span></tt> file contains nearly all
+the possible configuration options together with comments explaining them,
+so you can use that file to customize MathJax to your needs. Simply load
+it via</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js?config=default"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>where <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> is the URL to the MathJax directory on your
+server or hard disk.</p>
+<p>The remaining files are combined configuration files that include not just
+configuration parameters but also the files that MathJax would need to
+load for those configurations. This means MathJax will have to load fewer
+files, and since each file access requires establishing connections over
+the network, it can be better to load one larger file than several smaller
+ones. See <a class="reference internal" href="configuration.html#loading"><em>Loading and Configuring MathJax</em></a> for more
+details about how to load configurations, and how to modify the parameters
+for a configuration file.</p>
+<p>The following sections describe the contents of the combined configuration
+files. Each comes in two flavors: a standard version and a “full” version.
+The standard version simply defines the output processor(s) that are part
+of the configuration, but doesn’t load the code that implements the output
+processor; the full version loads the complete output processors, so
+everything that MathJax needs for the page should be loaded up front, and
+there will be no delay once the page is ready to be processed. To obtain
+the “full” version, add <tt class="docutils literal"><span class="pre">-full</span></tt> to the end of the configuration file
+name.</p>
+<div class="section" id="the-tex-ams-mml-htmlormml-configuration-file">
+<h2>The <tt class="docutils literal"><span class="pre">TeX-AMS-MML_HTMLorMML</span></tt> configuration file<a class="headerlink" href="#the-tex-ams-mml-htmlormml-configuration-file" title="Permalink to this headline">¶</a></h2>
+<p>This configuration file is the most general of the pre-defined
+configurations. It loads all the important MathJax components, including
+the TeX and MathML preprocessors and input processors, the AMSmath,
+AMSsymbols, noErrors, and noUndefined TeX extensions, both the native
+MathML and HTML-with-CSS output processor definitions, and the MathMenu and
+MathZoom extensions. It is equivalent to the following configuration:</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">config</span><span class="o">:</span> <span class="p">[</span><span class="s2">"MMLorHTML.js"</span><span class="p">],</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"input/MathML"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">,</span><span class="s2">"output/NativeMML"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">,</span><span class="s2">"mml2jax.js"</span><span class="p">,</span><span class="s2">"MathMenu.js"</span><span class="p">,</span><span class="s2">"MathZoom.js"</span><span class="p">],</span>
+ <span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"AMSmath.js"</span><span class="p">,</span><span class="s2">"AMSsymbols.js"</span><span class="p">,</span><span class="s2">"noErrors.js"</span><span class="p">,</span><span class="s2">"noUndefined.js"</span><span class="p">]</span>
+ <span class="p">}</span>
+<span class="p">});</span>
+</pre></div>
+</div>
+<p>In addition, it loads the mml Element Jax, the TeX and MathML input jax
+main code (not just the definition files), as well as the <cite>toMathML</cite>
+extension, which is used by the Show Source option in the MathJax
+contextual menu. The full version also loads both the HTML-CSS and
+NativeMML output jax main code, plus the HTML-CSS <cite>mtable</cite> extension, which
+is normally loaded on demand.</p>
+<p>See the <a class="reference internal" href="options/tex2jax.html#configure-tex2jax"><em>tex2jax configuration</em></a> section for
+other configuration options for the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> preprocessor, and the
+<a class="reference internal" href="options/TeX.html#configure-tex"><em>TeX input jax configuration</em></a> section for options
+that control the TeX input processor.
+See the <a class="reference internal" href="options/mml2jax.html#configure-mml2jax"><em>mml2jax configuration</em></a> section for
+other configuration options for the <tt class="docutils literal"><span class="pre">mml2jax</span></tt> preprocessor, and the
+<a class="reference internal" href="options/MathML.html#configure-mathml"><em>MathML input jax configuration</em></a> section for
+options that control the MathML input processor.
+See <a class="reference internal" href="output.html#output-formats"><em>MathJax Output Formats</em></a> for more
+information on the NativeMML and HTML-CSS output processors. See the
+<a class="reference internal" href="options/MMLorHTML.html#configure-mmlorhtml"><em>MMLorHTML configuration</em></a> section for
+details on the options that control the <tt class="docutils literal"><span class="pre">MMLorHTML</span></tt> configuration.</p>
+</div>
+<div class="section" id="the-tex-ams-html-configuration-file">
+<h2>The <tt class="docutils literal"><span class="pre">TeX-AMS_HTML</span></tt> configuration file<a class="headerlink" href="#the-tex-ams-html-configuration-file" title="Permalink to this headline">¶</a></h2>
+<p>This configuration file is for sites that only use TeX format for their
+mathematics, and that want the output to be as close to TeX output as
+possible. This uses the HTML-CSS output jax (even when the user’s browser
+understands MathML). The user can still use the MathJax contextual menu
+to select the NativeMML output jax if they desire.</p>
+<p>This file includes all the important MathJax components for TeX input and
+output, including the <cite>tex2jax</cite> preprocessor and TeX input jax, the
+AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, the
+HTML-with-CSS output processor definition, and the MathMenu and MathZoom
+extensions. It is equivalent to the following configuration:</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">,</span><span class="s2">"MathMenu.js"</span><span class="p">,</span><span class="s2">"MathZoom.js"</span><span class="p">],</span>
+ <span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"AMSmath.js"</span><span class="p">,</span><span class="s2">"AMSsymbols.js"</span><span class="p">,</span><span class="s2">"noErrors.js"</span><span class="p">,</span><span class="s2">"noUndefined.js"</span><span class="p">]</span>
+ <span class="p">}</span>
+<span class="p">});</span>
+</pre></div>
+</div>
+<p>In addition, it loads the mml Element Jax and the TeX input jax main code
+(not just the definition file), as well as the <cite>toMathML</cite> extension, which
+is used by the Show Source option in the MathJax contextual menu. The full
+version also loads the HTML-CSS output jax main code, plus the HTML-CSS
+<cite>mtable</cite> extension, which is normally loaded on demand.</p>
+<p>See the <a class="reference internal" href="options/tex2jax.html#configure-tex2jax"><em>tex2jax configuration</em></a> section for
+other configuration options for the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> preprocessor, and the
+<a class="reference internal" href="options/TeX.html#configure-tex"><em>TeX input jax configuration</em></a> section for options
+that control the TeX input processor.
+See <a class="reference internal" href="output.html#output-formats"><em>MathJax Output Formats</em></a> for more
+information on the HTML-CSS output processor.</p>
+</div>
+<div class="section" id="the-mml-htmlormml-configuration-file">
+<h2>The <tt class="docutils literal"><span class="pre">MML_HTMLorMML</span></tt> configuration file<a class="headerlink" href="#the-mml-htmlormml-configuration-file" title="Permalink to this headline">¶</a></h2>
+<p>This configuration file is for sites that only use MathML format for their
+mathematics. It will use MathML output in browsers where that is
+supported, and HTML-CSS output otherwise. The user can still use the
+MathJax contextual menu to select the other output format if they desire.</p>
+<p>This file includes all the important MathJax components for MathML input
+and output, including the <cite>mml2jax</cite> preprocessor and MathML input jax, the
+NativeMML and HTML-CSS output processor definition files, and the MathMenu
+and MathZoom extensions. It is equivalent to the following configuration:</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">config</span><span class="o">:</span> <span class="p">[</span><span class="s2">"MMLorHTML.js"</span><span class="p">],</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/MathML"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">,</span><span class="s2">"output/NativeMML"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"mml2jax.js"</span><span class="p">,</span><span class="s2">"MathMenu.js"</span><span class="p">,</span><span class="s2">"MathZoom.js"</span><span class="p">]</span>
+<span class="p">});</span>
+</pre></div>
+</div>
+<p>In addition, it loads the mml Element Jax and the MathML input jax main
+code (not just the definition file), as well as the <cite>toMathML</cite> extension,
+which is used by the Show Source option in the MathJax contextual menu.
+The full version also loads both the HTML-CSS and NativeMML output jax main
+code files, plus the HTML-CSS <cite>mtable</cite> extension, which is normally loaded
+on demand.</p>
+<p>See the <a class="reference internal" href="options/mml2jax.html#configure-mml2jax"><em>mml2jax configuration</em></a> section for
+other configuration options for the <tt class="docutils literal"><span class="pre">mml2jax</span></tt> preprocessor, and the
+<a class="reference internal" href="options/MathML.html#configure-mathml"><em>MathML input jax configuration</em></a> section for
+options that control the MathML input processor.
+See <a class="reference internal" href="output.html#output-formats"><em>MathJax Output Formats</em></a> for more
+information on the NativeMML and HTML-CSS output processors. See the
+<a class="reference internal" href="options/MMLorHTML.html#configure-mmlorhtml"><em>MMLorHTML configuration</em></a> section for
+details on the options that control the <tt class="docutils literal"><span class="pre">MMLorHTML</span></tt> configuration.</p>
+</div>
+<div class="section" id="the-accessible-configuration-file">
+<h2>The <tt class="docutils literal"><span class="pre">Accessible</span></tt> configuration file<a class="headerlink" href="#the-accessible-configuration-file" title="Permalink to this headline">¶</a></h2>
+<p>This configuration file is essentially the same as
+<tt class="docutils literal"><span class="pre">TeX-AMS-MML_HTMLorMML</span></tt> except that it includes configuration that is
+designed for assitive technology, particularly for those with visual
+challenges. It is equivalent to the following configuration:</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">config</span><span class="o">:</span> <span class="p">[</span><span class="s2">"MMLorHTML.js"</span><span class="p">],</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"input/MathML"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">,</span><span class="s2">"output/NativeMML"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">,</span><span class="s2">"mml2jax.js"</span><span class="p">,</span><span class="s2">"MathMenu.js"</span><span class="p">,</span><span class="s2">"MathZoom.js"</span><span class="p">],</span>
+ <span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"AMSmath.js"</span><span class="p">,</span><span class="s2">"AMSsymbols.js"</span><span class="p">,</span><span class="s2">"noErrors.js"</span><span class="p">,</span><span class="s2">"noUndefined.js"</span><span class="p">]</span>
+ <span class="p">},</span>
+ <span class="nx">NativeMML</span><span class="o">:</span> <span class="p">{</span> <span class="nx">showMathMenuMSIE</span><span class="o">:</span> <span class="kc">false</span> <span class="p">},</span>
+ <span class="nx">menuSettings</span><span class="o">:</span> <span class="p">{</span> <span class="nx">zoom</span><span class="o">:</span> <span class="s2">"Double-Click"</span> <span class="p">},</span>
+ <span class="nx">errorSettings</span><span class="o">:</span> <span class="p">{</span> <span class="nx">message</span><span class="o">:</span> <span class="p">[</span><span class="s2">"[Math Error]"</span><span class="p">]</span> <span class="p">}</span>
+<span class="p">});</span>
+</pre></div>
+</div>
+<p>This turns off the MathJax contextual Message for Internet Explorer, since
+it can interfere with some screen readers. It also sets the zoom trigger
+to double-click, so that readers can see a larger version of the
+mathematics but double-clicking on any equation.</p>
+<p>In addition, it loads the mml Element Jax, the TeX and MathML input jax
+main code (not just the definition files), as well as the <cite>toMathML</cite>
+extension, which is used by the Show Source option in the MathJax
+contextual menu. The full version also loads both the HTML-CSS and
+NativeMML output jax main code, plus the HTML-CSS <cite>mtable</cite> extension, which
+is normally loaded on demand.</p>
+</div>
+</div>
+
+
+ </div>
+ </div>
+ </div>
+ <div class="sphinxsidebar">
+ <div class="sphinxsidebarwrapper">
+ <h3><a href="index.html">Table Of Contents</a></h3>
+ <ul>
+<li><a class="reference internal" href="#">Common Configurations</a><ul>
+<li><a class="reference internal" href="#the-tex-ams-mml-htmlormml-configuration-file">The <tt class="docutils literal"><span class="pre">TeX-AMS-MML_HTMLorMML</span></tt> configuration file</a></li>
+<li><a class="reference internal" href="#the-tex-ams-html-configuration-file">The <tt class="docutils literal"><span class="pre">TeX-AMS_HTML</span></tt> configuration file</a></li>
+<li><a class="reference internal" href="#the-mml-htmlormml-configuration-file">The <tt class="docutils literal"><span class="pre">MML_HTMLorMML</span></tt> configuration file</a></li>
+<li><a class="reference internal" href="#the-accessible-configuration-file">The <tt class="docutils literal"><span class="pre">Accessible</span></tt> configuration file</a></li>
+</ul>
+</li>
+</ul>
+
+ <h4>Previous topic</h4>
+ <p class="topless"><a href="configuration.html"
+ title="previous chapter">Loading and Configuring MathJax</a></p>
+ <h4>Next topic</h4>
+ <p class="topless"><a href="options/index.html"
+ title="next chapter">Configuration Objects</a></p>
+<div id="searchbox" style="display: none">
+ <h3>Quick search</h3>
+ <form class="search" action="search.html" method="get">
+ <input type="text" name="q" size="18" />
+ <input type="submit" value="Go" />
+ <input type="hidden" name="check_keywords" value="yes" />
+ <input type="hidden" name="area" value="default" />
+ </form>
+ <p class="searchtip" style="font-size: 90%">
+ Enter search terms or a module, class or function name.
+ </p>
+</div>
+<script type="text/javascript">$('#searchbox').show(0);</script>
+ </div>
+ </div>
+ <div class="clearer"></div>
+ </div>
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="genindex.html" title="General Index"
+ >index</a></li>
+ <li class="right" >
+ <a href="options/index.html" title="Configuration Objects"
+ >next</a> |</li>
+ <li class="right" >
+ <a href="configuration.html" title="Loading and Configuring MathJax"
+ >previous</a> |</li>
+ <li><a href="index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+ <div class="footer">
+ © Copyright 2011 Design Science.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.7.
+ </div>
+
+ </body>
+</html>
+\ No newline at end of file
diff --git a/docs/html/configuration.html b/docs/html/configuration.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
- <link rel="next" title="The Core Configuration Options" href="options/hub.html" />
+ <link rel="next" title="Common Configurations" href="config-files.html" />
<link rel="prev" title="Installing and Testing MathJax" href="installation.html" />
</head>
<body>
@@ -35,7 +35,7 @@
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
- <a href="options/hub.html" title="The Core Configuration Options"
+ <a href="config-files.html" title="Common Configurations"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="installation.html" title="Installing and Testing MathJax"
@@ -53,28 +53,48 @@
<span id="loading"></span><h1>Loading and Configuring MathJax<a class="headerlink" href="#loading-and-configuring-mathjax" title="Permalink to this headline">¶</a></h1>
<p>You load MathJax into a web page by including its main JavaScript file
into the page. That is done via a <tt class="docutils literal"><span class="pre"><script></span></tt> tag that links to the
-<tt class="docutils literal"><span class="pre">MathJax.js</span></tt> file. Place the following line in the <tt class="docutils literal"><span class="pre"><head></span></tt>
+<tt class="docutils literal"><span class="pre">MathJax.js</span></tt> file. To do that, place the following line in the <tt class="docutils literal"><span class="pre"><head></span></tt>
section of your document:</p>
<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></script></span>
</pre></div>
</div>
-<p>where <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> is replaced by the URL of the MathJax
-directory on your server, or (if you are using MathJax locally rather
-than through a server) the location of that directory on your hard
-disk. For example, if the MathJax directory is at the top level of
-your web server’s directory hierarchy, you might use</p>
+<p>where <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> is replaced by the URL of the copy of MathJax
+that you are loading. For example, if you are using the MathJax
+distributed network service, the tag might be</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js"</span><span class="nt">></span>
+<span class="nt"></script></span>
+</pre></div>
+</div>
+<p>If you have installed MathJax yourself, <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> will be the
+location of MathJax on your server, or (if you are using MathJax locally
+rather than through a server) the location of that directory on your hard
+disk. For example, if the MathJax directory is at the top level of your
+web server’s directory hierarchy, you might use</p>
<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
</pre></div>
</div>
<p>to load MathJax.</p>
-<p>Although it is possible to load MathJax from a site other than your
-own web server, there are issues involved in doing so that you need to
-take into consideration. See the <a class="reference internal" href="installation.html#cross-domain-linking"><em>Notes About Shared Servers</em></a> for more details. Please do <strong>not</strong> link to
-the copy of MathJax at <tt class="docutils literal"><span class="pre">www.mathjax.org</span></tt>, as we do not have the
-resources to act as a web service for all the sites on the web that
-would like to display mathematics. If you are able to run MathJax
-from your own server, please do so (this will probably give you better
-response time in any case).</p>
+<p>If you install MathJax on a server in a domain that is different from the
+one containing the page that will load MathJax, then there are issues
+involved in doing so that you need to take into consideration. See the
+<a class="reference internal" href="installation.html#cross-domain-linking"><em>Notes About Shared Servers</em></a> for more details.</p>
+<p>When you load MathJax, it is common to include additional parameters for
+MathJax as part of the URL. These control MathJax’s configuration, and are
+discussed in the <a class="reference internal" href="options/index.html#configuration"><em>Configuration Objects</em></a> section. A
+typical invocation of MathJax would be</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></script></span>
+</pre></div>
+</div>
+<p>which loads MathJax with a configuration file that includes everything you
+need in order to enter mathematics in either TeX, LaTeX, or MathML
+notation, and produces output using MathML if the browser supports that,
+or HTML-with-CSS otherwise. If you <strong>don’t</strong> load an explicit
+configuration file, you will need to include an in-line configuration
+block in order to tell MathJax how to read and display the mathematics on
+your pages. See the section below for details.</p>
<p>It is best to load MathJax in the document’s <tt class="docutils literal"><span class="pre"><head></span></tt> block, but it
is also possible to load MathJax into the <tt class="docutils literal"><span class="pre"><body></span></tt> section, if
needed. If you do this, load it as early as possible, as
@@ -87,275 +107,300 @@ if you are loading MathJax in the <tt class="docutils literal"><span class="pre"
been prepared, for example, via a <a class="reference external" href="http://www.greasespot.net/">GreaseMonkey</a> script, or using a specially prepared
<a class="reference external" href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a>. This is an
advanced topic, however; see <a class="reference internal" href="dynamic.html#ajax-mathjax"><em>Loading MathJax Dynamically</em></a> for more details.</p>
-<div class="section" id="configuring-mathjax">
-<h2>Configuring MathJax<a class="headerlink" href="#configuring-mathjax" title="Permalink to this headline">¶</a></h2>
-<p>There are several ways to configure MathJax, but the easiest is to use
-the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file that comes with MathJax. See the
-comments in that file, or the <a class="reference internal" href="#configuration"><em>configuration details</em></a> section, for explanations of the meanings of the various
-configuration options. You can edit the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file to
-change any of the settings that you want to customize. When you
-include MathJax in your page via</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></script></span>
+<div class="section" id="loading-mathjax-from-the-cdn">
+<span id="loading-cdn"></span><h2>Loading MathJax from the CDN<a class="headerlink" href="#loading-mathjax-from-the-cdn" title="Permalink to this headline">¶</a></h2>
+<p>MathJax is now available as a web service from <tt class="docutils literal"><span class="pre">cdn.mathjax.org</span></tt>, so you
+can obtain MathJax from there without needing to install it on your own
+server. The CDN is part of a distributed “cloud” network, so it is
+handled by servers around the world. That means that you should get acces
+to a server geographically near you, for a fast, reliable connection.</p>
+<p>The CDN hosts the most current version of MathJax, as well as older
+versions, so you can either link to a version that stays up-to-date as
+Mathjax is improved, or you can stay with one of the release versions so
+that you pages always use the same version of MathJax.</p>
+<p>The URL that you use to obtain MathJax determines the version that you
+get. The CDN has the following directory structure:</p>
+<div class="highlight-sh"><div class="highlight"><pre>mathjax/ <span class="c"># project-name</span>
+ 1.0-latest/
+ 1.1-beta/ <span class="c"># temporary</span>
+ 1.1-latest/ <span class="c"># the 1.1 release with any ciritical patches</span>
+ ...
+ latest/ <span class="c"># the most current version (1.1-latest in this case)</span>
</pre></div>
</div>
-<p>it will load <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> automatically as one of its
-first actions.</p>
-<p>Alternatively, you can configure MathJax efficiently by calling
-<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> when you include MathJax in your page, as
-follows:</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></span>
- <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">],</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span> <span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
- <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s2">"\\("</span><span class="p">,</span><span class="s2">"\\)"</span><span class="p">]</span> <span class="p">],</span>
- <span class="nx">displayMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$$'</span><span class="p">,</span><span class="s1">'$$'</span><span class="p">],</span> <span class="p">[</span><span class="s2">"\\["</span><span class="p">,</span><span class="s2">"\\]"</span><span class="p">]</span> <span class="p">],</span>
- <span class="p">},</span>
- <span class="s2">"HTML-CSS"</span><span class="o">:</span> <span class="p">{</span> <span class="nx">availableFonts</span><span class="o">:</span> <span class="p">[</span><span class="s2">"TeX"</span><span class="p">]</span> <span class="p">}</span>
- <span class="p">});</span>
-<span class="nt"></script></span>
+<p>Each directory corresponds to an official MathJax release; however,
+hotfixes (urgent bug fixes) will be applied in each release branch as
+necessary, even if new releases are not prepared. In other words,
+<tt class="docutils literal"><span class="pre">1.1-latest</span></tt> will initially point to v1.1, but over time may be updated
+with patches that would correspond to releases that might be numbers 1.1a,
+1.1b, etc., even if such releases are not actually prepared for
+distribution (they likely won’t be).</p>
+<p>We may occasionally introduce directories for betas, as indicated above,
+but they will be temprorary, and will be removed after the official
+release.</p>
+<p>To load from a particular release, use the directory for that release.
+For example,</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/1.1-latest/MathJax.js"</span><span class="nt">></script></span>
</pre></div>
</div>
-<p>This example includes the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> preprocessor and configures it
-to use both the standard TeX and LaTeX math delimiters. It uses the
-TeX input processor and the HTML-CSS output processor, and forces the
-HTML-CSS processor to use the TeX fonts rather that other locally
-installed fonts (e.g., <a class="reference internal" href="glossary.html#term-stix"><em class="xref std std-term">STIX</em></a> fonts). See the
-<a class="reference internal" href="#configuration"><em>configuration options</em></a> section (or the comments
-in the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file) for more information about the
-configuration options that you can include in the
-<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call. Note that if you configure MathJax
-using this in-line approach, the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file is <strong>not</strong>
-loaded.</p>
-<p>Finally, if you would like to use several different configuration
-files (like <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt>, but with different settings in each
-one), you can copy <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> to <tt class="docutils literal"><span class="pre">config/MathJax-2.js</span></tt>,
-or some other convenient name, and use</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></span>
- <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span> <span class="nx">config</span><span class="o">:</span> <span class="s2">"MathJax-2.js"</span> <span class="p">});</span>
-<span class="nt"></script></span>
+<p>will load the stable v1.1 version, even if we release v1.2 or other later
+versions, while</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js"</span><span class="nt">></script></span>
</pre></div>
</div>
-<p>to load the alternative configuration file <tt class="docutils literal"><span class="pre">config/MathJax-2.js</span></tt>
-from the MathJax <tt class="docutils literal"><span class="pre">config</span></tt> directory. In this way, you can have as
-many distinct configuration files as you need.</p>
+<p>will always be the most current stable release, so it will go from v1.1 to
+v1.2 autmatically when that is released. Note that all the versions
+available on the CDN are stable versions; the development version is not
+hosted on the CDN.</p>
+<p>The use of <tt class="docutils literal"><span class="pre">cdn.mathjax.org</span></tt> is governed by its <a class="reference external" href="http://www.mathjax.org/download/mathjax-cdn-terms-of-service/">terms of service</a>, so be
+sure to read that before linked to the MathJax CDN server.</p>
</div>
-<div class="section" id="common-configurations">
-<span id="id1"></span><h2>Common Configurations<a class="headerlink" href="#common-configurations" title="Permalink to this headline">¶</a></h2>
-<p>The following examples show configurations that are useful for some
-common situations. This is certainly not an exhaustive list, and
-there are variations possible for any of them. Again, the comments in
-the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file can help you decide what settings to
-include, even if you are using the in-line configuration method.</p>
-<div class="section" id="the-tex-setup">
-<h3>The TeX setup<a class="headerlink" href="#the-tex-setup" title="Permalink to this headline">¶</a></h3>
-<p>This example calls the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> preprocessor to identify
-mathematics in the page by looking for TeX and LaTeX math delimiters.
-It uses <tt class="docutils literal"><span class="pre">$...$</span></tt> and <tt class="docutils literal"><span class="pre">\(...\)</span></tt> for in-line mathematics, while
-<tt class="docutils literal"><span class="pre">$$...$$</span></tt> and <tt class="docutils literal"><span class="pre">\[...\]</span></tt> mark displayed equations. Because dollar
-signs are used to mark mathematics, if you want to produce an actual
-dollar sign in your document, you must “escape” it using a slash:
-<tt class="docutils literal"><span class="pre">\$</span></tt>. This configuration also loads the <tt class="docutils literal"><span class="pre">AMSmath</span></tt> and
-<tt class="docutils literal"><span class="pre">AMSsymbols</span></tt> extensions so that the macros and environments they
-provide are defined for use on the page.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">,</span><span class="s2">"TeX/AMSmath.js"</span><span class="p">,</span><span class="s2">"TeX/AMSsymbols.js"</span><span class="p">],</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
- <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],[</span><span class="s2">"\\("</span><span class="p">,</span><span class="s2">"\\)"</span><span class="p">]],</span>
- <span class="nx">processEscapes</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span>
- <span class="p">},</span>
-<span class="p">});</span>
-</pre></div>
-</div>
-<p>Other extensions that you may consider adding to the <cite>extensions</cite>
-array include: <tt class="docutils literal"><span class="pre">TeX/noErrors.js</span></tt>, which shows the original TeX code
-if an error occurs while processing the mathematics (rather than an
-error message), <tt class="docutils literal"><span class="pre">TeX/noUndefined.js</span></tt>, which shows undefined
-macros names in red (rather than producing an error), and
-<tt class="docutils literal"><span class="pre">TeX/autobold.js</span></tt>, which automatically inserts <tt class="docutils literal"><span class="pre">\boldsymbol{...}</span></tt>
-around your mathematics when it appears in a section of your page that
-is in bold. Most of the other TeX extensions are loaded automatically
-when needed, and so do not need to be included explicitly in your
-<cite>extensions</cite> array.</p>
-<p>See the <a class="reference internal" href="options/tex2jax.html#configure-tex2jax"><em>tex2jax configuration</em></a> section for
-other configuration options for the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> preprocessor, and the
-<a class="reference internal" href="options/TeX.html#configure-tex"><em>TeX input jax configuration</em></a> section for options
-that control the TeX input processor.</p>
+<div class="section" id="configuring-mathjax">
+<h2>Configuring MathJax<a class="headerlink" href="#configuring-mathjax" title="Permalink to this headline">¶</a></h2>
+<p>There are two ways to configure MathJax: via a configuration file, or by
+including configuration commands wthin the web page itself. These can be
+used independently, or in combination. For example, you can load a main
+pre-defined configuration file, but include in-line commands to
+adjust the configuration to your needs.</p>
+<p>Note that you must use at least one of these two forms of configuration.
+Unlike earlier versions of MathJax, version 1.1 does not load a default
+configuration file. If you have been using version 1.0’s
+<tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> for your configuration, you will need to load that
+configuration file explicitly via a <tt class="docutils literal"><span class="pre">config</span></tt> parameter, as described
+below.</p>
</div>
-<div class="section" id="the-mathml-setup">
-<h3>The MathML setup<a class="headerlink" href="#the-mathml-setup" title="Permalink to this headline">¶</a></h3>
-<p>This example calls the <tt class="docutils literal"><span class="pre">mml2jax</span></tt> preprocessor to identify
-mathematics in the page that is in <a class="reference internal" href="glossary.html#term-mathml"><em class="xref std std-term">MathML</em></a> format, which uses
-<tt class="docutils literal"><span class="pre"><math</span> <span class="pre">display="block"></span></tt> to indicate displayed equations, and
-<tt class="docutils literal"><span class="pre"><math</span> <span class="pre">display="inline"></span></tt> or simply <tt class="docutils literal"><span class="pre"><math></span></tt> to mark in-line
-formulas.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"mml2jax.js"</span><span class="p">],</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/MathML"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">]</span>
-<span class="p">});</span>
+<div class="section" id="using-a-configuration-file">
+<span id="config-files"></span><h2>Using a configuration file<a class="headerlink" href="#using-a-configuration-file" title="Permalink to this headline">¶</a></h2>
+<p>The first way to configure MathJax is to use a configuration file.
+MathJax comes with a number of pre-defined configuration files, which are
+stored in the <tt class="docutils literal"><span class="pre">MathJax/config</span></tt> directory. Among these are the following</p>
+<dl class="describe">
+<dt>
+<tt class="descname">default.js</tt></dt>
+<dd><p>A file that contains nearly all the configuration options with comments
+describing them, which you can edit to suit your needs.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
+<tt class="descname">TeX-AMS-MML_HTMLorMML.js</tt></dt>
+<dd><p>Allows math to be specified in TeX, LaTeX, or MathML notation, with the
+<cite>AMSmath</cite> and <cite>AMSsymbols</cite> packages included, producing output using
+MathML if the browser supports it, and HTML-with-CSS otherwise.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
+<tt class="descname">TeX-AMS_HTML.js</tt></dt>
+<dd><p>Allows math to be specified in TeX or LaTeX notation (with the
+<cite>AMSmath</cite> and <cite>AMSsymbols</cite> packages included, and produces output
+using the HTML-CSS output processor.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
+<tt class="descname">MML_HTMLorMML.js</tt></dt>
+<dd><p>Allows math to be specified using MathML notation, and produces MathML
+output if the browser supports it, or HTML-CSS output otherwise.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
+<tt class="descname">Accessible.js</tt></dt>
+<dd><p>Essentially the same as <tt class="docutils literal"><span class="pre">TeX-AMS-MML_HTMLorMML</span></tt>, but with some
+settings specified to make MathJax work better with assistive
+technology (for the visually impaired). This includes setting the
+zoom trigger to be a double-click, and removing the MathMenu in
+Internet Explorer (which can interfere with some screen readers).</p>
+</dd></dl>
+
+<p>The first of these is a file that you can edit to suit your needs. It
+contains nearly all the configuration options that MathJax allows, and has
+comments explaining them. The others are what are called <cite>combined
+configuration files</cite>, which not only configure MathJax, but also pre-load the
+various files that the configuration requires. (The contents of these
+files are explained in more detail in the <a class="reference external" href="common-configurations">Common Configurations</a> section.)</p>
+<p>Usually, MathJax loads its components only when they are needed, but each
+component will require a separate file to be loaded, and that can cause
+delays before the mathematics is displayed. The combined configuration
+files load the majority of the needed files all as one large file, reducing
+the number of network requests that are needed. That means you will
+probably be getting the componets that MathJax needs faster than you would
+without the combined file, but you may be loading components that are never
+actually used; that is the trade off.</p>
+<p>Each of the combined configuration files comes in two flavors: the ones
+listed above, which only configure the output processors but don’t include
+the main code, and a “full” version, that also includes the complete
+output processors. For example, with <tt class="docutils literal"><span class="pre">TeX-AMS_HTML.js</span></tt> and
+<tt class="docutils literal"><span class="pre">TeX-AMS_HTML-full.js</span></tt>, the latter includes the complete HTML-CSS output
+processor. The “full” configuration files are substantially larger (on
+the order of 70KB), so you need to decide whether it is worth loading the
+full configuraiton for your pages.</p>
+<p>If most of your pages include mathematics, then it is to your advantage to
+load the full version, but if you are including MathJax in a theme file for
+a blog or wiki that only includes mathematics occasionally, then perhaps it
+is better to use the standard configuration instead, in which case the
+output processors are only loaded when they are actually needed, saving the
+loading of 70KB for pages that don’t. Of course, if your server is
+configured to compress the files it sends, the difference between the two
+is considerably reduced. Furthermore, most browsers will cache the
+javascript they receive, so the download cost should only occur on the
+first page a user views, so it may be best to use the “full” version after
+all. Note, however, that mobile devices sometimes have limits on the size
+of files that they cache, so they may be forced to download the
+configuration on every page. You need to keep these issues in mind as you
+decide on which configuration to use.</p>
+<p>To load a configuration file, use <tt class="docutils literal"><span class="pre">config=filename</span></tt> (where <tt class="docutils literal"><span class="pre">filename</span></tt>
+is one of the names above without the <tt class="docutils literal"><span class="pre">.js</span></tt>) as a parameter to the URL of
+the <tt class="docutils literal"><span class="pre">MathJax.js</span></tt> file. For example</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></script></span>
</pre></div>
</div>
-<p>Note that this will work in HTML files, not just XHTML files (MathJax
-works with both), and that the web page need not be served with any
-special MIME-type. Also note that, unless you are using XHTML rather
-than HTML, you should not include a namespace prefix for your
-<tt class="docutils literal"><span class="pre"><math></span></tt> tags; for example, you should not use <tt class="docutils literal"><span class="pre"><m:math></span></tt> except
-in a file where you have tied the <tt class="docutils literal"><span class="pre">m</span></tt> namespace to the MathML DTD.</p>
-<p>See the <a class="reference internal" href="options/mml2jax.html#configure-mml2jax"><em>mml2jax configuration</em></a> section for
-other configuration options for the <tt class="docutils literal"><span class="pre">mml2jax</span></tt> preprocessor, and the
-<a class="reference internal" href="options/MathML.html#configure-mathml"><em>MathML input jax configuration</em></a> section for
-options that control the MathML input processor.</p>
-</div>
-<div class="section" id="both-tex-and-mathml">
-<h3>Both TeX and MathML<a class="headerlink" href="#both-tex-and-mathml" title="Permalink to this headline">¶</a></h3>
-<p>This example provides for both TeX and MathML input in the same file.
-It calls on both the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> and <tt class="docutils literal"><span class="pre">mml2jax</span></tt> preprocessors and the
-TeX and MathML input jax to do the job.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">,</span> <span class="s2">"mml2jax.js"</span><span class="p">],</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span> <span class="s2">"input/MathML"</span><span class="p">,</span> <span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
-<span class="p">});</span>
+<p>loads the <tt class="docutils literal"><span class="pre">config/TeX-AMS-MML_HTMLorMML.js</span></tt> configuration file from the
+MathJax distributed network service.</p>
+<p>You can include more than one configuration file by separating them with
+commas. For example, if you have a locally defined configuration file
+called <tt class="docutils literal"><span class="pre">MathJax/config/local/local.js</span></tt> that modifies the settings for the
+<tt class="docutils literal"><span class="pre">TeX-AMS_HML</span></tt> configuration, defines some new TeX macros, and so on, you
+can use</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML,local/local.js"</span><span class="nt">></span>
+<span class="nt"></script></span>
</pre></div>
</div>
-<p>Notice that no <tt class="docutils literal"><span class="pre">tex2jax</span></tt> configuration section is included, so it
-uses its default options (no single dollar signs for in-line math).</p>
-<p>The majority of the code for the TeX and MathML input processors are
-not loaded until they are actually needed by the mathematics on the
-page, so if this configuration is used on a page that include only
-MathML, the TeX input processor will not be loaded. Thus it is
-reasonably efficient to specify both input processors even if only one
-(or neither one) is used.</p>
+<p>to first load the main configuraiton, then the local modifications.</p>
</div>
-<div class="section" id="tex-input-with-mathml-output">
-<h3>TeX input with MathML output<a class="headerlink" href="#tex-input-with-mathml-output" title="Permalink to this headline">¶</a></h3>
-<p>This example configures MathJax to use the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> preprocessor
-and TeX input processor, but the choice of output format is determined
-by MathJax depending on the capabilities of the user’s browser. The
-is performed by the <tt class="docutils literal"><span class="pre">MMLorHTML.js</span></tt> configuration file that is loaded
-in the <cite>config`</cite> array.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">config</span><span class="o">:</span> <span class="p">[</span><span class="s2">"MMLorHTML.js"</span><span class="p">],</span>
+<div class="section" id="using-in-line-configuration-options">
+<h2>Using in-line configuration options<a class="headerlink" href="#using-in-line-configuration-options" title="Permalink to this headline">¶</a></h2>
+<p>The second way to configure MathJax is through <cite>in-line configuration</cite>,
+that puts the configuration options within the web page itself. This
+process has changed in version 1.1 to make it compatible with HTML5.
+Earlier versions of MathJax had in-line configuration included within the
+content of the <tt class="docutils literal"><span class="pre"><script></span></tt> tag that loads <tt class="docutils literal"><span class="pre">MathJax.js</span></tt>, but HTML5 makes
+it illegal to have content for a script with a <tt class="docutils literal"><span class="pre">src</span></tt> attribute.</p>
+<p>MathJax solves this problem by using separate <tt class="docutils literal"><span class="pre"><script></span></tt> tags to perform
+configuration for MathJax. Because MathJax starts its configuration
+process as soon as it is loaded, the configuration script must come
+<strong>before</strong> the script tag that loads <tt class="docutils literal"><span class="pre">MathJax.js</span></tt> itself. You do this
+by including a <tt class="docutils literal"><span class="pre"><script></span></tt> with <tt class="docutils literal"><span class="pre">type="text/x-mathjax-config"</span></tt>, whose
+content will be run when MathJax performs its configuration. Generally,
+this script will include a <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call to perform
+MathJax configuration, but it can also include other MathJax commands,
+such as registering signal actions, or any JavaScript commands that you
+want. You can have as many such script tags as you want, and MathJax will
+process them in order as they appear in the document.</p>
+<p>For instance,</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
<span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">],</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">]</span>
-<span class="p">});</span>
-</pre></div>
-</div>
-<p>With this setup, Firefox or Internet Explorer with the <a class="reference external" href="http://www.dessci.com/en/products/mathplayer/">MathPlayer
-plugin</a> installed
-will use the NativeMML output processor, while all other browsers will
-use the HTML-CSS output processor. Since native MathML support is
-faster than MathJax’s HTML-CSS processor, this will mean that the web
-pages will display faster for Firefox and IE than they would
-otherwise. This speed comes at the cost, however, as you are now
-relying on the native MathML support to render the mathematics, and
-that is outside of MathJax’s control. There may be spacing or other
-display differences (compared to MathJax’s HTML-CSS output) when the
-NativeMML output processor is used.</p>
-<p>See <a class="reference internal" href="output.html#output-formats"><em>MathJax Output Formats</em></a> for more
-information on the NativeMML and HTML-CSS output processors. See the
-<a class="reference internal" href="options/MMLorHTML.html#configure-mmlorhtml"><em>MMLorHTML configuration</em></a> section for
-details on the options that control the <tt class="docutils literal"><span class="pre">MMLorHTML</span></tt> configuration.</p>
-</div>
-<div class="section" id="mathml-input-and-output-in-all-browsers">
-<h3>MathML input and output in all browsers<a class="headerlink" href="#mathml-input-and-output-in-all-browsers" title="Permalink to this headline">¶</a></h3>
-<p>This example configures MathJax to look for MathML within your page,
-and to display it using the browser’s native MathML support, if
-possible, or its HTML-CSS output if not.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">config</span><span class="o">:</span> <span class="p">[</span><span class="s2">"MMLorHTML.js"</span><span class="p">],</span>
- <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"mml2jax.js"</span><span class="p">],</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/MathML"</span><span class="p">]</span>
-<span class="p">});</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span> <span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s2">"\\("</span><span class="p">,</span><span class="s2">"\\)"</span><span class="p">]</span> <span class="p">],</span>
+ <span class="nx">displayMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$$'</span><span class="p">,</span><span class="s1">'$$'</span><span class="p">],</span> <span class="p">[</span><span class="s2">"\\["</span><span class="p">,</span><span class="s2">"\\]"</span><span class="p">]</span> <span class="p">],</span>
+ <span class="nx">processEscapes</span><span class="o">:</span> <span class="kc">true</span>
+ <span class="p">},</span>
+ <span class="s2">"HTML-CSS"</span><span class="o">:</span> <span class="p">{</span> <span class="nx">availableFonts</span><span class="o">:</span> <span class="p">[</span><span class="s2">"TeX"</span><span class="p">]</span> <span class="p">}</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></span>
</pre></div>
</div>
-<p>Using this configuration, MathJax finally makes MathML available in
-all modern browsers.</p>
-<p>See the <a class="reference internal" href="options/MMLorHTML.html#configure-mmlorhtml"><em>MMLorHTML configuration</em></a> section
-for details on the options that control the <tt class="docutils literal"><span class="pre">MMLorHTML</span></tt>
-configuration file, the <a class="reference internal" href="options/MathML.html#configure-mathml"><em>MathML configuration</em></a>
-section for the options that control the MathML output processor, and
-the <a class="reference internal" href="options/mml2jax.html#configure-mml2jax"><em>mml2jax configuration</em></a> section for the
-options that control the <tt class="docutils literal"><span class="pre">mml2jax</span></tt> preprocessor.</p>
-</div>
-</div>
-<div class="section" id="configuration-objects">
-<span id="configuration"></span><h2>Configuration Objects<a class="headerlink" href="#configuration-objects" title="Permalink to this headline">¶</a></h2>
-<p>The various components of MathJax, including its input and output
-processors, its preprocessors, its extensions, and the MathJax core,
-all can be configured through the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file, or via a
-<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call (indeed, if you look closely, you
-will see that <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> is itself one big call to
-<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt>). Anything that is in
-<tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> can be included in-line to configure MathJax.</p>
-<p>The structure that you pass to <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> is a
-JavaScript object that includes name-value pairs giving the names of
-parameters and their values, with pairs separated by commas. Be
-careful not to include a comma after the last value, however, as some
-browsers (namely Internet Explorer) will fail to process the
-configuration if you do.</p>
-<p>The MathJax components, like the TeX input processor, have their own
-sections in the configuration object, labeled by the component name,
-and using an configuration object as its value. The object is itself
-a configuration object made up of name-value pairs that give the
-configuration options for the component.</p>
-<p>For example,</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">showProcessingMessages</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span> <span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
- <span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">TagSide</span><span class="o">:</span> <span class="s2">"left"</span><span class="p">,</span>
- <span class="nx">Macros</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">RR</span><span class="o">:</span> <span class="s1">'{\\bf R}'</span><span class="p">,</span>
- <span class="nx">bold</span><span class="o">:</span> <span class="p">[</span><span class="s1">'{\\bf #1}'</span><span class="p">,</span><span class="mi">1</span><span class="p">]</span>
+<p>This example includes the <cite>tex2jax</cite> preprocessor and configures it to use
+both the standard <a class="reference internal" href="glossary.html#term-tex"><em class="xref std std-term">TeX</em></a> and <a class="reference internal" href="glossary.html#term-latex"><em class="xref std std-term">LaTeX</em></a> math delimiters. It uses
+the <cite>TeX</cite> input processor and the <cite>HTML-CSS</cite> output processor, and forces the
+HTML-CSS processor to use the TeX fonts rather that other locally installed
+fonts (e.g., <a class="reference internal" href="glossary.html#term-stix"><em class="xref std std-term">STIX</em></a> fonts). See the <a class="reference internal" href="options/index.html#configuration"><em>configuration options</em></a> section (or the comments in the <tt class="docutils literal"><span class="pre">config/default.js</span></tt>
+file) for more information about the configuration options that you can
+include in the <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call. Note that this
+configuration does <strong>not</strong> load any pre-defined configuration file.</p>
+<p>Note that you can combine in-line configuration with file-based
+configuration, simply include <tt class="docutils literal"><span class="pre">text/x-mathjax-config</span></tt> scripts as above,
+but also include <tt class="docutils literal"><span class="pre">config=filename</span></tt> when you load the <tt class="docutils literal"><span class="pre">MathJax.js</span></tt>
+file. For example, the <cite>tex2jax</cite> preprocessor does <strong>not</strong> the TeX
+single-dollar in-line math delimiters by default. You can load one of the
+pre-defined configuration files that include the TeX preprocessor, and use
+an in-line configuration block to enable the single-dollar signs:</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s2">"\\("</span><span class="p">,</span><span class="s2">"\\)"</span><span class="p">]</span> <span class="p">],</span>
+ <span class="nx">processEscapes</span><span class="o">:</span> <span class="kc">true</span>
<span class="p">}</span>
- <span class="p">}</span>
-<span class="p">});</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js?config=TeX-AMS_HTML"</span><span class="nt">></span>
+<span class="nt"></script></span>
</pre></div>
</div>
-<p>is a configuration that includes two settings for the MathJax Hub (one
-for <cite>showProcessingMessages</cite> and one of the <cite>jax</cite> array), and a
-configuration object for the TeX input processor. The latter includes
-a setting for the TeX input processor’s <cite>TagSide</cite> option (to set tags
-on the left rather than the right) and a setting for <cite>Macros</cite>, which
-defines new TeX macros (in this case, two macros, one called <tt class="docutils literal"><span class="pre">\RR</span></tt>
-that produces a bold “R”, and one called <tt class="docutils literal"><span class="pre">\bold</span></tt> that puts is
-argument in bold face).</p>
-<p>The <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file is another example that shows nearly
-all the configuration options for all of MathJax’s components.</p>
-</div>
-<div class="section" id="configuration-options-by-component">
-<h2>Configuration Options by Component<a class="headerlink" href="#configuration-options-by-component" title="Permalink to this headline">¶</a></h2>
-<p>The individual options are explained in the following sections, which
-are categorized by the component they affect.</p>
-<div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal" href="options/hub.html">The core options</a></li>
-</ul>
</div>
-<div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal" href="options/tex2jax.html">The tex2jax preprocessor options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/mml2jax.html">The mml2jax preprocessor options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/jsMath2jax.html">The jsMath2jax preprocessor options</a></li>
-</ul>
+<div class="section" id="configuring-mathjax-after-it-is-loaded">
+<span id="delaystartupuntil"></span><h2>Configuring MathJax after it is loaded<a class="headerlink" href="#configuring-mathjax-after-it-is-loaded" title="Permalink to this headline">¶</a></h2>
+<p>Because MathJax begins its configuration process immediately after it is
+loaded (so that it can start loading files as quickly as it can), the
+configuration blocks for MathJax must come before <tt class="docutils literal"><span class="pre">MathJax.js</span></tt> is loaded,
+so they will be available to MathJax when it starts up. There are
+situations, however, when you might want to put off configuring MathJax
+until later in the page.</p>
+<p>One such situation is when you have a site that loads MathJax as part of a
+theme or template, but want to be able to modify the configuration on
+specific pages of the site. To accomplish this, you need to ask MathJax
+to delay its startup configuration until some later time. MathJax uses
+the <tt class="docutils literal"><span class="pre">delayStartupUntil</span></tt> parameter to control the timing of the startup
+sequence. By default, it is set to <tt class="docutils literal"><span class="pre">none</span></tt>, meaning there is no delay
+and MathJax starts configuration right away.</p>
+<p>You can set <tt class="docutils literal"><span class="pre">delayStartupUntil=onload</span></tt> in order to prevent MathJax from
+continuing its startup process until the page’s onLoad handler fires. This
+allows MathJax to find the <tt class="docutils literal"><span class="pre">text/x-mathjax-config</span></tt> blocks that occur
+anywhere on the page, not just the ones that appear above the <tt class="docutils literal"><span class="pre"><script></span></tt>
+that loads <tt class="docutils literal"><span class="pre">MathJax.js</span></tt>. It also means that MathJax will not begin
+loading any of the files that it needs until then as well, which may delay
+the displaying of your mathematics, since the onLoad handler doesn’t
+execute until all the images and other media are available. (If you have
+used a combined configuration file, however, it already includes all the
+main files that MathJax needs, so there is not much loss in delaying the
+startup.)</p>
+<p>You can set <tt class="docutils literal"><span class="pre">delayStartupUntil=configured</span></tt> in order to delay the startup
+configuration until the <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Configured()</span></tt> method is
+called. This allows you to delay startup until later on the page, but
+then restart MathJax configuration process as soon as possible rather than
+waiting for the entire page to load. For example, you could use</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML&delayStartupUntil=configured"</span><span class="nt">></span>
+<span class="nt"></script></span>
+</pre></div>
</div>
-<div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal" href="options/TeX.html">The TeX input processor options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/MathML.html">The MathML input processor options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/HTML-CSS.html">The HTML-CSS output processor options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/NativeMML.html">The NativeMML output processor options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/MMLorHTML.html">The MMLorHTML configuration options</a></li>
-</ul>
+<p>in your theme’s header file, and</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Configured</span><span class="p">()</span>
+<span class="nt"></script></span>
+</pre></div>
</div>
-<div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal" href="options/MathMenu.html">The MathMenu options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/MathZoom.html">The MathZoom options</a></li>
-<li class="toctree-l1"><a class="reference internal" href="options/FontWarnings.html">The FontWarnings options</a></li>
-</ul>
+<p>in its footer, so that MathJax will delay setting up until the footer is
+reached, but will not have to wait until images and other files are
+laoded. If you have <tt class="docutils literal"><span class="pre">text/x-mathjax-config</span></tt> script tags within the main
+body of the document, MathJax will read and process those before
+continuing its startup. In this way you can use a default configuration
+that can be modified on a page-by-page basis.</p>
</div>
+<div class="section" id="details-of-the-mathjax-configuration-process">
+<h2>Details of the MathJax configuration process<a class="headerlink" href="#details-of-the-mathjax-configuration-process" title="Permalink to this headline">¶</a></h2>
+<p>Since there are a number of different ways to configure MathJax, it is
+important to know how they interact. The configuration process is the
+following:</p>
+<ol class="arabic simple">
+<li>Process any configuration file explicitly specified as a script parameter.</li>
+<li>Process the in-line script body (deprecated), if present.</li>
+<li>If delayed startup is requested, wait for the indicated signal.</li>
+<li>Process <tt class="docutils literal"><span class="pre">text/x-mathjax-config</span></tt> config blocks.</li>
+<li>Process any config files queued in the configuration’s <cite>config</cite> array
+by earlier config code.</li>
+</ol>
+<p>Note that <tt class="docutils literal"><span class="pre">text/x-mathjax-config</span></tt> script blocks must either precede the
+<tt class="docutils literal"><span class="pre">MathJax.js</span></tt> script element, or startup must be delayed. Otherwise, blocks
+that follow the <tt class="docutils literal"><span class="pre">MathJax.js</span></tt> script element may or may not be available
+when MathJax runs, and browser-dependent erratic behavior will result.</p>
</div>
</div>
@@ -368,19 +413,12 @@ are categorized by the component they affect.</p>
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Loading and Configuring MathJax</a><ul>
+<li><a class="reference internal" href="#loading-mathjax-from-the-cdn">Loading MathJax from the CDN</a></li>
<li><a class="reference internal" href="#configuring-mathjax">Configuring MathJax</a></li>
-<li><a class="reference internal" href="#common-configurations">Common Configurations</a><ul>
-<li><a class="reference internal" href="#the-tex-setup">The TeX setup</a></li>
-<li><a class="reference internal" href="#the-mathml-setup">The MathML setup</a></li>
-<li><a class="reference internal" href="#both-tex-and-mathml">Both TeX and MathML</a></li>
-<li><a class="reference internal" href="#tex-input-with-mathml-output">TeX input with MathML output</a></li>
-<li><a class="reference internal" href="#mathml-input-and-output-in-all-browsers">MathML input and output in all browsers</a></li>
-</ul>
-</li>
-<li><a class="reference internal" href="#configuration-objects">Configuration Objects</a></li>
-<li><a class="reference internal" href="#configuration-options-by-component">Configuration Options by Component</a><ul>
-</ul>
-</li>
+<li><a class="reference internal" href="#using-a-configuration-file">Using a configuration file</a></li>
+<li><a class="reference internal" href="#using-in-line-configuration-options">Using in-line configuration options</a></li>
+<li><a class="reference internal" href="#configuring-mathjax-after-it-is-loaded">Configuring MathJax after it is loaded</a></li>
+<li><a class="reference internal" href="#details-of-the-mathjax-configuration-process">Details of the MathJax configuration process</a></li>
</ul>
</li>
</ul>
@@ -389,13 +427,8 @@ are categorized by the component they affect.</p>
<p class="topless"><a href="installation.html"
title="previous chapter">Installing and Testing MathJax</a></p>
<h4>Next topic</h4>
- <p class="topless"><a href="options/hub.html"
- title="next chapter">The Core Configuration Options</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/configuration.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
+ <p class="topless"><a href="config-files.html"
+ title="next chapter">Common Configurations</a></p>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
@@ -420,7 +453,7 @@ are categorized by the component they affect.</p>
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
- <a href="options/hub.html" title="The Core Configuration Options"
+ <a href="config-files.html" title="Common Configurations"
>next</a> |</li>
<li class="right" >
<a href="installation.html" title="Installing and Testing MathJax"
diff --git a/docs/html/dynamic.html b/docs/html/dynamic.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="Modifying Math on the Page" href="typeset.html" />
<link rel="prev" title="Using Signals" href="signals.html" />
@@ -66,14 +66,12 @@ handler yourself, to let it know that it is OK to typeset the
mathematics on the page. You accomplish this by calling the
<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Startup.onload()</span></tt> method as part of your MathJax
startup script. To do this, you will need to give MathJax an in-line
-configuration, so you will not be able to use the
-<tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file (though you can add it to your in-line
-configuration’s <cite>config</cite> array).</p>
+configuration.</p>
<p>Here is an example of how to load and configure MathJax dynamically:</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="p">(</span><span class="kd">function</span> <span class="p">()</span> <span class="p">{</span>
<span class="kd">var</span> <span class="nx">script</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">createElement</span><span class="p">(</span><span class="s2">"script"</span><span class="p">);</span>
<span class="nx">script</span><span class="p">.</span><span class="nx">type</span> <span class="o">=</span> <span class="s2">"text/javascript"</span><span class="p">;</span>
- <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"/MathJax/MathJax.js"</span><span class="p">;</span> <span class="c1">// use the location of your MathJax</span>
+ <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"http://cdn.mathjax.org/mathjax/latest/MathJax.js"</span><span class="p">;</span>
<span class="kd">var</span> <span class="nx">config</span> <span class="o">=</span> <span class="s1">'MathJax.Hub.Config({'</span> <span class="o">+</span>
<span class="s1">'extensions: ["tex2jax.js"],'</span> <span class="o">+</span>
@@ -88,20 +86,18 @@ configuration’s <cite>config</cite> array).</p>
<span class="p">})();</span>
</pre></div>
</div>
-<p>Be sure to set the <tt class="docutils literal"><span class="pre">src</span></tt> to the correct URL for your copy of
-MathJax. You can adjust the <tt class="docutils literal"><span class="pre">config</span></tt> variable to your needs, but be
-careful to get the commas right. The <tt class="docutils literal"><span class="pre">window.opera</span></tt> test is because
+<p>You can adjust the <tt class="docutils literal"><span class="pre">config</span></tt> variable to your needs, but be careful to get
+the commas right. The <tt class="docutils literal"><span class="pre">window.opera</span></tt> test is because some versions of
Opera doesn’t handle setting <tt class="docutils literal"><span class="pre">script.text</span></tt> properly, while Internet
Explorer doesn’t handle setting the <tt class="docutils literal"><span class="pre">innerHTML</span></tt> of a script tag.</p>
-<p>Here is a version that uses the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file to
+<p>Here is a version that uses the <tt class="docutils literal"><span class="pre">config=filename</span></tt> method to
configure MathJax:</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="p">(</span><span class="kd">function</span> <span class="p">()</span> <span class="p">{</span>
<span class="kd">var</span> <span class="nx">script</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">createElement</span><span class="p">(</span><span class="s2">"script"</span><span class="p">);</span>
<span class="nx">script</span><span class="p">.</span><span class="nx">type</span> <span class="o">=</span> <span class="s2">"text/javascript"</span><span class="p">;</span>
- <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"/MathJax/MathJax.js"</span><span class="p">;</span> <span class="c1">// use the location of your MathJax</span>
+ <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full"</span><span class="p">;</span>
- <span class="kd">var</span> <span class="nx">config</span> <span class="o">=</span> <span class="s1">'MathJax.Hub.Config({ config: "MathJax.js" }); '</span> <span class="o">+</span>
- <span class="s1">'MathJax.Hub.Startup.onload();'</span><span class="p">;</span>
+ <span class="kd">var</span> <span class="nx">config</span> <span class="o">=</span> <span class="s1">'MathJax.Hub.Startup.onload();'</span><span class="p">;</span>
<span class="k">if</span> <span class="p">(</span><span class="nb">window</span><span class="p">.</span><span class="nx">opera</span><span class="p">)</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">innerHTML</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span>
<span class="k">else</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">text</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span>
@@ -111,13 +107,12 @@ configure MathJax:</p>
</pre></div>
</div>
<p>Note that the <strong>only</strong> reliable way to configure MathJax is to use an
-in-line configuration of the type discussed above. You should <strong>not</strong>
-call <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> directly in your code, as it will
-not run at the correct time — it will either run too soon, in which
-case <tt class="docutils literal"><span class="pre">MathJax</span></tt> may not be defined and the function will throw an
-error, or it will run too late, after MathJax has already finished its
-configuration process, so your changes will not have the desired
-effect.</p>
+in-line configuration block of the type discussed above. You should
+<strong>not</strong> call <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> directly in your code, as it will
+not run at the correct time — it will either run too soon, in which case
+<tt class="docutils literal"><span class="pre">MathJax</span></tt> may not be defined and the function will throw an error, or it
+will run too late, after MathJax has already finished its configuration
+process, so your changes will not have the desired effect.</p>
<div class="section" id="mathjax-and-greasemonkey">
<h2>MathJax and GreaseMonkey<a class="headerlink" href="#mathjax-and-greasemonkey" title="Permalink to this headline">¶</a></h2>
<p>You can use techniques like the ones discussed above to good effect in
@@ -134,8 +129,7 @@ major browsers:</p>
that loads a <tt class="docutils literal"><span class="pre">file://</span></tt> URL into a page that comes from the web (for
security reasons). That means that you can’t have your GreaseMonkey
script load a local copy of MathJax, so you have to refer to a
-server-based copy. In the scripts below, you need to insert the URL
-of a copy of MathJax from your own server.</p>
+server-based copy. The MathJax CDN works nicely for this.</p>
<hr class="docutils" />
<p>Here is a script that runs MathJax in any document that contains
MathML (whether its includes MathJax or not). That allows
@@ -154,12 +148,8 @@ IE+MathPlayer.</p>
<span class="p">(</span><span class="nb">document</span><span class="p">.</span><span class="nx">getElementsByTagNameNS</span> <span class="o">==</span> <span class="kc">null</span> <span class="o">?</span> <span class="kc">false</span> <span class="o">:</span>
<span class="p">(</span><span class="nb">document</span><span class="p">.</span><span class="nx">getElementsByTagNameNS</span><span class="p">(</span><span class="s2">"http://www.w3.org/1998/Math/MathML"</span><span class="p">,</span><span class="s2">"math"</span><span class="p">).</span><span class="nx">length</span> <span class="o">></span> <span class="mi">0</span><span class="p">)))</span> <span class="p">{</span>
<span class="kd">var</span> <span class="nx">script</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">createElement</span><span class="p">(</span><span class="s2">"script"</span><span class="p">);</span>
- <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"http://www.yoursite.edu/MathJax/MathJax.js"</span><span class="p">;</span> <span class="c1">// put your URL here</span>
- <span class="kd">var</span> <span class="nx">config</span> <span class="o">=</span> <span class="s1">'MathJax.Hub.Config({'</span> <span class="o">+</span>
- <span class="s1">'extensions:["mml2jax.js"],'</span> <span class="o">+</span>
- <span class="s1">'jax:["input/MathML","output/HTML-CSS"]'</span> <span class="o">+</span>
- <span class="s1">'});'</span> <span class="o">+</span>
- <span class="s1">'MathJax.Hub.Startup.onload()'</span><span class="p">;</span>
+ <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full"</span><span class="p">;</span>
+ <span class="kd">var</span> <span class="nx">config</span> <span class="o">=</span> <span class="s1">'MathJax.Hub.Startup.onload()'</span><span class="p">;</span>
<span class="k">if</span> <span class="p">(</span><span class="nb">window</span><span class="p">.</span><span class="nx">opera</span><span class="p">)</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">innerHTML</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span> <span class="k">else</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">text</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span>
<span class="nb">document</span><span class="p">.</span><span class="nx">getElementsByTagName</span><span class="p">(</span><span class="s2">"head"</span><span class="p">)[</span><span class="mi">0</span><span class="p">].</span><span class="nx">appendChild</span><span class="p">(</span><span class="nx">script</span><span class="p">);</span>
<span class="p">}</span>
@@ -181,29 +171,25 @@ converting the math images to their original TeX code.</p>
<span class="c1">//</span>
<span class="c1">// Replace the images with MathJax scripts of type math/tex</span>
<span class="c1">//</span>
- <span class="kd">var</span> <span class="nx">images</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">getElementsByTagName</span><span class="p">(</span><span class="s1">'img'</span><span class="p">);</span>
+ <span class="kd">var</span> <span class="nx">images</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">getElementsByTagName</span><span class="p">(</span><span class="s1">'img'</span><span class="p">),</span> <span class="nx">count</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
<span class="k">for</span> <span class="p">(</span><span class="kd">var</span> <span class="nx">i</span> <span class="o">=</span> <span class="nx">images</span><span class="p">.</span><span class="nx">length</span> <span class="o">-</span> <span class="mi">1</span><span class="p">;</span> <span class="nx">i</span> <span class="o">>=</span> <span class="mi">0</span><span class="p">;</span> <span class="nx">i</span><span class="o">--</span><span class="p">)</span> <span class="p">{</span>
<span class="kd">var</span> <span class="nx">img</span> <span class="o">=</span> <span class="nx">images</span><span class="p">[</span><span class="nx">i</span><span class="p">];</span>
<span class="k">if</span> <span class="p">(</span><span class="nx">img</span><span class="p">.</span><span class="nx">className</span> <span class="o">===</span> <span class="s2">"tex"</span><span class="p">)</span> <span class="p">{</span>
<span class="kd">var</span> <span class="nx">script</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">createElement</span><span class="p">(</span><span class="s2">"script"</span><span class="p">);</span> <span class="nx">script</span><span class="p">.</span><span class="nx">type</span> <span class="o">=</span> <span class="s2">"math/tex"</span><span class="p">;</span>
<span class="k">if</span> <span class="p">(</span><span class="nb">window</span><span class="p">.</span><span class="nx">opera</span><span class="p">)</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">innerHTML</span> <span class="o">=</span> <span class="nx">img</span><span class="p">.</span><span class="nx">alt</span><span class="p">}</span> <span class="k">else</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">text</span> <span class="o">=</span> <span class="nx">img</span><span class="p">.</span><span class="nx">alt</span><span class="p">}</span>
- <span class="nx">img</span><span class="p">.</span><span class="nx">parentNode</span><span class="p">.</span><span class="nx">replaceChild</span><span class="p">(</span><span class="nx">script</span><span class="p">,</span><span class="nx">img</span><span class="p">);</span>
+ <span class="nx">img</span><span class="p">.</span><span class="nx">parentNode</span><span class="p">.</span><span class="nx">replaceChild</span><span class="p">(</span><span class="nx">script</span><span class="p">,</span><span class="nx">img</span><span class="p">);</span> <span class="nx">count</span><span class="o">++</span><span class="p">;</span>
<span class="p">}</span>
<span class="p">}</span>
- <span class="c1">//</span>
- <span class="c1">// Load MathJax and have it process the page</span>
- <span class="c1">//</span>
- <span class="kd">var</span> <span class="nx">script</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">createElement</span><span class="p">(</span><span class="s2">"script"</span><span class="p">);</span>
- <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"http://www.yoursite.edu/MathJax/MathJax.js"</span><span class="p">;</span> <span class="c1">// put your URL here</span>
- <span class="kd">var</span> <span class="nx">config</span> <span class="o">=</span> <span class="s1">'MathJax.Hub.Config({'</span> <span class="o">+</span>
- <span class="s1">'config: ["MMLorHTML.js"],'</span> <span class="o">+</span>
- <span class="s1">'extensions:["TeX/noErrors.js","TeX/noUndefined.js",'</span> <span class="o">+</span>
- <span class="s1">'"TeX/AMSmath.js","TeX/AMSsymbols.js"],'</span> <span class="o">+</span>
- <span class="s1">'jax:["input/TeX"]'</span> <span class="o">+</span>
- <span class="s1">'});'</span> <span class="o">+</span>
- <span class="s1">'MathJax.Hub.Startup.onload()'</span><span class="p">;</span>
- <span class="k">if</span> <span class="p">(</span><span class="nb">window</span><span class="p">.</span><span class="nx">opera</span><span class="p">)</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">innerHTML</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span> <span class="k">else</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">text</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span>
- <span class="nb">document</span><span class="p">.</span><span class="nx">getElementsByTagName</span><span class="p">(</span><span class="s2">"head"</span><span class="p">)[</span><span class="mi">0</span><span class="p">].</span><span class="nx">appendChild</span><span class="p">(</span><span class="nx">script</span><span class="p">);</span>
+ <span class="k">if</span> <span class="p">(</span><span class="nx">count</span><span class="p">)</span> <span class="p">{</span>
+ <span class="c1">//</span>
+ <span class="c1">// Load MathJax and have it process the page</span>
+ <span class="c1">//</span>
+ <span class="kd">var</span> <span class="nx">script</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">createElement</span><span class="p">(</span><span class="s2">"script"</span><span class="p">);</span>
+ <span class="nx">script</span><span class="p">.</span><span class="nx">src</span> <span class="o">=</span> <span class="s2">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full"</span><span class="p">;</span>
+ <span class="kd">var</span> <span class="nx">config</span> <span class="o">=</span> <span class="s1">'MathJax.Hub.Startup.onload()'</span><span class="p">;</span>
+ <span class="k">if</span> <span class="p">(</span><span class="nb">window</span><span class="p">.</span><span class="nx">opera</span><span class="p">)</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">innerHTML</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span> <span class="k">else</span> <span class="p">{</span><span class="nx">script</span><span class="p">.</span><span class="nx">text</span> <span class="o">=</span> <span class="nx">config</span><span class="p">}</span>
+ <span class="nb">document</span><span class="p">.</span><span class="nx">getElementsByTagName</span><span class="p">(</span><span class="s2">"head"</span><span class="p">)[</span><span class="mi">0</span><span class="p">].</span><span class="nx">appendChild</span><span class="p">(</span><span class="nx">script</span><span class="p">);</span>
+ <span class="p">}</span>
<span class="p">}</span>
</pre></div>
</div>
@@ -231,11 +217,6 @@ converting the math images to their original TeX code.</p>
<h4>Next topic</h4>
<p class="topless"><a href="typeset.html"
title="next chapter">Modifying Math on the Page</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/dynamic.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/genindex.html b/docs/html/genindex.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
</head>
<body>
@@ -94,9 +94,11 @@
<h2 id="F">F</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="api/message.html#File">File()</a></dt>
<dt><a href="api/ajax.html#fileURL">fileURL()</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="api/message.html#filterText">filterText()</a></dt>
<dt><a href="api/hub.html#formatError">formatError()</a></dt>
</dl></td>
</tr></table>
@@ -173,15 +175,13 @@
<td style="width: 33%" valign="top"><dl>
<dt><a href="api/signal.html#NoInterest">NoInterest()</a></dt>
</dl></td>
- <td style="width: 33%" valign="top"><dl>
- <dt><a href="api/jax.html#noTranslate">noTranslate()</a></dt>
-</dl></td>
</tr></table>
<h2 id="P">P</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api/signal.html#Post">Post()</a></dt>
+ <dt><a href="api/ajax.html#Preloading">Preloading()</a></dt>
<dt><a href="api/hub.html#PreProcess">PreProcess()</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
@@ -201,10 +201,11 @@
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api/jax.html#Register">Register()</a></dt>
+ <dt><a href="api/message.html#Remove">Remove()</a></dt>
<dt><a href="api/hub.html#Reprocess">Reprocess()</a></dt>
- <dt><a href="api/ajax.html#Require">Require()</a></dt>
</dl></td>
<td style="width: 33%" valign="top"><dl>
+ <dt><a href="api/ajax.html#Require">Require()</a></dt>
<dt><a href="api/callback.html#reset">reset()</a></dt>
<dt><a href="api/queue.html#Resume">Resume()</a></dt>
</dl></td>
@@ -214,6 +215,7 @@
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%" valign="top"><dl>
<dt><a href="api/message.html#Set">Set()</a></dt>
+ <dt><a href="api/html.html#setText">setText()</a></dt>
<dt><a href="api/callback.html#Signal">Signal()</a></dt>
<dt><a href="api/elementjax.html#SourceElement">SourceElement()</a></dt>
<dt><a href="api/jax.html#Startup">Startup()</a></dt>
diff --git a/docs/html/glossary.html b/docs/html/glossary.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="prev" title="CSS Style Objects" href="CSS-styles.html" />
</head>
@@ -120,11 +120,6 @@ formats for mathematical journals, articles, and books.</p>
<h4>Previous topic</h4>
<p class="topless"><a href="CSS-styles.html"
title="previous chapter">CSS Style Objects</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/glossary.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/index.html b/docs/html/index.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="#" />
<link rel="next" title="What is MathJax?" href="mathjax.html" />
</head>
@@ -57,6 +57,8 @@ MathML that works in all modern browsers.</p>
<li class="toctree-l1"><a class="reference internal" href="start.html">Getting Started with MathJax</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installing and Testing MathJax</a></li>
<li class="toctree-l1"><a class="reference internal" href="configuration.html">Loading and Configuring MathJax</a></li>
+<li class="toctree-l1"><a class="reference internal" href="config-files.html">Common MathJax Configurations</a></li>
+<li class="toctree-l1"><a class="reference internal" href="options/index.html">MathJax Configuration Options</a></li>
<li class="toctree-l1"><a class="reference internal" href="platforms/index.html">Using MathJax in Web Platforms</a></li>
</ul>
</div>
@@ -73,8 +75,18 @@ MathML that works in all modern browsers.</p>
</ul>
</div>
</div>
+<div class="section" id="upgrading-mathjax">
+<span id="id1"></span><h2>Upgrading MathJax<a class="headerlink" href="#upgrading-mathjax" title="Permalink to this headline">¶</a></h2>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="whats-new.html">What’s New in MathJax v1.1</a></li>
+<li class="toctree-l1"><a class="reference internal" href="upgrade.html">Migrating from MathJax v1.0 to v1.1</a></li>
+<li class="toctree-l1"><a class="reference internal" href="jsMath.html">Converting to MathJax from jsMath</a></li>
+</ul>
+</div>
+</div>
<div class="section" id="advanced-topics">
-<span id="id1"></span><h2>Advanced Topics<a class="headerlink" href="#advanced-topics" title="Permalink to this headline">¶</a></h2>
+<span id="id2"></span><h2>Advanced Topics<a class="headerlink" href="#advanced-topics" title="Permalink to this headline">¶</a></h2>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="model.html">The MathJax Processing Model</a></li>
@@ -89,11 +101,6 @@ MathML that works in all modern browsers.</p>
<li class="toctree-l1"><a class="reference internal" href="api/index.html">Details of the MathJax API</a></li>
</ul>
</div>
-<div class="toctree-wrapper compound">
-<ul>
-<li class="toctree-l1"><a class="reference internal" href="jsMath.html">Converting to MathJax from jsMath</a></li>
-</ul>
-</div>
</div>
<div class="section" id="reference-pages">
<h2>Reference Pages<a class="headerlink" href="#reference-pages" title="Permalink to this headline">¶</a></h2>
@@ -106,9 +113,15 @@ MathML that works in all modern browsers.</p>
</div>
<ul class="simple">
<li><a class="reference internal" href="search.html"><em>Search</em></a></li>
+<li><a class="reference external" href="http://www.mathjax.org/help/user">User Help Pages</a>:<ul>
+<li><a class="reference external" href="http://www.mathjax.org/help/fonts">MathJax Font Help</a></li>
+<li><a class="reference external" href="http://www.mathjax.org/help/menu">MathJax Contextual Menu</a></li>
+<li><a class="reference external" href="http://www.mathjax.org/help/zoom">MathJax Zoom Feature</a></li>
+</ul>
+</li>
</ul>
<hr class="docutils" />
-<p>This version of the documentation was built March 03, 2011.</p>
+<p>This version of the documentation was built March 07, 2011.</p>
</div>
</div>
@@ -124,6 +137,9 @@ MathML that works in all modern browsers.</p>
<li><a class="reference internal" href="#basic-usage">Basic Usage</a><ul>
</ul>
</li>
+<li><a class="reference internal" href="#upgrading-mathjax">Upgrading MathJax</a><ul>
+</ul>
+</li>
<li><a class="reference internal" href="#advanced-topics">Advanced Topics</a><ul>
</ul>
</li>
@@ -137,11 +153,6 @@ MathML that works in all modern browsers.</p>
<h4>Next topic</h4>
<p class="topless"><a href="mathjax.html"
title="next chapter">What is MathJax?</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/index.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/installation.html b/docs/html/installation.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="Loading and Configuring MathJax" href="configuration.html" />
<link rel="prev" title="Getting Started" href="start.html" />
@@ -51,6 +51,10 @@
<div class="section" id="installing-and-testing-mathjax">
<span id="installation"></span><h1>Installing and Testing MathJax<a class="headerlink" href="#installing-and-testing-mathjax" title="Permalink to this headline">¶</a></h1>
+<p>The easiest way to use MathJax is to link directly to the MathJax
+distributed network service (see <a class="reference internal" href="start.html#mathjax-cdn"><em>Using the MathJax CDN</em></a>). In that case, there is no need to install MathJax
+yourself, and you can begin using MathJax right away; skip this document on
+installation and go directly to <a class="reference internal" href="configuration.html#loading"><em>Configuring MathJax</em></a>.</p>
<p>MathJax can be loaded from a public web server or privately from your hard drive
or other local media. To use MathJax in either way, you will need to obtain a
copy of MathJax and its font package. There are three ways to do this: via
@@ -58,68 +62,70 @@ copy of MathJax and its font package. There are three ways to do this: via
is easier to keep your installation up to date with these tools.</p>
<div class="section" id="obtaining-mathjax-via-git">
<span id="getting-mathjax-git"></span><h2>Obtaining MathJax via Git<a class="headerlink" href="#obtaining-mathjax-via-git" title="Permalink to this headline">¶</a></h2>
-<p>The easiest way to get MathJax and keep it up to date is to use the <a class="reference external" href="http://git-scm.com/">Git</a> version control system to access our <a class="reference external" href="http://github.com/mathjax/mathjax">GitHub repository</a>. Use the commands</p>
-<div class="highlight-sh"><div class="highlight"><pre>git clone git://github.com/mathjax/MathJax.git mathjax
+<p>The easiest way to get MathJax and keep it up to date is to use the <a class="reference external" href="http://git-scm.com/">Git</a> version control system to access our <a class="reference external" href="http://github.com/mathjax/mathjax">GitHub repository</a>. Use the command</p>
+<div class="highlight-sh"><div class="highlight"><pre>git clone git://github.com/mathjax/MathJax.git MathJax
</pre></div>
</div>
<p>to obtain and set up a copy of MathJax. Note that there is no longer
a <tt class="docutils literal"><span class="pre">fonts.zip</span></tt> file, and that the <tt class="docutils literal"><span class="pre">fonts</span></tt> directory is now part of
the repository itself.</p>
<p>Whenever you want to update MathJax, you can now use</p>
-<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax
+<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>MathJax
git remote show origin
</pre></div>
</div>
<p>to check if there are updates to MathJax (this will print several
lines of data, but the last line should tell you if your copy is up to
date or out of date). If MathJax needs updating, use</p>
-<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax
+<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>MathJax
git pull origin
</pre></div>
</div>
<p>to udpate your copy of MathJax to the current release version. If you
keep MathJax updated in this way, you will be sure that you have the
latest bug fixes and new features as they become available.</p>
-<p>This gets you the current development copy of MathJax, which is the
-“bleeding-edge” version that contains all the latest changes to
-MathJax. At times, however, these may be less stable than the
-“release” version. If you prefer to use the most stable version (that
-may not include all the latest patches and features), use <tt class="docutils literal"><span class="pre">git</span> <span class="pre">tag</span>
-<span class="pre">-l</span></tt> to see all versions and use <tt class="docutils literal"><span class="pre">git</span> <span class="pre">checkout</span> <span class="pre"><tag_name></span></tt> to
-checkout that version of MathJax. When you want to upgrade to a new
-release, you will need to repeat this for the latest release tag.</p>
+<p>This gets you the current development copy of MathJax, which is the version
+that contains all the latest changes to MathJax. Although we try to make
+sure this version is a stable and usable version of MathJax, it is under
+active development, and at times it may be less stable than the “release”
+version. If you prefer to use the most stable version (that may not
+include all the latest patches and features), use <tt class="docutils literal"><span class="pre">git</span> <span class="pre">tag</span> <span class="pre">-l</span></tt> to see all
+versions and use <tt class="docutils literal"><span class="pre">git</span> <span class="pre">checkout</span> <span class="pre"><tag_name></span></tt> to checkout that version of
+MathJax. When you want to upgrade to a new release, you will need to
+repeat this for the latest release tag.</p>
</div>
<div class="section" id="obtaining-mathjax-via-svn">
<span id="getting-mathjax-svn"></span><h2>Obtaining MathJax via SVN<a class="headerlink" href="#obtaining-mathjax-via-svn" title="Permalink to this headline">¶</a></h2>
<p>If you are more comfortable with the <a class="reference external" href="http://subversion.apache.org/">subversion</a> source control system, you may want
to use GitHub’s <tt class="docutils literal"><span class="pre">svn</span></tt> service to obtain MathJax. If you want to get the
-latest revision using <tt class="docutils literal"><span class="pre">svn</span></tt>, use the commands</p>
-<div class="highlight-sh"><div class="highlight"><pre>svn checkout http://svn.github.com/mathjax/MathJax.git mathjax
+latest revision using <tt class="docutils literal"><span class="pre">svn</span></tt>, use the command</p>
+<div class="highlight-sh"><div class="highlight"><pre>svn checkout http://svn.github.com/mathjax/MathJax.git MathJax
</pre></div>
</div>
<p>to obtain and set up a copy of MathJax. Note that there is no longer
a <tt class="docutils literal"><span class="pre">fonts.zip</span></tt> file, and that the <tt class="docutils literal"><span class="pre">fonts</span></tt> directory is now part of
the repository itself.</p>
<p>Whenever you want to update MathJax, you can now use</p>
-<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax
+<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>MathJax
svn status -u
</pre></div>
</div>
<p>to check if there are updates to MathJax. If MathJax needs updating,
use</p>
-<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax
+<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>MathJax
svn update
</pre></div>
</div>
<p>to udpate your copy of MathJax to the current release version. If you
keep MathJax updated in this way, you will be sure that you have the
latest bug fixes and new features as they become available.</p>
-<p>This gets you the current development copy of MathJax, which is the
-“bleeding-edge” version that contains all the latest changes to
-MathJax. At times, however, these may be less stable than the
-“release” version. If you prefer to use one of the tagged releases
-instead, then either use <tt class="docutils literal"><span class="pre">git</span></tt> as described above, or one of the
-archive files as described below. You can use</p>
+<p>This gets you the current development copy of MathJax, which is the version
+that contains all the latest changes to MathJax. Although we try to make
+sure this version is a stable and usable version of MathJax, it is under
+active development, and at times it may be less stable than the “release”
+version. If you prefer to use one of the tagged releases instead, then
+either use <tt class="docutils literal"><span class="pre">git</span></tt> as described above, or one of the archive files as
+described below. You can use</p>
<div class="highlight-sh"><div class="highlight"><pre>svn checkout http://svn.github.com/mathjax/MathJax.git@nnn mathjax
</pre></div>
</div>
@@ -144,10 +150,18 @@ it locally rather then through a web server). One natural location is
to put it at the top level of your web server’s hierarchy. That would
let you refer to the main MathJax file as <tt class="docutils literal"><span class="pre">/MathJax/MathJax.js</span></tt> from
within any page on your server.</p>
-<p>From the <a class="reference external" href="http://github.com/mathjax/mathjax/">MathJax GitHub download link</a> (the big download button at the
+<p>From the <a class="reference external" href="http://github.com/mathjax/mathjax/">MathJax GitHub download link</a> (the download button at the
right), you can also select the <tt class="docutils literal"><span class="pre">Download</span> <span class="pre">.tar.gz</span></tt> or <tt class="docutils literal"><span class="pre">Download</span>
-<span class="pre">.zip</span></tt> buttons to get a copy of the current “bleeding-edge” version of
+<span class="pre">.zip</span></tt> buttons to get a copy of the current development version of
MathJax that contains all the latest changes and bug-fixes.</p>
+<p>If a packaged release recevies any important updates, then those updates
+will be part of the <cite>branch</cite> for that version. The link to the <tt class="docutils literal"><span class="pre">.zip</span></tt>
+file in the download list will be the original release version, not the
+patched version. To obtain the patched version, use the <cite>Branches</cite> drop
+down menu (at the far left of the menus within the page) to select the the
+release branch, and then use the downlaod button and the <tt class="docutils literal"><span class="pre">Downlaod</span>
+<span class="pre">.tar.gz</span></tt> or <tt class="docutils literal"><span class="pre">Download</span> <span class="pre">.zip</span></tt> button to get the latest patched version of
+that release.</p>
</div>
<div class="section" id="testing-your-installation">
<h2>Testing your installation<a class="headerlink" href="#testing-your-installation" title="Permalink to this headline">¶</a></h2>
@@ -163,8 +177,7 @@ properly. If you have installed MathJax on a server, use the web
address for those files rather than opening them locally. When you
view the <tt class="docutils literal"><span class="pre">index.html</span></tt> file, you should see (after a few moments) a
message that MathJax appears to be working. If not, you should check
-that the files have been transferred to the server completely, that
-the fonts archive has been unpacked in the correct location, and that
+that the files have been transferred to the server completely, and that
the permissions allow the server to access the files and folders that
are part of the MathJax directory (be sure to verify the MathJax
folder’s permissions as well). Checking the server logs may help
@@ -180,22 +193,19 @@ a different site. For example, a departmental server at
installation at <tt class="docutils literal"><span class="pre">www.yourcollege.edu</span></tt> rather than installing a
separate copy on the departmental machine. MathJax can certainly
be loaded from another server, but there is one imporant caveat —
-Firefox’s same-origin security policy for cross-domain scripting.</p>
-<p>Firefox’s interpretation of the same-origin policy is more strict than
-most other browsers, and it affects how fonts are loaded with the
-<cite>@font-face</cite> CSS directive. MathJax uses this directive to load
-web-based math fonts into a page when the user doesn’t have them
-installed locally on their own computer. Firefox’s security policy,
-however, only allows this when the fonts come from the same server as
-the web page itself, so if you load MathJax (and hence its web fonts)
-from a different server, Firefox won’t be able to access those web
-fonts. In this case, MathJax will pause while waiting for the font to
-download (which will never happen) and will time out after about 15
-seconds for each font it tries to access. Typically that is three or
-four fonts, so your Firefox users will experience a minute or so
-delay before mathematics is displayed, and then it will probably
-display incorrectly because the browser doesn’t have access to the
-correct fonts.</p>
+Firefox’s and IE9’s same-origin security policy for cross-domain scripting.</p>
+<p>Firefox’s interpretation of the same-origin policy is more strict than most
+other browsers, and it affects how fonts are loaded with the <cite>@font-face</cite>
+CSS directive. MathJax uses this directive to load web-based math fonts
+into a page when the user doesn’t have them installed locally on their own
+computer. Firefox’s security policy, however, only allows this when the
+fonts come from the same server as the web page itself, so if you load
+MathJax (and hence its web fonts) from a different server, Firefox won’t be
+able to access those web fonts. In this case, MathJax will pause while
+waiting for the font to download (which will never happen); it will time
+out after about 5 seconds and switch to image fonts as a fallback.
+Similarly, IE9 has a similar same-origin policy in its <cite>IE9 standards
+mode</cite>, so it exhibits this same behavior.</p>
<p>There is a solution to this, however, if you manage the server where
MathJax is installed, and if that server is running the <a class="reference external" href="http://www.apache.org/">Apache web
server</a>. In the remote server’s
@@ -207,17 +217,16 @@ Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch></pre>
</div>
-<p>and make sure the permissions allow the server to read this file.
-(The file’s name starts with a period, which causes it to be an
-“invisible” file on unix-based operating systems. Some systems,
-particularly graphic user interfaces, may not allow you to create such
-files, so you might need to use the command-line interface to
-accomplish this.)</p>
-<p>This file should make it possible for pages at other sites to load
-MathJax from this server in such a way that Firefox will be able to
-download the web-based fonts. If you want to restrict the sites that
-can access the web fonts, change the <tt class="docutils literal"><span class="pre">Access-Control-Allow-Origin</span></tt>
-line to something like:</p>
+<p>and make sure the permissions allow the server to read this file. (The
+file’s name starts with a period, which causes it to be an “invisible” file
+on unix-based operating systems. Some systems, particularly those with
+graphical user interfaces, may not allow you to create such files, so you
+might need to use the command-line interface to accomplish this.)</p>
+<p>This file should make it possible for pages at other sites to load MathJax
+from this server in such a way that Firefox and IE9 will be able to
+download the web-based fonts. If you want to restrict the sites that can
+access the web fonts, change the <tt class="docutils literal"><span class="pre">Access-Control-Allow-Origin</span></tt> line to
+something like:</p>
<div class="highlight-python"><pre>Header set Access-Control-Allow-Origin "http://www.math.yourcollege.edu"</pre>
</div>
<p>so that only pages at <tt class="docutils literal"><span class="pre">www.math.yourcollege.edu</span></tt> will be able to
@@ -225,8 +234,8 @@ download the fonts from this site. See the open font library
discussion of <a class="reference external" href="http://openfontlibrary.org/wiki/Web_Font_linking_and_Cross-Origin_Resource_Sharing">web-font linking</a>
for more details.</p>
</div>
-<div class="section" id="forefox-and-local-fonts">
-<span id="ff-local-fonts"></span><h2>Forefox and Local Fonts<a class="headerlink" href="#forefox-and-local-fonts" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="firefox-and-local-fonts">
+<span id="ff-local-fonts"></span><h2>Firefox and local fonts<a class="headerlink" href="#firefox-and-local-fonts" title="Permalink to this headline">¶</a></h2>
<p>Firefox’s same-origin security policy affects its ability to load
web-based fonts, as described above. This has implications not only
to cross-domain loading of MathJax, but also to using MathJax locally
@@ -244,6 +253,26 @@ containing the page that uses MathJax. This is an unfortunate
restriction, but it is a limitiation imposed by Firefox’s security
model that MathJax can not circumvent. Currently, this is not a
problem for other browsers.</p>
+<p>One solution to this problem is to install the MathJax fonts locally, so
+that Firefox will not have to use web-based fonts in the first place. To
+do that, either install the <a class="reference external" href="http://stixfonts.org">STIX fonts</a>, or copy
+the fonts from <tt class="docutils literal"><span class="pre">MathJax/fonts/HTML-CSS/TeX/otf</span></tt> into your systems fonts
+directory and restart your browser (see the <a class="reference external" href="http://www.mathjax.org/help/fonts">MathJax fonts help page</a> for details).</p>
+</div>
+<div class="section" id="ie9-and-remote-fonts">
+<h2>IE9 and remote fonts<a class="headerlink" href="#ie9-and-remote-fonts" title="Permalink to this headline">¶</a></h2>
+<p>IE9’s same-origin policy affects its ability to load web-based fonts, as
+described above. This has implications not ony to cross-domain loading of
+MathJax, but also to the case where you view a local page (with a
+<tt class="docutils literal"><span class="pre">file://</span></tt> URL) that accesses MathJax from a remote site, like the MathJax
+CDN service. In this case, IE9 does <strong>not</strong> honor the
+<tt class="docutils literal"><span class="pre">Access-Control-Allow-Origin</span></tt> setting of the remote server (as it would
+if the web page came from an <tt class="docutils literal"><span class="pre">http://</span></tt> URL), and so it <strong>never</strong> allows the
+font to be accessed.</p>
+<p>One solution to this problem is to install the MathJax fonts locally so
+that MathJax doesn’t have to use web-based fonts in the first place. Your
+best bet is to install the <a class="reference external" href="http://stixfonts.org">STIX fonts</a> on your system (see the <a class="reference external" href="http://www.mathjax.org/help/fonts">MathJax
+fonts help page</a> for details).</p>
</div>
</div>
@@ -261,7 +290,8 @@ problem for other browsers.</p>
<li><a class="reference internal" href="#obtaining-mathjax-via-an-archive">Obtaining MathJax via an archive</a></li>
<li><a class="reference internal" href="#testing-your-installation">Testing your installation</a></li>
<li><a class="reference internal" href="#notes-about-shared-installations">Notes about shared installations</a></li>
-<li><a class="reference internal" href="#forefox-and-local-fonts">Forefox and Local Fonts</a></li>
+<li><a class="reference internal" href="#firefox-and-local-fonts">Firefox and local fonts</a></li>
+<li><a class="reference internal" href="#ie9-and-remote-fonts">IE9 and remote fonts</a></li>
</ul>
</li>
</ul>
@@ -272,11 +302,6 @@ problem for other browsers.</p>
<h4>Next topic</h4>
<p class="topless"><a href="configuration.html"
title="next chapter">Loading and Configuring MathJax</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/installation.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/jsMath.html b/docs/html/jsMath.html
@@ -21,10 +21,10 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
- <link rel="next" title="Describing HTML snippets" href="HTML-snippets.html" />
- <link rel="prev" title="The MathJax Object-Oriented Programming Model" href="api/object.html" />
+ <link rel="next" title="The MathJax Processing Model" href="model.html" />
+ <link rel="prev" title="Migrating from MathJax v1.0 to v1.1" href="upgrade.html" />
</head>
<body>
@@ -35,10 +35,10 @@
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
- <a href="HTML-snippets.html" title="Describing HTML snippets"
+ <a href="model.html" title="The MathJax Processing Model"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="api/object.html" title="The MathJax Object-Oriented Programming Model"
+ <a href="upgrade.html" title="Migrating from MathJax v1.0 to v1.1"
accesskey="P">previous</a> |</li>
<li><a href="index.html">MathJax v1.1 documentation</a> »</li>
</ul>
@@ -57,20 +57,36 @@ processing the mathematics within the webpage once it has been loaded
in the browser by a user viewing your web pages. If you are using
jsMath with its <tt class="docutils literal"><span class="pre">tex2math</span></tt> preprocessor, then switching to MathJax
should be easy, and is simply a matter of configuring MathJax
-appropriately. See the section on <a class="reference internal" href="configuration.html#configuration"><em>Configuring MathJax</em></a> for details about loading and configuring MathJax.</p>
+appropriately. See the section on <a class="reference internal" href="configuration.html#loading"><em>Loading and Configuring MathJax</em></a> for details.</p>
<p>On the other hand, if you are using jsMath’s <tt class="docutils literal"><span class="pre"><span</span>
<span class="pre">class="math">...</span></span></tt> and <tt class="docutils literal"><span class="pre"><div</span> <span class="pre">class="math">...</div></span></tt> tags to
mark the mathematics in your document, then you should use MathJax’s
<tt class="docutils literal"><span class="pre">jsMath2jax</span></tt> preprocessor when you switch to MathJax. To do this,
include <tt class="docutils literal"><span class="pre">"jsMath2jax.js"</span></tt> in the <cite>extensions</cite> array of your
-configuration, with the <cite>jax</cite> array set to include <tt class="docutils literal"><span class="pre">"input/TeX"</span></tt>.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"jsMath2jax.js"</span><span class="p">],</span>
-<span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span> <span class="p">...]</span>
+configuration, with the <cite>jax</cite> array set to include <tt class="docutils literal"><span class="pre">"input/TeX"</span></tt>. For
+example,</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"jsMath2jax.js"</span><span class="p">]</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script</span>
+<span class="nt"> </span><span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"</span><span class="nt">></span>
+<span class="nt"></script></span>
</pre></div>
</div>
+<p>would load the <tt class="docutils literal"><span class="pre">jsMath2jax</span></tt> preprocessor, along with a configuration
+file that processes TeX input and produces HTML-with-CSS output.</p>
<p>There are a few configuration options for <tt class="docutils literal"><span class="pre">jsMath2jax</span></tt>, which you
-can find in the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file, or in the <a class="reference internal" href="options/jsMath2jax.html#configure-jsmath2jax"><em>jsMath
+can find in the <tt class="docutils literal"><span class="pre">config/default.js</span></tt> file, or in the <a class="reference internal" href="options/jsMath2jax.html#configure-jsmath2jax"><em>jsMath
configuration options</em></a> section.</p>
+<p>If you are generating your jsMath documents programmatically, it would be
+better to convert from generating the jsMath <tt class="docutils literal"><span class="pre"><span></span></tt> and <tt class="docutils literal"><span class="pre"><div></span></tt> tags
+to producing the corresponding MathJax <tt class="docutils literal"><span class="pre"><script></span></tt> tags. You would use
+<tt class="docutils literal"><span class="pre"><script</span> <span class="pre">type="math/tex"></span></tt> in place of <tt class="docutils literal"><span class="pre"><span</span> <span class="pre">class="math"></span></tt> and
+<tt class="docutils literal"><span class="pre"><script</span> <span class="pre">type="math/tex;</span> <span class="pre">mode=display"></span></tt> in place of <tt class="docutils literal"><span class="pre"><div</span>
+<span class="pre">class="math"></span></tt>. See the section on <a class="reference internal" href="model.html#mathjax-script-tags"><em>How mathematics is stored in the
+page</em></a> for more details.</p>
</div>
@@ -80,16 +96,11 @@ configuration options</em></a> section.</p>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
- <p class="topless"><a href="api/object.html"
- title="previous chapter">The MathJax Object-Oriented Programming Model</a></p>
+ <p class="topless"><a href="upgrade.html"
+ title="previous chapter">Migrating from MathJax v1.0 to v1.1</a></p>
<h4>Next topic</h4>
- <p class="topless"><a href="HTML-snippets.html"
- title="next chapter">Describing HTML snippets</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/jsMath.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
+ <p class="topless"><a href="model.html"
+ title="next chapter">The MathJax Processing Model</a></p>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
@@ -114,10 +125,10 @@ configuration options</em></a> section.</p>
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
- <a href="HTML-snippets.html" title="Describing HTML snippets"
+ <a href="model.html" title="The MathJax Processing Model"
>next</a> |</li>
<li class="right" >
- <a href="api/object.html" title="The MathJax Object-Oriented Programming Model"
+ <a href="upgrade.html" title="Migrating from MathJax v1.0 to v1.1"
>previous</a> |</li>
<li><a href="index.html">MathJax v1.1 documentation</a> »</li>
</ul>
diff --git a/docs/html/mathjax.html b/docs/html/mathjax.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="Getting Started" href="start.html" />
<link rel="prev" title="MathJax Documentation" href="index.html" />
@@ -94,11 +94,6 @@ mathematics on your web pages interactive and dynamic.</p>
<h4>Next topic</h4>
<p class="topless"><a href="start.html"
title="next chapter">Getting Started</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/mathjax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/mathml.html b/docs/html/mathml.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="MathJax Output Formats" href="output.html" />
<link rel="prev" title="MathJax TeX and LaTeX Support" href="tex.html" />
@@ -52,7 +52,7 @@
<div class="section" id="mathjax-mathml-support">
<span id="mathml-support"></span><h1>MathJax MathML Support<a class="headerlink" href="#mathjax-mathml-support" title="Permalink to this headline">¶</a></h1>
<p>The support for <a class="reference internal" href="glossary.html#term-mathml"><em class="xref std std-term">MathML</em></a> in MathJax consists of three parts: the
-<cite>mml2jax</cite> preprocessor, the MathML input processor, and the NativeMML
+<cite>mml2jax</cite> preprocessor, the <cite>MathML</cite> input processor, and the <cite>NativeMML</cite>
output processor. The first of these looks for <tt class="docutils literal"><span class="pre"><math></span></tt> tags within
your document and marks them for later processing by MathJax. The
second converts the MathML to the internal format used by MathJax, and
@@ -67,7 +67,7 @@ MathML input processor with the HTML-CSS output processor to make
MathML available in browsers that don’t have native MathML support.
It is also possible to have MathJax select the output processor for
you so that MathML is used in those browsers that support it, while
-HTML-CSS is used for those that don’t. See the <a class="reference internal" href="configuration.html#common-configurations"><em>common
+HTML-CSS is used for those that don’t. See the <a class="reference internal" href="config-files.html#common-configurations"><em>common
configurations</em></a> section for details and
examples.</p>
<p>Of course it is also possible to use all three components together.
@@ -79,9 +79,9 @@ any of the other setup issues that make using native MathML
difficult. MathJax handles the setup and properly marks the
mathematics so that the browser will render it as MathML. In
addition, MathJax provides its contextual menu for the MathML, which
-lets the user zoom the mathematics for easier reading, get the copy
+lets the user zoom the mathematics for easier reading, get and copy
the source markup, and so on, so there is added value to using MathJax
-even whith a pure MathML workflow.</p>
+even with a pure MathML workflow.</p>
<div class="section" id="mathml-in-html-pages">
<h2>MathML in HTML pages<a class="headerlink" href="#mathml-in-html-pages" title="Permalink to this headline">¶</a></h2>
<p>For MathML that is handled via the pre-processor, you should not use
@@ -151,11 +151,6 @@ children of <tt class="docutils literal"><span class="pre">mrow</span></tt> or i
<h4>Next topic</h4>
<p class="topless"><a href="output.html"
title="next chapter">MathJax Output Formats</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/mathml.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/model.html b/docs/html/model.html
@@ -21,10 +21,10 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="The MathJax Startup Sequence" href="startup.html" />
- <link rel="prev" title="The MathJax Community" href="community.html" />
+ <link rel="prev" title="Converting to MathJax from jsMath" href="jsMath.html" />
</head>
<body>
@@ -38,7 +38,7 @@
<a href="startup.html" title="The MathJax Startup Sequence"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="community.html" title="The MathJax Community"
+ <a href="jsMath.html" title="Converting to MathJax from jsMath"
accesskey="P">previous</a> |</li>
<li><a href="index.html">MathJax v1.1 documentation</a> »</li>
</ul>
@@ -93,7 +93,7 @@ and it also avoids the conflict between the use of the less-than sign,
<tt class="docutils literal"><span class="pre"><</span></tt>, in mathematics and asn an HTML special character (that starts
an HTML tag).</p>
<div class="section" id="how-mathematics-is-stored-in-the-page">
-<h2>How mathematics is stored in the page<a class="headerlink" href="#how-mathematics-is-stored-in-the-page" title="Permalink to this headline">¶</a></h2>
+<span id="mathjax-script-tags"></span><h2>How mathematics is stored in the page<a class="headerlink" href="#how-mathematics-is-stored-in-the-page" title="Permalink to this headline">¶</a></h2>
<p>In order to identify mathematics in the page, MathJax uses special
<tt class="docutils literal"><span class="pre"><script></span></tt> tags to enclose the mathematics. This is done because
such tags can be located easily, and because their content is not
@@ -257,16 +257,11 @@ dynamic as the rest of the page.</p>
</ul>
<h4>Previous topic</h4>
- <p class="topless"><a href="community.html"
- title="previous chapter">The MathJax Community</a></p>
+ <p class="topless"><a href="jsMath.html"
+ title="previous chapter">Converting to MathJax from jsMath</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="startup.html"
title="next chapter">The MathJax Startup Sequence</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/model.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
@@ -294,7 +289,7 @@ dynamic as the rest of the page.</p>
<a href="startup.html" title="The MathJax Startup Sequence"
>next</a> |</li>
<li class="right" >
- <a href="community.html" title="The MathJax Community"
+ <a href="jsMath.html" title="Converting to MathJax from jsMath"
>previous</a> |</li>
<li><a href="index.html">MathJax v1.1 documentation</a> »</li>
</ul>
diff --git a/docs/html/options/FontWarnings.html b/docs/html/options/FontWarnings.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="Using MathJax in popular web platforms" href="../platforms/index.html" />
<link rel="prev" title="The MathZoom extension" href="MathZoom.html" />
</head>
@@ -42,7 +42,7 @@
<a href="MathZoom.html" title="The MathZoom extension"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -220,11 +220,6 @@ The default is 1.5 seconds.</p>
<h4>Next topic</h4>
<p class="topless"><a href="../platforms/index.html"
title="next chapter">Using MathJax in popular web platforms</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/FontWarnings.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -255,7 +250,7 @@ The default is 1.5 seconds.</p>
<a href="MathZoom.html" title="The MathZoom extension"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/HTML-CSS.html b/docs/html/options/HTML-CSS.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The NativeMML output processor" href="NativeMML.html" />
<link rel="prev" title="The MathML input processor" href="MathML.html" />
</head>
@@ -42,7 +42,7 @@
<a href="MathML.html" title="The MathML input processor"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -80,6 +80,14 @@ menu item associated with the typeset mathematics.</p>
<dl class="describe">
<dt>
+<tt class="descname">minScaleAdjust: 50</tt></dt>
+<dd><p>This gives a minimum scale (as a percent) for the scaling used my
+MathJax to match the equation to the surrounding text. This will
+prevent MathJax from making the mathematics too small.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
<tt class="descname">availableFonts: ["STIX","TeX"]</tt></dt>
<dd><p>This is a list of the fonts to look for on a user’s computer in
preference to using MathJax’s web-based fonts. These must
@@ -197,11 +205,6 @@ where the tooltip will be placed.</p>
<h4>Next topic</h4>
<p class="topless"><a href="NativeMML.html"
title="next chapter">The NativeMML output processor</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/HTML-CSS.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -232,7 +235,7 @@ where the tooltip will be placed.</p>
<a href="MathML.html" title="The MathML input processor"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/MMLorHTML.html b/docs/html/options/MMLorHTML.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The MathMenu extension" href="MathMenu.html" />
<link rel="prev" title="The NativeMML output processor" href="NativeMML.html" />
</head>
@@ -42,7 +42,7 @@
<a href="NativeMML.html" title="The NativeMML output processor"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -99,11 +99,6 @@ complicated output generated by MathJax, so its setting is
<h4>Next topic</h4>
<p class="topless"><a href="MathMenu.html"
title="next chapter">The MathMenu extension</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/MMLorHTML.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -134,7 +129,7 @@ complicated output generated by MathJax, so its setting is
<a href="NativeMML.html" title="The NativeMML output processor"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/MathML.html b/docs/html/options/MathML.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The HTML-CSS output processor" href="HTML-CSS.html" />
<link rel="prev" title="The TeX input processor" href="TeX.html" />
</head>
@@ -42,7 +42,7 @@
<a href="TeX.html" title="The TeX input processor"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -88,11 +88,6 @@ spacing would be used (rather than TeX spacing rules).</p>
<h4>Next topic</h4>
<p class="topless"><a href="HTML-CSS.html"
title="next chapter">The HTML-CSS output processor</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/MathML.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -123,7 +118,7 @@ spacing would be used (rather than TeX spacing rules).</p>
<a href="TeX.html" title="The TeX input processor"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/MathMenu.html b/docs/html/options/MathMenu.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The MathZoom extension" href="MathZoom.html" />
<link rel="prev" title="The MMLorHTML configuration options" href="MMLorHTML.html" />
</head>
@@ -42,7 +42,7 @@
<a href="MMLorHTML.html" title="The MMLorHTML configuration options"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -68,7 +68,7 @@ options, include a <tt class="docutils literal"><span class="pre">MathMenu</span
<p>would set the <tt class="docutils literal"><span class="pre">delay</span></tt> option to 600 milliseconds.</p>
<dl class="describe">
<dt>
-<tt class="descname">delay: 400</tt></dt>
+<tt class="descname">delay: 150</tt></dt>
<dd><p>This is the hover delay for the display (in milliseconds) for
submenus in the contextual menu: when the mouse is over a submenu
label for this long, the menu will appear. (The submenu also will
@@ -150,11 +150,6 @@ style in a JavaScript object.</p>
<h4>Next topic</h4>
<p class="topless"><a href="MathZoom.html"
title="next chapter">The MathZoom extension</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/MathMenu.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -185,7 +180,7 @@ style in a JavaScript object.</p>
<a href="MMLorHTML.html" title="The MMLorHTML configuration options"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/MathZoom.html b/docs/html/options/MathZoom.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The FontWarnings extension" href="FontWarnings.html" />
<link rel="prev" title="The MathMenu extension" href="MathMenu.html" />
</head>
@@ -42,7 +42,7 @@
<a href="MathMenu.html" title="The MathMenu extension"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -103,11 +103,6 @@ style in a JavaScript object.</p>
<h4>Next topic</h4>
<p class="topless"><a href="FontWarnings.html"
title="next chapter">The FontWarnings extension</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/MathZoom.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -138,7 +133,7 @@ style in a JavaScript object.</p>
<a href="MathMenu.html" title="The MathMenu extension"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/NativeMML.html b/docs/html/options/NativeMML.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The MMLorHTML configuration options" href="MMLorHTML.html" />
<link rel="prev" title="The HTML-CSS output processor" href="HTML-CSS.html" />
</head>
@@ -42,7 +42,7 @@
<a href="HTML-CSS.html" title="The HTML-CSS output processor"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -127,11 +127,6 @@ CSS style in a JavaScript object.</p>
<h4>Next topic</h4>
<p class="topless"><a href="MMLorHTML.html"
title="next chapter">The MMLorHTML configuration options</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/NativeMML.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -162,7 +157,7 @@ CSS style in a JavaScript object.</p>
<a href="HTML-CSS.html" title="The HTML-CSS output processor"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/TeX.html b/docs/html/options/TeX.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The MathML input processor" href="MathML.html" />
<link rel="prev" title="The jsMath2jax Preprocessor" href="jsMath2jax.html" />
</head>
@@ -42,7 +42,7 @@
<a href="jsMath2jax.html" title="The jsMath2jax Preprocessor"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -117,6 +117,24 @@ which produces a bold-face “R”, and <tt class="docutils literal"><sp
parameter and set it in the bold-face font.</p>
</dd></dl>
+<dl class="describe">
+<dt>
+<tt class="descname">MAXMACROS: 10000</tt></dt>
+<dd><p>Because a definition of the form <tt class="docutils literal"><span class="pre">\def\x{\x}</span> <span class="pre">\x</span></tt> would cause MathJax
+to loop infinitely, the <cite>MAXMACROS</cite> constant will limit the nuber of
+macro substitutions allowed in any expression processed by MathJax.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
+<tt class="descname">MAXBUFFER: 5*1024</tt></dt>
+<dd><p>Because a definition of the form <tt class="docutils literal"><span class="pre">\def\x{\x</span> <span class="pre">aaa}</span> <span class="pre">\x</span></tt> would loop
+infinitely, and at the same time stack up lots of a’s in MathJax’s
+equation buffer, the <cite>MAXBUFFER</cite> constant is used to limit the size of
+the string being processed by MathJax. It is set to 5KB, which should
+be sufficient for any reasonable equation.</p>
+</dd></dl>
+
</div>
@@ -131,11 +149,6 @@ parameter and set it in the bold-face font.</p>
<h4>Next topic</h4>
<p class="topless"><a href="MathML.html"
title="next chapter">The MathML input processor</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/TeX.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -166,7 +179,7 @@ parameter and set it in the bold-face font.</p>
<a href="jsMath2jax.html" title="The jsMath2jax Preprocessor"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/hub.html b/docs/html/options/hub.html
@@ -21,11 +21,11 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The tex2jax Preprocessor" href="tex2jax.html" />
- <link rel="prev" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="prev" title="Configuration Objects" href="index.html" />
</head>
<body>
@@ -39,10 +39,10 @@
<a href="tex2jax.html" title="The tex2jax Preprocessor"
accesskey="N">next</a> |</li>
<li class="right" >
- <a href="../configuration.html" title="Loading and Configuring MathJax"
+ <a href="index.html" title="Configuration Objects"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -192,7 +192,11 @@ displayed equations.</p>
configuration, styles, jax, and so on) as soon as it can. If you
expect to be doing additional configuration on the page, however,
you may want to have it wait until the page’s onload hander is
-called. If so, set this to <tt class="docutils literal"><span class="pre">"onload"</span></tt>.</p>
+called. If so, set this to <tt class="docutils literal"><span class="pre">"onload"</span></tt>. You can also set this to
+<tt class="docutils literal"><span class="pre">"configured"</span></tt>, in which case, MathJax will delay its startup until
+you explicitly call <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Configured()</span></tt>. See
+<a class="reference internal" href="../configuration.html#delaystartupuntil"><em>Configuring MathJax after it is loaded</em></a> for more
+details.</p>
</dd></dl>
<dl class="describe">
@@ -284,6 +288,16 @@ how these are specified in JavaScript.</p>
</dd></dl>
+<dl class="describe">
+<dt>
+<tt class="descname">v1.0-compatible: true</tt></dt>
+<dd><p>This controls whether MathJax issues the warning about not having an
+explicit configuration in the event that the <cite>jax</cite> array is empty
+after configuration is complete. If you really intend that array to
+be empty, set this flag to <tt class="docutils literal"><span class="pre">false</span></tt>. Note that setting this to false
+does <strong>not</strong> cause a default configuration file to be loaded.</p>
+</dd></dl>
+
</div>
@@ -293,16 +307,11 @@ how these are specified in JavaScript.</p>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
- <p class="topless"><a href="../configuration.html"
- title="previous chapter">Loading and Configuring MathJax</a></p>
+ <p class="topless"><a href="index.html"
+ title="previous chapter">Configuration Objects</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="tex2jax.html"
title="next chapter">The tex2jax Preprocessor</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/hub.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -330,10 +339,10 @@ how these are specified in JavaScript.</p>
<a href="tex2jax.html" title="The tex2jax Preprocessor"
>next</a> |</li>
<li class="right" >
- <a href="../configuration.html" title="Loading and Configuring MathJax"
+ <a href="index.html" title="Configuration Objects"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/index.html b/docs/html/options/index.html
@@ -0,0 +1,191 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <title>Configuration Objects — MathJax v1.1 documentation</title>
+ <link rel="stylesheet" href="../_static/mj.css" type="text/css" />
+ <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
+ <script type="text/javascript">
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: '../',
+ VERSION: '1.1',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ </script>
+ <script type="text/javascript" src="../_static/jquery.js"></script>
+ <script type="text/javascript" src="../_static/underscore.js"></script>
+ <script type="text/javascript" src="../_static/doctools.js"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
+ <link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
+ <link rel="next" title="The Core Configuration Options" href="hub.html" />
+ <link rel="prev" title="Common Configurations" href="../config-files.html" />
+ </head>
+ <body>
+
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="../genindex.html" title="General Index"
+ accesskey="I">index</a></li>
+ <li class="right" >
+ <a href="hub.html" title="The Core Configuration Options"
+ accesskey="N">next</a> |</li>
+ <li class="right" >
+ <a href="../config-files.html" title="Common Configurations"
+ accesskey="P">previous</a> |</li>
+ <li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+
+ <div class="document">
+ <div class="documentwrapper">
+ <div class="bodywrapper">
+ <div class="body">
+
+ <div class="section" id="configuration-objects">
+<span id="configuration"></span><h1>Configuration Objects<a class="headerlink" href="#configuration-objects" title="Permalink to this headline">¶</a></h1>
+<p>The various components of MathJax, including its input and output
+processors, its preprocessors, its extensions, and the MathJax core,
+all can be configured through the <tt class="docutils literal"><span class="pre">config/default.js</span></tt> file, or via a
+<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call (indeed, if you look closely, you
+will see that <tt class="docutils literal"><span class="pre">config/default.js</span></tt> is itself one big call to
+<tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt>). Anything that is in
+<tt class="docutils literal"><span class="pre">config/default.js</span></tt> can be included in-line to configure MathJax.</p>
+<p>The structure that you pass to <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> is a
+JavaScript object that includes name-value pairs giving the names of
+parameters and their values, with pairs separated by commas. Be
+careful not to include a comma after the last value, however, as some
+browsers (namely Internet Explorer) will fail to process the
+configuration if you do.</p>
+<p>The MathJax components, like the TeX input processor, have their own
+sections in the configuration object, labeled by the component name,
+and using a configuration object as its value. The object is itself
+a configuration object made up of name-value pairs that give the
+configuration options for the component.</p>
+<p>For example,</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">showProcessingMessages</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span> <span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">TagSide</span><span class="o">:</span> <span class="s2">"left"</span><span class="p">,</span>
+ <span class="nx">Macros</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">RR</span><span class="o">:</span> <span class="s1">'{\\bf R}'</span><span class="p">,</span>
+ <span class="nx">bold</span><span class="o">:</span> <span class="p">[</span><span class="s1">'{\\bf #1}'</span><span class="p">,</span><span class="mi">1</span><span class="p">]</span>
+ <span class="p">}</span>
+ <span class="p">}</span>
+<span class="p">});</span>
+</pre></div>
+</div>
+<p>is a configuration that includes two settings for the MathJax Hub (one
+for <cite>showProcessingMessages</cite> and one of the <cite>jax</cite> array), and a
+configuration object for the TeX input processor. The latter includes
+a setting for the TeX input processor’s <cite>TagSide</cite> option (to set tags
+on the left rather than the right) and a setting for <cite>Macros</cite>, which
+defines new TeX macros (in this case, two macros, one called <tt class="docutils literal"><span class="pre">\RR</span></tt>
+that produces a bold “R”, and one called <tt class="docutils literal"><span class="pre">\bold</span></tt> that puts is
+argument in bold face).</p>
+<p>The <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file is another example that shows nearly
+all the configuration options for all of MathJax’s components.</p>
+<div class="section" id="configuration-options-by-component">
+<h2>Configuration Options by Component<a class="headerlink" href="#configuration-options-by-component" title="Permalink to this headline">¶</a></h2>
+<p>The individual options are explained in the following sections, which
+are categorized by the component they affect.</p>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="hub.html">The core options</a></li>
+</ul>
+</div>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="tex2jax.html">The tex2jax preprocessor options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="mml2jax.html">The mml2jax preprocessor options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="jsMath2jax.html">The jsMath2jax preprocessor options</a></li>
+</ul>
+</div>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="TeX.html">The TeX input processor options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="MathML.html">The MathML input processor options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="HTML-CSS.html">The HTML-CSS output processor options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="NativeMML.html">The NativeMML output processor options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="MMLorHTML.html">The MMLorHTML configuration options</a></li>
+</ul>
+</div>
+<div class="toctree-wrapper compound">
+<ul>
+<li class="toctree-l1"><a class="reference internal" href="MathMenu.html">The MathMenu options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="MathZoom.html">The MathZoom options</a></li>
+<li class="toctree-l1"><a class="reference internal" href="FontWarnings.html">The FontWarnings options</a></li>
+</ul>
+</div>
+</div>
+</div>
+
+
+ </div>
+ </div>
+ </div>
+ <div class="sphinxsidebar">
+ <div class="sphinxsidebarwrapper">
+ <h3><a href="../index.html">Table Of Contents</a></h3>
+ <ul>
+<li><a class="reference internal" href="#">Configuration Objects</a><ul>
+<li><a class="reference internal" href="#configuration-options-by-component">Configuration Options by Component</a><ul>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+
+ <h4>Previous topic</h4>
+ <p class="topless"><a href="../config-files.html"
+ title="previous chapter">Common Configurations</a></p>
+ <h4>Next topic</h4>
+ <p class="topless"><a href="hub.html"
+ title="next chapter">The Core Configuration Options</a></p>
+<div id="searchbox" style="display: none">
+ <h3>Quick search</h3>
+ <form class="search" action="../search.html" method="get">
+ <input type="text" name="q" size="18" />
+ <input type="submit" value="Go" />
+ <input type="hidden" name="check_keywords" value="yes" />
+ <input type="hidden" name="area" value="default" />
+ </form>
+ <p class="searchtip" style="font-size: 90%">
+ Enter search terms or a module, class or function name.
+ </p>
+</div>
+<script type="text/javascript">$('#searchbox').show(0);</script>
+ </div>
+ </div>
+ <div class="clearer"></div>
+ </div>
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="../genindex.html" title="General Index"
+ >index</a></li>
+ <li class="right" >
+ <a href="hub.html" title="The Core Configuration Options"
+ >next</a> |</li>
+ <li class="right" >
+ <a href="../config-files.html" title="Common Configurations"
+ >previous</a> |</li>
+ <li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+ <div class="footer">
+ © Copyright 2011 Design Science.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.7.
+ </div>
+
+ </body>
+</html>
+\ No newline at end of file
diff --git a/docs/html/options/jsMath2jax.html b/docs/html/options/jsMath2jax.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The TeX input processor" href="TeX.html" />
<link rel="prev" title="The mml2jax Preprocessor" href="mml2jax.html" />
</head>
@@ -42,7 +42,7 @@
<a href="mml2jax.html" title="The mml2jax Preprocessor"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -110,11 +110,6 @@ details on how to represent HTML code in this way.</p>
<h4>Next topic</h4>
<p class="topless"><a href="TeX.html"
title="next chapter">The TeX input processor</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/jsMath2jax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -145,7 +140,7 @@ details on how to represent HTML code in this way.</p>
<a href="mml2jax.html" title="The mml2jax Preprocessor"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/mml2jax.html b/docs/html/options/mml2jax.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The jsMath2jax Preprocessor" href="jsMath2jax.html" />
<link rel="prev" title="The tex2jax Preprocessor" href="tex2jax.html" />
</head>
@@ -42,7 +42,7 @@
<a href="tex2jax.html" title="The tex2jax Preprocessor"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -110,11 +110,6 @@ details on how to represent HTML code in this way.</p>
<h4>Next topic</h4>
<p class="topless"><a href="jsMath2jax.html"
title="next chapter">The jsMath2jax Preprocessor</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/mml2jax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -145,7 +140,7 @@ details on how to represent HTML code in this way.</p>
<a href="tex2jax.html" title="The tex2jax Preprocessor"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/options/tex2jax.html b/docs/html/options/tex2jax.html
@@ -21,9 +21,9 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
- <link rel="up" title="Loading and Configuring MathJax" href="../configuration.html" />
+ <link rel="up" title="Configuration Objects" href="index.html" />
<link rel="next" title="The mml2jax Preprocessor" href="mml2jax.html" />
<link rel="prev" title="The Core Configuration Options" href="hub.html" />
</head>
@@ -42,7 +42,7 @@
<a href="hub.html" title="The Core Configuration Options"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" accesskey="U">Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" accesskey="U">Configuration Objects</a> »</li>
</ul>
</div>
@@ -205,11 +205,6 @@ been marked as ignored above.</p>
<h4>Next topic</h4>
<p class="topless"><a href="mml2jax.html"
title="next chapter">The mml2jax Preprocessor</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/options/tex2jax.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
@@ -240,7 +235,7 @@ been marked as ignored above.</p>
<a href="hub.html" title="The Core Configuration Options"
>previous</a> |</li>
<li><a href="../index.html">MathJax v1.1 documentation</a> »</li>
- <li><a href="../configuration.html" >Loading and Configuring MathJax</a> »</li>
+ <li><a href="index.html" >Configuration Objects</a> »</li>
</ul>
</div>
<div class="footer">
diff --git a/docs/html/output.html b/docs/html/output.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="The MathJax Community" href="community.html" />
<link rel="prev" title="MathJax MathML Support" href="mathml.html" />
@@ -57,9 +57,16 @@
<li>Using a browser’s native MathML support.</li>
</ul>
<p>These are implemented by the <cite>HTML-CSS</cite> and <cite>NativeMML</cite> output
-processors. You select which one you want to use by including either
-<tt class="docutils literal"><span class="pre">"output/HTML-CSS"</span></tt> or <tt class="docutils literal"><span class="pre">"output/NativeMML"</span></tt> in the <cite>jax</cite> array of
-your MathJax configuration. For example</p>
+processors.</p>
+<p>If you are using one of the combined configuration files, then this will
+select one of these output processors for you. If the config file ends in
+<tt class="docutils literal"><span class="pre">_HTML</span></tt>, then it is the HTML-CSS output processor, and if it ends in
+<tt class="docutils literal"><span class="pre">_HTMLorMML</span></tt>, then the NativeMML output processor will be chosen if the
+browser supports it, otherwise HTML-CSS output will be used.</p>
+<p>If you are performing your own in-line or file-based configuration, you
+select which one you want to use by including either <tt class="docutils literal"><span class="pre">"output/HTML-CSS"</span></tt>
+or <tt class="docutils literal"><span class="pre">"output/NativeMML"</span></tt> in the <cite>jax</cite> array of your MathJax configuration.
+For example</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">]</span>
</pre></div>
</div>
@@ -69,7 +76,7 @@ in your document.</p>
major browsers, with results that are consistent across browsers and
operating systems. This is MathJax’s primary output mode. It’s major
advantage is its quality and consistency; it’s drawback is that it is
-slower that the NativeMML mode at rendering the mathematics. (The
+slower than the NativeMML mode at rendering the mathematics. (The
HTML-CSS processor has not yet been optimized for speed, so you can
expect some improvement in the future. Note that IE8 in “IE8
standards mode” is an order of magnitude slower than any other browser
@@ -83,58 +90,75 @@ MathML. Opera has some built-in support for MathML that works well
with simple equations, but fails with more complex formulas, so we
don’t recommend using the NativeMML output processor with Opera. Safari,
Chrome, Konqueror, and most other browsers don’t support MathML
-natively.</p>
-<p>The advantage of the NativeMML output Processor is its speed, since
-native MathML support is much faster than using complicated HTML and
-CSS to lay out mathematics via an interpreted language like JavaScript
-(as the HTML-CSS output processor does). The disadvantage is that you
-are dependent on the browser’s MathML implementation for your
+natively, but may in the future, since MathML is part of the HTML5
+specification.</p>
+<p>The advantage of the NativeMML output Processor is its speed, since native
+MathML support is much faster than using complicated HTML and CSS to lay
+out mathematics, as the HTML-CSS output processor does. The disadvantage
+is that you are dependent on the browser’s MathML implementation for your
rendering, and these vary in quality of output and completeness of
-implementation. MathJax may rely on features that are not available
-in some renderers (for example, Firefox’s MathML support does not
-implement some of the named widths, such as
-<tt class="docutils literal"><span class="pre">negativethinmathspace</span></tt>). The results using the NativeMML output
-processor may have spacing or other rendering problems that are
-outside of MathJax’s control.</p>
+implementation. MathJax may rely on features that are not available in
+some renderers (for example, Firefox’s MathML support does not implement
+some of the named widths, such as <tt class="docutils literal"><span class="pre">negativethinmathspace</span></tt>). The results
+using the NativeMML output processor may have spacing or other rendering
+problems that are outside of MathJax’s control.</p>
<div class="section" id="automatic-selection-of-the-output-processor">
<h2>Automatic Selection of the Output Processor<a class="headerlink" href="#automatic-selection-of-the-output-processor" title="Permalink to this headline">¶</a></h2>
<p>Since not all browsers support MathML natively, it would be unwise to
choose the NativeMML output processor unless you are sure of your
audience’s browser capabilities. MathJax can help with that, however,
-since there is a special configuration file that will choose between
-NativeMML and HTML-CSS depending on the browser in use. To invoke it,
-add <tt class="docutils literal"><span class="pre">"MMLorHTML.js"</span></tt> to your configurations <cite>config</cite> array, and <strong>do
-not</strong> include an output processor in your <cite>jax</cite> array; MathJax will
-fill that in for you based on the abilities of your user’s browser.</p>
+since a number of its combined configuration files will select NativeMML
+output when the browser supports it, and HTML-CSS output otherwise. These
+are the configuration files that end in <tt class="docutils literal"><span class="pre">_HTMLorMML</span></tt>.</p>
+<p>If you are doing your own configuration, there is a special configuration
+file that you can include that will choose between NativeMML and HTML-CSS
+depending on the browser in use. To invoke it, add <tt class="docutils literal"><span class="pre">"MMLorHTML.js"</span></tt> to
+your configurations <cite>config</cite> array, and <strong>do not</strong> include an output
+processor in your <cite>jax</cite> array; MathJax will fill that in for you based on
+the abilities of your user’s browser.</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">config</span><span class="o">:</span> <span class="p">[</span><span class="s2">"MMLorHTML.js"</span><span class="p">],</span>
<span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">]</span>
</pre></div>
</div>
<p>You can customize which choice to make on a browser-by-browser basis
-or a global basis. See the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file or the
-<a class="reference internal" href="configuration.html#configuration"><em>Configuring MathJax</em></a> section for futher
-details.</p>
+or a global basis. See the <tt class="docutils literal"><span class="pre">config/default.js</span></tt> file or the
+<a class="reference internal" href="options/MMLorHTML.html#configure-mmlorhtml"><em>Configuring MMLorHTML</em></a> section for futher
+details. As an example, this configuration tells MathJax to use HTML-CSS
+output rather than native MathML support for Firefox:</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">MMLorHTML</span><span class="o">:</span> <span class="p">{</span> <span class="nx">prefer</span><span class="o">:</span> <span class="p">{</span> <span class="nx">Firefox</span><span class="o">:</span> <span class="s2">"HTML"</span> <span class="p">}</span> <span class="p">}</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></script></span>
+</pre></div>
+</div>
+<p>With this configuration, MathML output will be used only for IE with the
+MathPlayer plugin (Firefox is the only other browser to have native MathML
+support that is sufficient for use with MathJax). Note, however, that a
+user can employ the MathJax contectual menu to select the other renderer if
+he or she wishes.</p>
<p>MathJax produces MathML that models the underlying mathematics as best
it can, rather than using complicated hacks to improve output for a
particular MathML implementation. When you make the choice to use the
NativeMML output processor, you are making a trade-off: gaining speed
at the expense of quality and reliability, a decision that should not
-be taken lightly. Note, however, that a user can employ the MathJax
-contectual menu to select the other other renderer if he or she
-wishes.</p>
+be taken lightly.</p>
</div>
<div class="section" id="html-css-with-ie8">
<span id="id1"></span><h2>HTML-CSS with IE8<a class="headerlink" href="#html-css-with-ie8" title="Permalink to this headline">¶</a></h2>
-<p>Internet Explorer 8 has at least eight different rendering modes in
-which can operate, and that are triggered by the <cite>DOCTYPE</cite> of the
-document being viewed. Its “quirks” mode is its fastest mode, and its
-“IE8 standards” mode is its slowest. This is the mode triggered by
-strict HTML document types, and since most modern content management
-systems now include a <cite>DOCTYPE</cite> that activates “standards” mode, IE8
-will operate in its slowest manner. This is particularly apparent
-when MathJax is used, since IE8 in standards mode runs 20 to 30 times
-slower than it does in its IE7 emulation mode, and 60 times slower
-than in quirks mode.</p>
+<p>Internet Explorer 8 has at least eight different rendering modes in which
+it can operate, and that are triggered by the <cite>DOCTYPE</cite> of the document
+being viewed. Its “quirks” mode is its fastest mode, and its “IE8
+standards” mode is its slowest. This is the mode triggered by strict HTML
+document types, and since most modern content management systems now
+include a <cite>DOCTYPE</cite> that activates “standards” mode, IE8 will operate in
+its slowest manner. This is particularly apparent when MathJax is used,
+since IE8 in standards mode runs 20 to 30 times slower than it does in its
+IE7 emulation mode, and 60 times slower than in quirks mode, on the sample
+equations page in <tt class="docutils literal"><span class="pre">test/sample.html</span></tt>.</p>
<p>Most users find this speed reduction unacceptable when there is much
mathematics on the page. To overcome this problem, you may wish to
tell IE8 to use its IE7 emulation mode rather than its IE8 standards
@@ -151,6 +175,9 @@ before any stylesheets or other content are loaded.</p>
described above to select NativeMML output when possible, and request
that your users install the <a class="reference external" href="http://www.dessci.com/en/products/mathplayer/">MathPlayer plugin</a>, which will render
the mathematics much more quickly.</p>
+<p>It appears that IE9 in IE9 standards mode may perform better than IE8, but
+since IE9 is still in beta testing as of this writing, we have yet to see
+exactly what the performance of MathJax in IE9 will be like.</p>
</div>
</div>
@@ -175,11 +202,6 @@ the mathematics much more quickly.</p>
<h4>Next topic</h4>
<p class="topless"><a href="community.html"
title="next chapter">The MathJax Community</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/output.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/platforms/index.html b/docs/html/platforms/index.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="next" title="Installing MathJax in WordPress" href="wordpress.html" />
<link rel="prev" title="The FontWarnings extension" href="../options/FontWarnings.html" />
@@ -51,6 +51,15 @@
<div class="section" id="using-mathjax-in-popular-web-platforms">
<span id="platforms"></span><h1>Using MathJax in popular web platforms<a class="headerlink" href="#using-mathjax-in-popular-web-platforms" title="Permalink to this headline">¶</a></h1>
+<p>MathJax plugins are available for a growing number of wikis, blogs, and
+other content-management systems. These include WordPress, Blogger,
+Sphinx, TiddlyWiki, and MathEL-Wiki. A list of these is available in the
+<a class="reference external" href="http://www.mathjax.org/community/mathjax-in-use/#web-apps">web applications and integrations</a> list of the
+<a class="reference external" href="http://www.mathjax.org">MathJax web site</a>.</p>
+<p>If the program you are using is not one of these, you may still be able to
+use MathJax by modifying the theme or template for your wiki or blog.</p>
+<div class="section" id="using-mathjax-in-a-theme-file">
+<h2>Using MathJax in a Theme File<a class="headerlink" href="#using-mathjax-in-a-theme-file" title="Permalink to this headline">¶</a></h2>
<p>Most web-based content-management systems include a theme or template
layer that determines how the pages look, and that loads information
common to all pages. Such theme files provide one popular way to
@@ -61,12 +70,11 @@ which probably means you need to be an administrator for the site; if
you are not, you may need to have an administrator do these steps for
you.</p>
<p>To enable MathJax in your web platform, add the line:</p>
-<div class="highlight-python"><pre><script type="text/javascript" src="path-to-MathJax/MathJax.js"></script></pre>
+<div class="highlight-python"><pre><script type="text/javascript"
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></pre>
</div>
-<p>(where <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> is the web-address of the main MathJax
-directory for your server) either just before the <tt class="docutils literal"><span class="pre"></head></span></tt> tag in
-your theme file, or at the end of the file if it contains no
-<tt class="docutils literal"><span class="pre"></head></span></tt>.</p>
+<p>either just before the <tt class="docutils literal"><span class="pre"></head></span></tt> tag in your theme file, or at the end of
+the file if it contains no <tt class="docutils literal"><span class="pre"></head></span></tt>.</p>
<p>The theme files for various popular platforms are:</p>
<blockquote>
<div><dl class="docutils">
@@ -89,6 +97,7 @@ your theme file, or at the end of the file if it contains no
<p>Keep in mind that this will enable MathJax for your current
theme/template only. If you change themes or update your theme, you
will have to repeat these steps.</p>
+</div>
<div class="section" id="insructions-for-specific-platforms">
<h2>Insructions for Specific Platforms<a class="headerlink" href="#insructions-for-specific-platforms" title="Permalink to this headline">¶</a></h2>
<p>Some programs, such as WordPress and Moveable Type, allow you to edit
@@ -112,6 +121,7 @@ instructions for these are given via the links below.</p>
<h3><a href="../index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Using MathJax in popular web platforms</a><ul>
+<li><a class="reference internal" href="#using-mathjax-in-a-theme-file">Using MathJax in a Theme File</a></li>
<li><a class="reference internal" href="#insructions-for-specific-platforms">Insructions for Specific Platforms</a><ul>
</ul>
</li>
@@ -125,11 +135,6 @@ instructions for these are given via the links below.</p>
<h4>Next topic</h4>
<p class="topless"><a href="wordpress.html"
title="next chapter">Installing MathJax in WordPress</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/platforms/index.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/platforms/movable-type.html b/docs/html/platforms/movable-type.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="Using MathJax in popular web platforms" href="index.html" />
<link rel="next" title="MathJax TeX and LaTeX Support" href="../tex.html" />
@@ -53,8 +53,6 @@
<div class="section" id="using-mathjax-in-movable-type">
<span id="platform-movable-type"></span><h1>Using MathJax in Movable Type<a class="headerlink" href="#using-mathjax-in-movable-type" title="Permalink to this headline">¶</a></h1>
-<p>These instructions assume you already have placed the MathJax files on
-your server (see <a class="reference internal" href="../installation.html#installation"><em>Installing and Testing MathJax</em></a>).</p>
<ol class="arabic">
<li><p class="first">Open Moveable Type Admin interface for the site on which you want to enable
MathJax.</p>
@@ -72,19 +70,20 @@ and open the <cite>HTML Head</cite> template.</p>
</div></blockquote>
</li>
<li><p class="first">At the end of the file, insert</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></script></span>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></script></span>
</pre></div>
</div>
-<p>where <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> is replaced by the web-address of the
-main MathJax dorectory on your server.</p>
+<p>to load MathJax from our distributed netowrk service.</p>
<blockquote>
<div><img alt="../_images/mt_head.png" src="../_images/mt_head.png" />
</div></blockquote>
</li>
-<li><p class="first">Save the file. This should enable MathJax, so you should be able
-to start adding mathematical content to your pages. Use the
-<tt class="docutils literal"><span class="pre">config/MathJas.js</span></tt> file in the MathJax directory to configure
-MathJax to your needs (see <a class="reference internal" href="../configuration.html#configuration"><em>Configuring MathJax</em></a> for details).</p>
+<li><p class="first">Save the file. This will enable MathJax with both TeX and MathML
+input, so you should be able to start adding mathematical content to
+your pages. If you need to adjust the configuraiton, see
+<a class="reference internal" href="../configuration.html#loading"><em>Configuring MathJax</em></a> for more details.</p>
</li>
</ol>
</div>
@@ -101,11 +100,6 @@ MathJax to your needs (see <a class="reference internal" href="../configuration.
<h4>Next topic</h4>
<p class="topless"><a href="../tex.html"
title="next chapter">MathJax TeX and LaTeX Support</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/platforms/movable-type.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/platforms/wordpress.html b/docs/html/platforms/wordpress.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
- <script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="../index.html" />
<link rel="up" title="Using MathJax in popular web platforms" href="index.html" />
<link rel="next" title="Using MathJax in Movable Type" href="movable-type.html" />
@@ -53,8 +53,8 @@
<div class="section" id="installing-mathjax-in-wordpress">
<span id="platform-wordpress"></span><h1>Installing MathJax in WordPress<a class="headerlink" href="#installing-mathjax-in-wordpress" title="Permalink to this headline">¶</a></h1>
-<p>These instructions assume you already have placed the MathJax files on
-your server (see <a class="reference internal" href="../installation.html#installation"><em>Installing MathJax</em></a>).</p>
+<p>Note that there is a <a class="reference external" href="http://wordpress.org/extend/plugins/mathjax-latex/">WordPress plugin for MathJax</a>, so that may be a
+better choice than editing the theme directly.</p>
<ol class="arabic">
<li><p class="first">Open the WordPress admin interface.</p>
</li>
@@ -74,18 +74,18 @@ header file (it should be <tt class="docutils literal"><span class="pre">header.
<p>This part depends slightly on how your current theme is written.
In the <tt class="docutils literal"><span class="pre">header.php</span></tt> file, look for the end-of-head tag,
<tt class="docutils literal"><span class="pre"></head></span></tt>. If you find it, insert</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></script></span>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></script></span>
</pre></div>
</div>
<p>just before that. Otherwise, insert the same code at the very
-bottom of the file. Here, <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> should be replaced
-by the web-address of the main MathJax directory on your server,
-e.g., <tt class="docutils literal"><span class="pre">src="/mathjax/MathJax.js"</span></tt>.</p>
+bottom of the file.</p>
</li>
-<li><p class="first">Save the file. This should enable MathJax, so you should be able to
-start adding mathematical content to your pages. Use the
-<tt class="docutils literal"><span class="pre">config/MathJas.js</span></tt> file in the MathJax directory to configure
-MathJax to your needs (see <a class="reference internal" href="../configuration.html#configuration"><em>Configuring MathJax</em></a> for details).</p>
+<li><p class="first">Save the file. This will enable MathJax with both TeX and MathML
+input, so you should be able to start adding mathematical content to
+your pages. If you need to adjust the configuraiton, see
+<a class="reference internal" href="../configuration.html#loading"><em>Configuring MathJax</em></a> for more details.</p>
</li>
</ol>
</div>
@@ -102,11 +102,6 @@ MathJax to your needs (see <a class="reference internal" href="../configuration.
<h4>Next topic</h4>
<p class="topless"><a href="movable-type.html"
title="next chapter">Using MathJax in Movable Type</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="../_sources/platforms/wordpress.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
diff --git a/docs/html/queues.html b/docs/html/queues.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="up" title="Synchronizing your code with MathJax" href="synchronize.html" />
<link rel="next" title="Using Signals" href="signals.html" />
@@ -290,11 +290,6 @@ finishes everything it has queued when it was loaded. For example,</p>
<h4>Next topic</h4>
<p class="topless"><a href="signals.html"
title="next chapter">Using Signals</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/queues.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/search.html b/docs/html/search.html
@@ -22,7 +22,7 @@
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/searchtools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<script type="text/javascript">
jQuery(function() { Search.loadIndex("searchindex.js"); });
diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({objects:{"":{Load:[0,0,1],getAllJax:[32,0,1],Log:[14,0,1],Subclass:[33,0,1],Delay:[23,0,1],Init:[33,0,1],Interest:[35,0,1],Translate:[34,0,1],Config:[32,0,1],addElement:[9,0,1],Styles:[0,0,1],ExecuteHook:[35,0,1],loadTimeout:[0,0,1],Resume:[13,0,1],Update:[32,0,1],loadComplete:[0,0,1],loadHook:[0,0,1],formatError:[32,0,1],call:[13,0,1],getJaxByInputType:[32,0,1],PreProcess:[32,0,1],fileURL:[0,0,1],has:[33,0,1],Signal:[23,0,1],Insert:[32,0,1],addText:[9,0,1],TextNode:[9,0,1],Augment:[33,0,1],loadError:[0,0,1],Clear:[14,0,1],Register:[34,0,1],noTranslate:[34,0,1],Typeset:[32,0,1],Queue:[23,0,1],NoInterest:[35,0,1],Set:[14,0,1],getJaxByType:[32,0,1],Push:[13,0,1],Element:[9,0,1],Post:[35,0,1],wait:[13,0,1],reset:[23,0,1],Suspend:[13,0,1],executeHooks:[23,0,1],Process:[32,0,1],Text:[45,0,1],Reprocess:[32,0,1],Startup:[34,0,1],SourceElement:[45,0,1],getJaxFor:[32,0,1],can:[33,0,1],MessageHook:[35,0,1],isJax:[32,0,1],isa:[33,0,1],Require:[0,0,1]}},terms:{lvertneqq:25,reprocess:[32,45,43],mathjax_msie_fram:14,four:[16,41,30],prefix:[9,16,11],asymp:25,blacktriangledown:25,webfont:[5,37,16],whose:[4,26,32,20,43],biggr:25,under:36,preprocess:[47,32,24,43],slowest:46,gimel:25,everi:[15,32],mskip:25,arcco:25,dotplu:25,affect:[45,32,30,11],isforefox:32,bbfont:25,eqnarrai:25,cmd:18,bigodot:25,ominu:25,red:[25,16,11,40],nparallel:25,properti:[9,0,27,33,23,35,13,26,34,45,8,32,20],direct:[5,36,37,30],consequ:17,second:[0,36,30,23,26,41,44,4,5,40,18,15,8,20,49],ngeq:25,even:[0,36,23,35,13,41,2,25,15,26,40,11,44,19,47,32,43],hide:43,prejax:[47,18],neg:25,multlinewidth:21,yoursit:2,"new":[9,35,11,30,23,43,33,41,24,3,14,15,44,21,42,45,19,8,32,20,47],mhtml:1,told:44,limsup:25,elimin:18,abov:[9,25,37,23,16,41,2,43,4,5,18,26,46,30,33],lessapprox:25,blacktriangleright:25,here:[9,35,27,23,26,41,2,43,15,16,34,18,6,32,45],met:24,lneqq:25,path:[0,1,16,6,31,11],noundefin:[25,16,11,2],interpret:[25,46,30],nrightarrow:25,forum:[16,3],bowti:25,rceil:25,backprim:25,uproot:25,circleddash:25,mathstrut:25,unix:30,brower:25,thinmathspac:36,highli:19,describ:[9,30,23,16,39,49,24,43,25,5,40,26,46,47,32],would:[25,5,7,9,32,13,16,40,18,45,21,22,23,26,29,46,30,11,33,4,37,38,41,42,43,17,47,48,49],bleed:30,vartriangl:25,ltime:25,varlambda:25,call:[0,1,2,4,5,7,32,13,14,15,17,18,20,21,22,23,25,26,29,30,8,11,33,34,35,37,38,39,45,41,42,43,44,47,48],recommend:[46,47,30],diretori:30,preview:[4,38,47,22,18],type:[0,1,2,4,6,8,9,32,15,16,34,18,45,31,11,36,20,41,43,44,46,47],until:[0,22,35,41,24,4,26,18,15,38,11],notin:25,displaymath:[4,11],notic:[25,11],warn:[0,5],eqslantless:25,hold:[0,40,18,29,47,32],unpack:[16,30],must:[0,36,37,5,39,13,25,14,4,16,46,21,18,29,44,30,11,35,49],fbox:25,join:[15,25],room:21,setup:[19,16,36,11],work:[9,10,36,30,26,25,2,3,43,15,16,28,44,19,46,11,33],cc0000:[49,18],tag_nam:30,root:[25,0,24],overrid:[33,5,8,34,20],mathmenu:[49,17,37,42,11],give:[35,16,40,49,2,15,5,21,11],indic:[0,11,26,13,25,24,15,16,35,34,18,45,8,32,20,47],impair:19,want:[48,15,37,23,26,12,33,41,3,14,4,16,25,18,43,46,30,31,11,20],setminu:25,end:[0,36,1,41,24,3,25,4,6,15,31],quot:[4,37,18],hom:25,heartsuit:25,how:[0,1,2,3,25,5,6,13,14,16,40,18,22,23,35,38,29,30,32,4,37,42,44,17,47],sever:[0,30,41,43,26,47,11,20],answer:[3,43],verifi:[16,30,3],config:[24,4,5,6,7,31,11,14,15,16,21,18,20,22,2,25,26,28,29,8,32,34,17,37,38,41,42,43,46,48,49],updat:[30,1,41,43,32,45],showrender:42,lai:[46,47],diagdown:25,after:[0,37,23,26,13,41,2,42,14,15,16,34,18,43,44,30,47,11,35],befor:[0,1,3,4,6,13,14,15,21,18,23,25,26,29,30,32,33,34,35,36,37,39,40,41,43,44,46,47],wrong:36,startuphook:[15,32],parallel:[25,41],averag:47,alignedat:25,attempt:[0,36,42],third:[41,36],leftarrow:25,receiv:[35,44,15,26,34,33],greasekit:2,maintain:[15,26,18,3,44],environ:[25,3,4,16,21,11],enter:[25,47,36,43],textnod:9,order:[35,22,30,16,39,13,41,14,4,5,18,26,46,38,32,33,47],oper:[0,4,5,7,13,14,15,16,17,19,21,22,38,29,30,34,35,27,37,26,39,41,42,43,46,48],parentnod:2,over:[9,0,37,42,43,25,16,18,29,47],fall:[5,41,30,16],becaus:[15,36,37,26,41,2,25,14,4,16,40,43,30,47,11,35],boxtim:25,textrm:25,appar:[46,41],afil:26,flexibl:[41,40],vari:46,smallint:25,fit:[15,42],fix:30,preferredfont:37,better:[16,11,42],boxminu:25,complex:[46,40],fade:5,persist:3,comprehens:39,easier:[35,36,30,41,25,33],moveleft:25,them:[9,0,36,30,16,13,41,25,4,5,21,11,26,15,47,32,35,49],thei:[0,2,3,4,5,7,32,12,13,15,16,17,18,21,22,24,25,26,29,30,11,34,35,36,37,38,39,40,41,42,43,44,47,48,49],precapprox:25,safe:[9,2,43],"break":[25,44,41,36],mtext:[25,16],wedg:25,widetild:25,choic:[46,32,11],dbinom:25,leftharpoondown:25,timeout:[0,23],each:[15,11,30,23,35,41,24,43,4,16,44,47,32],debug:14,side:[21,14,18,6],mean:[15,22,1,35,12,25,2,43,4,26,18,44,19,38,11],leqq:25,createel:2,resum:[13,41],leqalignno:25,mathopen:25,looparrowleft:25,goe:[25,44,41],iint:25,newli:[9,15,33],content:[9,47,36,1,39,24,41,2,43,4,16,40,18,6,46,31,32,33,8],reader:19,forth:27,impract:30,multilin:25,situat:11,free:[45,3],standard:[25,39,49,15,16,19,46,47,11],lneq:25,angl:25,moment:[16,30],unabl:5,pulicis:35,isa:33,subtl:43,onto:[39,16,41,32,43],mathbb:25,rang:47,mathbf:25,render:[36,24,42,4,18,19,46,47,11,48,28],yourcolleg:30,restrict:[25,30],hook:[15,0,23,35],instruct:[1,2,16,40,6,31],alreadi:[0,23,25,41,2,3,14,15,26,6,44,31,43,33],primari:46,tooltop:37,top:[27,30,25,16,46,11],underlin:25,master:44,too:[4,16,2],similarli:[0,32],john:26,listen:[15,35,32,23],thickapprox:25,namespac:[16,11,2,23,43],tool:[41,30],tagind:21,gtrless:25,somewhat:44,technic:39,past:[15,19,44,35],filesmatch:30,provid:[9,0,36,23,1,35,13,41,25,14,15,26,40,11,44,19,47,32,33,43],eqalignno:25,tree:40,iota:25,project:[39,3],matter:[15,28],minut:30,mathtt:25,ldotp:25,modern:[19,5,11,46,10],mind:[25,1],manner:46,increment:13,seem:[26,36],rightrightarrow:25,ldot:25,ngeqq:25,latter:[15,40,47,11],curvearrowleft:25,though:[23,2,25,44,40,18,47],object:[0,24,5,9,10,32,12,13,14,15,17,18,20,23,26,29,8,11,33,34,35,27,37,39,40,41,42,43,44,45,47,49],regular:[4,18],letter:[16,30],grave:25,don:[36,26,41,2,43,15,5,46,32],dom:[9,45,41,43,15,44,34,18,32,20],doe:[25,36,23,45,2,15,26,17,48,11,19,46,8,32,20,47],bracket:[40,18],tfrac:25,unchang:[48,43],sum:[25,23],dot:25,delaystartupuntil:[24,18],random:[16,30],lnapprox:25,syntax:[25,33],mediawiki:1,isopera:32,shownam:26,asynchon:43,involv:[16,11,3,44],consolid:19,layout:45,firstnam:26,mathchoic:25,ismsi:[32,24],menu:[36,37,24,42,17,18,29,6,46,31,45,47],explain:[16,11,44],configur:[24,4,5,6,7,8,10,11,15,16,21,18,19,20,22,2,26,28,29,30,31,32,34,17,36,37,38,40,25,46,47,48],apach:30,configut:40,theme:[1,6],rich:19,folder:[16,37,30],infti:[25,47],mho:25,report:[36,18,3],circeq:25,subseteq:25,fadeouttim:5,bar:[25,33,23],patch:30,reload:42,replacechild:2,neq:25,respond:[35,18,3],dashrightarrow:25,scriptscriptstyl:25,precneqq:25,result:[36,37,23,26,45,41,43,25,16,46,8,32,20,47],respons:[16,8,11,23,35],fail:[0,11,46,34,26],themselv:[40,32,24,27],best:[0,41,11,47,46],awar:[25,0,41,36],starup:18,varinjlim:25,wikipedia:[39,2],circledcirc:25,gneqq:25,approach:[26,47,11,1,43],attribut:[9,49,25,38,40,47],never:[30,2],extend:[19,47],synchon:15,extens:[0,24,25,5,32,15,16,21,18,22,2,38,28,29,11,34,4,27,39,41,42,43,49],preprocessor:[25,22,38,24,27,4,16,36,18,11,47,32,43,28],intop:25,cot:25,cow:33,howev:[30,41,2,3,43,25,26,18,46,47,11,33,49],against:35,browser:[24,25,5,10,32,16,17,18,19,45,2,27,28,30,11,4,36,37,39,42,44,46,47,48],com:30,varpsi:25,pre:[4,5,36,30],foral:25,foobar:33,sai:[13,2,23],innerhtml:[2,43],height:[25,42],wider:3,assum:[16,31,43,6],speak:[12,47],chrome:[37,32,2,46],three:[36,30,23,26,40,41,5,34,44,47],been:[0,30,23,26,13,41,2,3,14,4,16,46,34,28,43,15,44,11,35],trigger:[46,18,29],interest:[15,35,39,3,44],basic:10,tini:25,quickli:[19,46,3],underrightarrow:25,regul:41,xxx:25,ani:[0,2,3,4,5,7,32,13,14,15,16,17,18,45,21,22,23,25,26,29,30,11,33,35,36,37,38,41,42,43,44,46,48],emploi:[39,46],hskip:25,tanh:25,servic:[16,11,30],showcontext:42,diamondsuit:25,dashboard:31,suffici:[25,21,48],succeq:25,canb:21,lightli:46,nexist:25,tabl:36,cong:25,disappear:[4,38,22],amout:14,incorrectli:30,perform:[35,11,23,26,39,13,41,24,3,27,15,5,34,18,43,44,32,45],suggest:[5,3],make:[0,3,25,5,32,12,13,15,16,18,19,22,38,11,33,4,36,30,41,42,43,44,46,47,49],drawback:46,split:25,lrcorner:25,unsafewindow:2,complet:[0,30,23,26,39,13,41,43,15,16,34,44,46,32,35,45],longmapsto:25,hand:[27,14,21,18,47,36,28],fairli:40,rais:25,mkern:25,ignorepast:35,unlhd:25,techniqu:2,redefin:[5,34],kept:15,thu:[23,41,15,26,11,45],inherit:[12,33,8,20,45],client:37,thi:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,21,18,20,22,23,35,24,25,26,27,28,29,30,31,32,33,34,17,36,37,38,40,41,42,43,44,45,46,47,48,49],idotsint:25,programm:33,everyth:[25,41,32],settimeout:[26,23],left:[36,27,24,14,25,44,21,18,6,31,11],processclass:4,identifi:[9,16,47,11,35],just:[35,36,23,1,26,41,25,16,18,6,19,47,11,49],yen:25,mathbin:25,coprod:25,yet:[36,13,41,43,15,44,46],languag:[39,16,47,46,44],noscript:4,onload:[24,27,2,18,26],errorset:18,ell:25,had:[15,16],myconfig:[15,26],els:[26,2,43],save:[31,49,6],hat:25,jsmath:[10,47,28],"3px":49,applic:[19,16,24],loadtimeout:0,quirk:46,preserv:26,negativethinmathspac:46,background:[25,49],sqsubset:25,specif:[0,27,23,1,35,39,13,41,43,4,26,34,18,47,32,45],arbitrari:25,zoom:[36,18,29],leftrightarrow:25,underli:46,www:[16,11,2,30,42],right:[36,37,39,13,41,2,14,25,17,18,6,30,47,11,21],old:15,simbl:2,deal:46,autobold:[25,11],surd:25,percentag:[17,37,18],donald:39,successfulli:[0,26],interc:25,dddot:25,bottom:6,subclass:[35,27,20,34,45,8,33],circ:25,exectur:35,overcom:[44,46],condit:[0,24],getjaxfor:[15,32,20],core:[11,41,24,25,18,47,32],plu:[35,24],bold:[25,40,21,11],mathrel:25,colleg:30,repositori:30,post:[35,37,24,3,14,15,44,34],"super":33,llless:25,obj:9,nwarrow:25,slightli:[25,6],surround:[17,37],unfortun:30,current_theme_templ:1,joomla:1,span:[22,4,38,40,18,47,28],downharpoonright:25,produc:[35,37,23,16,45,25,42,43,15,5,17,18,26,19,46,47,11,20,21],encod:25,contectu:46,rightsquigarrow:25,down:[31,18],shortparallel:25,wrap:33,often:[16,47,49],git:[16,30],wai:[15,22,30,23,1,26,41,2,14,4,16,35,34,18,43,38,46,8,11,20,47],checkmark:25,transform:47,ngtr:25,avail:[0,22,37,5,45,41,42,46,4,16,17,18,11,15,19,30,38,36,33,47],width:[25,46,21,36,42],reli:[0,41,2,43,26,17,46,11],wordpress:[1,6],editor:6,rightthreetim:25,head:[1,2,43,16,6,46,31,11],form:[36,37,39,21,18,47],offer:3,forc:[11,37],epsilon:25,hear:[15,35],downdownarrow:25,"true":[35,11,37,23,25,24,42,27,4,17,18,7,32,33],vcenter:25,reset:[42,23],absens:1,displayalign:18,intern:[0,36,35,39,13,41,25,18,46,8,32,20,47],tell:[16,46,2,30,43],moveright:25,nnn:30,featur:[36,30,3,15,26,29,46,33],rfloor:25,sale:17,exist:[25,30,33,23],ddot:25,backsim:25,triangleq:25,check:[0,30,35,25,26,33,16],when:[0,24,4,5,6,7,11,12,13,14,15,16,17,18,19,20,21,22,23,25,26,27,28,29,30,8,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],abovewithdelim:25,role:47,test:[9,10,36,30,44,2,43,15,16,31,32,33],tie:[24,23],smallsmil:25,node:9,intend:33,consit:25,munderov:47,gvertneqq:25,consid:[0,11,41,3,25,4,47,32,45],omega:25,outdat:3,faster:[46,11],furthermor:[41,18],tex2jax_ignor:4,ignor:[4,35],time:[0,2,3,25,5,9,32,14,15,16,34,18,23,26,29,11,35,30,41,43,46,47],push:[23,39,13,41,24,43,26,32],mathrm:25,doteq:25,emulateie7:46,skip:4,global:[12,46,27,23,43],skin:1,displayind:18,millisecond:[0,37,23,42,14,5,29,32],decid:[11,42],depend:[23,43,26,6,46,11,48],newenviron:25,readabl:39,nearrow:25,varpi:25,certainli:[11,30],vee:25,decis:46,leftarrowtail:25,succnsim:25,sourc:[10,36,37,41,2,42,15,17,19,30,47,32,45],string:[0,23,35,40,25,14,4,21,18,15,32,45,49],curlyve:25,word:[4,47],centerdot:25,dim:25,foo:[33,23],administr:[1,6],level:[16,11,30,27],did:26,item:[37,40,42,25,26,17],cooki:[9,24],div:[9,25,47,28,43],prevent:[25,22,37,38,42,4,16,21,18],slower:46,compens:17,sign:[25,43,4,16,47,11],cost:[16,11,33],pmb:25,rightarrowtail:25,histori:[15,35,24,39],xandi:33,dotsi:25,dotsm:25,appear:[25,27,30,26,42,14,15,16,18,43,6,11,45],dotso:25,repli:15,dotsc:25,dotsb:25,current:[0,37,1,35,45,46,6,30,31,33],backepsilon:25,ampersand:25,inlinemath:[4,16,11,43],defici:36,amalg:25,mathsiz:25,gener:[26,48,24,5,47,32,45],mfrac:[16,47],modif:41,address:[16,31,30,1,6],along:[39,41,14,15,8,20],wait:[0,30,23,35,39,13,41,2,43,15,26,24,18,44,32],box:[25,0,5],html_head:1,bracevert:25,shift:18,bot:25,queue:[35,27,23,44,12,13,41,24,43,26,39,32],overriden:32,digamma:25,varlimsup:25,macintosh:32,semant:33,succsim:25,extra:[15,25,47,18],circumv:30,modul:[0,31,27],prefer:[16,48,37,30,42],iepro7:2,veebar:25,visibl:[4,38,41,22,43],marker:25,myid:49,arrowvert:25,memori:[44,45],bigr:25,visit:16,todai:39,subvers:[16,30],stylesheet:[0,27,23,35,13,24,43,44,18,6,46],handler:[0,27,39,2,24,43,44,47],current_skin:1,bigl:25,bigm:25,eqcirc:25,checkout:30,bigg:25,inputjax:[27,12,45,24,34,8,33],capit:12,sitaut:43,bigtriangleup:25,enhanc:47,visual:19,prototyp:33,hphantom:25,easiest:[30,23,26,15,16,11],graphic:30,prepar:[41,11],cap:25,uniqu:49,pmatrix:25,whatev:[25,1,20,41,43,15,33],cal:25,purpos:[26,47,46],getjaxbytyp:32,downharpoonleft:25,subseteqq:25,varprojlim:25,backslash:[25,21,18],topic:[12,10,11],sharp:25,occur:[0,36,23,35,13,41,2,42,14,15,26,34,18,11,44,32,43],eqsim:25,nuber:14,pink:25,alwai:[25,26,41,23],multipl:[25,41],trianglelefteq:25,write:[19,16,41,43,35],fourth:41,mathsf:25,tild:25,xhtml:[16,36,11],map:47,max:25,clone:30,spot:25,mac:[17,32,37,18],udpat:30,mai:[0,1,2,3,4,5,32,12,15,16,17,18,20,25,26,30,11,33,34,35,36,37,45,41,43,44,46,47],data:[9,0,27,37,23,33,15,26,34,45,30,8,32,20],goal:19,vartheta:25,preceq:25,uparrow:25,geramond:25,inform:[0,37,1,35,39,14,15,26,17,18,47,11],"switch":[47,28],looparrowright:25,combin:0,gamma:25,lnsim:25,approx:25,showmathmath:17,lsh:25,tex2math:[16,28],still:[35,36,23,39,41,15,16,18,29,46],pointer:33,ttf:30,dynam:[0,27,10,41,2,43,16,18,44,19,47,11],entiti:[25,36],amssymbol:[25,16,11,2],group:[0,36,3],monitor:3,polici:30,bigstar:25,platform:[19,10,1,16],window:[27,23,5,2,42,14,26,43,32],"05em":25,main:[47,11,30,1,12,33,41,49,42,25,16,27,18,6,31,32,20,8],mathexampl:43,non:[9,0,47,16,13],msam10:16,myinputjax:34,initi:[0,27,44,41,24,42,25,4,16,34,18,15,47,32,45],safari:[46,32,2],half:26,now:[39,16,11,30,46],discuss:[9,30,2,3],nor:[5,40],term:14,name:[0,24,4,5,9,32,15,16,21,18,20,22,23,2,26,30,8,11,33,34,35,36,37,38,40,25,45,46,49],opera:[46,32,2,48],boxdot:25,separ:[36,30,41,14,15,16,17,18,11,49],messagestyl:[5,18],sideset:25,januari:[],confid:19,varpropto:25,vec:25,compil:26,domain:30,replac:[0,36,2,43,16,21,11,6,31,32,33,47],individu:[11,45,43],continu:[15,0,41,44,25],happen:[36,30,13,41,25,44,47],shown:[25,40,18,42,43],accomplish:[30,2,46],space:[43,25,18,46,7,11,47],internet:[0,2,42,14,25,26,18,46,47,11],formula:[43,18,29,19,46,47,11],correct:[26,2,30],simeq:25,earlier:41,ntriangleleft:25,ajax:[0,27,12,41,24,15,26,34,32],mime:[11,45,16,36,8,32,20,34],underleftarrow:25,org:[16,11,2,42],ord:25,care:[25,11,2],ntrianglelefteq:25,couldn:26,x00b1:16,synchron:[0,23,10,39,13,41,2,43,26,24,44,32,35],mscarri:36,thing:[25,16,40,43],place:[0,37,16,41,3,25,15,5,35,21,18,43,6,31,11,33],mathop:25,unwis:46,ture:17,think:[25,18,43],frequent:[4,15],first:[15,36,23,26,41,2,44,25,4,16,35,40,18,43,6,8,11,20,47],origin:[33,35,30,13,25,2,43,15,16,45,8,11,20],lfloor:25,suspend:[15,13,41,35],directli:[41,2,43,25,26,47],onc:[0,30,23,35,41,24,43,25,16,28],arrai:[2,4,5,7,32,13,15,16,34,20,21,22,23,24,26,28,46,8,11,35,37,38,40,25,17,47,48],yourself:[25,13,2,18,26],submit:3,open:[10,36,30,42,16,6,19,31],predefin:18,size:[25,49,17,37,43],given:[9,0,33,23,1,35,13,41,40,25,14,15,26,34,18,45,47,32,20,49],ifmodul:30,evail:41,leftrightharpoon:25,circl:25,whith:36,white:49,conveni:[16,11,33,18],hub:[24,4,5,7,32,12,14,15,17,18,20,21,22,2,26,29,11,34,27,37,38,45,41,42,43,47,48],especi:47,programat:47,copi:[36,30,2,3,16,11,19,32],specifi:[25,5,7,9,13,15,16,40,18,21,23,35,26,29,46,11,4,37,41,42,44,17,47,48,49],lhd:25,enclos:[49,47,37,18],quad:25,than:[0,4,5,7,32,13,15,16,34,18,19,20,23,25,30,8,11,33,35,36,37,39,41,43,44,46,47,49],serv:[16,11],wide:[19,47,30],underbrac:25,were:[15,45,43],posit:[13,37],seri:[41,40],preccurlyeq:25,delic:17,lnot:25,doublecup:25,nleftrightarrow:25,argument:[35,23,41,26,11,33],dash:[49,37],properli:[0,36,30,5,45,41,2,43,26,32,33],engin:[19,10],squar:[25,40],npreceq:25,note:[0,2,25,5,32,16,40,18,45,21,35,26,30,11,4,37,41,42,43,46,47,48,49],x2260:16,take:[0,23,1,5,41,24,3,43,25,16,21,26,44,11],noth:[26,23],channel:[15,39],updownarrow:25,begin:[15,43,41,24,25,4,21,46,47,11],sure:[35,30,43,41,2,3,25,4,16,46,11],windowset:42,normal:[25,23,49,2,4,18,47],track:[47,3],beta:[25,16],pair:[9,0,11,23,40,49,4,21,15,8,32,20],fileurl:0,beth:25,latex:[10,39,25,4,16,18,19,47,11],textarea:4,later:[35,36,37,23,13,41,25,26,32],drive:30,typeset:[0,24,4,14,15,17,18,19,45,22,2,26,29,32,27,37,38,39,41,42,43,44,47],badg:3,subarrai:25,sigma:25,mathfrak:25,showmathmenu:37,show:[30,42,5,3,43,25,26,40,18,31,11,16],autoreset:23,approxeq:25,unprocess:[32,45,43],permiss:[16,30],hack:46,corner:[27,18,14],xml:[19,39],insruct:1,onli:[0,1,2,3,25,5,32,16,40,18,19,45,35,26,30,11,4,36,37,39,49,43],explicitli:[25,26,4,16,11,33],activ:[36,23,39,3,43,44,46,47],state:41,inlinedelimit:25,otim:25,black:25,geq:25,mypic:[4,38,22,40],nearli:[25,11],variou:[35,37,1,12,49,15,5,17,8,11,47],get:[9,10,36,37,23,26,41,2,14,25,16,35,17,18,46,30,43,33],cannot:25,ncong:25,downarrow:25,requir:[0,23,41,2,25,15,26,34,19,47,32,20],prime:25,lceil:25,mathpunct:25,enspac:25,intermitt:[27,14],shortmid:25,retypeset:43,where:[0,1,24,3,25,5,8,9,32,14,15,16,21,20,23,26,30,31,11,27,37,45,49,43,44,47],wiki:[16,47,2],lozeng:25,obejct:13,ismac:[32,24],concern:[47,32],detect:23,longleftrightarrow:25,enumer:25,label:[25,11,42],enough:[41,40],between:[25,23,26,41,42,15,16,46,47,32,45],maltes:25,"import":[12,0,41,44,15],across:[39,46],parent:[9,33],vdot:25,screen:[0,41,43,19,14,20],negmedspac:25,come:[36,30,41,2,26,46,47,11],leftleftarrow:25,img:[22,49,2,4,38,40],timout:0,pertain:16,audienc:46,overbrac:25,mani:[25,11,44,41,4,26,32,49],color:[25,49,40,18],operatornam:25,period:[0,27,30],colon:[25,49],cancel:23,pod:25,bigcirc:25,msrow:36,needlessli:26,skew:25,mark:[25,36,49,4,16,28,47,11],succapprox:25,upharpoonleft:25,arcsin:25,resolut:19,mathplay:[46,11,2,18,42],breve:25,texfont:5,blacktriangl:25,those:[35,36,30,23,26,13,41,40,49,25,15,5,34,18,43,45,19,8,32,20,47],manu:42,"case":[25,37,23,26,33,41,2,43,15,16,40,18,45,30,47,11,20,49],kappa:25,oldstyl:25,addtext:9,invok:46,margin:21,tbinom:25,advantag:[46,41,1],barwedg:25,leadsto:25,mlongdiv:36,worri:[15,47],destin:32,updatemath:43,bigwedg:25,develop:[39,36,30,3],author:[14,34,18,29,19,47],media:[49,30],postjax:[47,18],same:[15,22,30,35,41,44,25,4,38,6,11,20],html:[1,24,4,5,7,9,10,32,12,15,16,17,18,20,22,2,38,27,30,31,11,25,36,37,39,40,49,42,43,44,46,47,48],pad:[9,49],knuth:39,mathvari:47,document:[0,22,39,10,12,25,2,43,4,16,36,18,11,19,46,38,32,20,47,28],exhaust:11,finish:[39,44,41,2,43],vvdash:25,nest:[36,27],availablefont:[5,11,37],longleftarrow:25,capabl:[12,19,11,46],formaterror:32,improv:[46,18,3],extern:[0,27,44,41,15,26,32],submenu:[18,42,6],appropri:[25,15,16,28,8,47],macro:[25,16,21,18,11],markup:[39,0,25,36,47],leftharpoonup:25,overwithdelim:25,without:[0,36,37,25,15,26,17,47],model:[10,27,30,12,24,25,46,47,33],altertn:46,bigotim:25,stixfont:5,mml2jax:[36,38,2,16,18,47,11],loaderror:0,rest:[0,36,41,43,16,19,47],speed:[46,47,11],versu:41,mathzoom:[49,11,29],nleqq:25,except:[16,11,44],littl:[0,35],blog:[16,47],earli:11,hover:[42,18,29],around:[25,11],read:[15,16,36,30,40],outermost:40,boldsymbol:[25,11],messsag:14,getjaxbyinputtyp:32,moo:33,world:[19,26],lasterror:32,mod:25,sum_:47,cdot:25,integ:32,server:[37,1,2,16,6,30,31,11],either:[0,30,1,35,12,40,49,2,15,16,21,29,46,32,48],output:[2,25,7,10,32,15,16,17,18,45,27,11,33,34,36,37,39,20,49,42,43,46,47,48],manag:[9,27,30,1,26,39,24,14,16,46,47],lesssim:25,searrow:25,sqcup:25,constitut:12,alttext:38,definit:[0,37,49,42,17,29,19],shoveright:25,inputid:45,dashleftarrow:25,mathcal:25,variuou:15,complic:[40,36,48,46],refer:[10,30,16,45,2,43,15,5,35,34,26,44,32,33],power:[41,3],inspect:32,broken:47,thinspac:25,fulli:[41,36],regexp:4,"throw":[34,2],trianglerighteq:25,assocait:43,underwai:41,ddddot:25,act:[25,26,39,41,15,16,21,18,47,11],industri:39,processor:[47,36,37,39,41,24,42,25,16,17,49,46,7,11,48,21],hookrightarrow:25,nobreakspac:25,routin:[9,0,44,26,34,8,32,20],effici:[11,33,43],elementari:36,lessdot:25,triangledown:25,bbb:25,rightharpoondown:25,mathbackground:25,your:[0,1,2,3,4,5,6,7,10,11,16,21,18,19,22,25,26,28,29,30,31,32,17,36,37,38,39,40,41,42,43,44,46,48],sqsupseteq:25,log:[25,16,30,14],area:[21,14],fontwarn:[5,11,18],lor:25,strict:[46,30],interfac:[30,1,16,6,19,31],lot:[15,30],lambda:25,buggi:25,categor:11,longer:[35,30,14],pull:30,mathml:[10,36,39,45,2,47,25,16,17,48,19,46,7,11,20,8],bullet:25,possibl:[0,36,30,23,5,41,14,16,18,26,46,47,11,33,49],"default":[0,24,25,5,7,32,14,16,34,18,20,21,22,23,38,29,30,8,11,4,37,42,17,47,48],processescap:[4,11],buildrel:25,sepecifi:30,notag:25,embed:36,expect:[25,46,41,11,18],creat:[0,24,3,9,14,15,34,20,23,26,8,33,35,27,30,39,45,41,42,44,47,49],certain:[15,35,44],leftrightsquigarrow:25,risingdotseq:25,varliminf:25,file:[0,1,2,25,5,6,8,32,13,14,15,16,34,18,20,23,24,26,28,31,11,35,30,39,40,41,44,45,46,47,48,49],outputjax:[27,12,45,24,34,20],fill:[46,48],again:[0,11,45,43,25,8,32,20],iiiint:25,googl:3,pmod:25,reduct:46,valid:[26,46],you:[1,2,3,4,5,6,7,11,12,13,14,15,16,21,18,19,20,22,23,24,25,26,28,30,31,32,33,34,17,36,37,38,40,41,42,43,44,46,47,48,49],trash:45,sequenc:[10,30,13,25,24,15,44],symbol:[25,16],dashv:25,briefli:16,menuset:[18,29],reduc:25,mathcolor:25,lbrace:25,directori:[0,37,1,44,39,45,24,15,16,34,18,6,30,31,11,20,8],descript:[22,38,2,4,5,27,18],lbrack:25,scroll:31,calle:33,potenti:41,escap:[21,11],dst:32,negthickspac:25,represent:47,all:[0,1,2,4,5,10,32,14,15,16,34,18,19,22,23,25,26,36,11,33,35,27,30,38,39,41,44,46,47],consider:[16,11],illustr:43,dollar:[4,16,25,11,43],abil:[46,47,30],follow:[15,37,23,26,12,40,25,24,43,4,16,34,30,47,11,33,49],alt:[2,18],disk:[11,30],children:36,scr:25,articl:39,init:33,program:[27,1,44,12,45,41,24,16,19,47,33],smile:25,cgi:0,liter:4,multlin:[25,21],vert:25,far:[0,35,14],varrho:25,prooblem:25,"1px":[9,25,49],verb:25,mechan:[35,23,13,41,24,15,44,33],loadcomplet:[0,32,34],veri:6,strang:36,list:[24,25,5,6,7,31,32,15,21,18,20,22,23,38,29,8,11,4,37,45,41,42,43,17,47,48],emul:46,adjust:[37,16,17,2,43],displaylin:25,small:[25,47,21,14],preceed:[4,18],getalljax:[32,43],lll:25,tex:[2,4,5,7,10,32,15,16,21,18,19,22,27,28,30,8,11,34,25,36,37,39,41,43,46,47],zero:13,design:[19,31,36,2,3],pass:[0,11,23,35,13,41,24,42,15,26,47,32,33],overlin:25,further:[13,41,47],what:[10,22,37,23,38,25,36,11,3,43,4,5,17,18,29,19,30,47,32,42],sub:27,section:[2,25,5,7,32,16,21,18,22,26,28,29,46,31,11,4,36,37,38,42,17,48],ast:25,abl:[37,23,16,2,43,15,5,18,6,19,30,31,11],delet:37,version:[10,27,30,24,2,3,43,16,34,29,45,8,32,20],sup:25,method:[9,0,11,33,23,35,13,41,2,14,15,26,34,43,44,8,32,20,45],hasn:[0,34,14],full:[0,12,4,26,18,19],exectu:23,variat:11,geqslant:25,modular:[19,36],ggg:25,ineffici:[33,18],modifi:[10,43,15,34,32,20],valu:[0,24,4,5,7,9,32,13,15,17,18,21,22,23,38,29,11,33,36,37,26,40,41,42,43,47,48,49],search:[19,10,32,3],sender:15,prior:18,amount:[5,21,23],action:[0,2,25,32,13,14,15,34,20,23,24,26,29,8,11,35,27,39,41,43,44,47],mathjax_wikipedia:2,magnitud:46,llap:25,via:[0,36,37,23,1,16,45,41,2,14,15,5,29,46,30,47,11,33],shorthand:43,filenam:26,href:40,inappropri:15,emptyset:25,famili:[25,0,49],decrement:13,select:[36,30,42,17,46,32],proceed:[41,40],x41:25,distinct:[12,11],mathja:[31,6],regist:[0,35,39,24,15,44,34,8,32,20,47],two:[25,44,40,41,15,16,21,18,46,11,49],asn:47,taken:[15,25,41,46,43],imath:25,ispc:[32,24],more:[5,32,13,16,40,18,19,23,26,30,8,11,33,35,37,39,41,17,43,44,46,47,48,49],flat:25,diamond:25,desir:[33,2,30],henc:30,ital:[0,18],aleph:25,particular:[9,0,30,23,26,39,13,49,25,16,35,44,46,47,32,33],known:41,upsilon:25,mathml3:36,cach:15,showmathmenumsi:17,none:[35,22,37,23,38,4,26,18,47],eta:25,mmlorhtml:[46,48,11,2,18],det:25,dev:3,widehat:25,remain:39,paragraph:[25,5,47,43],caveat:30,def:[25,33],deg:25,scan:32,myspan:40,registr:34,share:[16,11,30,3],templat:[31,1,6],succneqq:25,minimum:32,explor:[0,2,42,14,25,26,18,46,47,11],phrase:16,mathinput:43,huge:25,cours:[41,36],newlin:[25,14],awkward:33,secur:[30,2],rather:[0,25,5,7,13,15,16,34,18,19,20,23,8,11,33,4,36,30,41,43,44,46,47,49],anoth:[35,30,43,13,41,14,15,44,8,11,47],comfort:30,csc:25,snippet:[9,10,22,38,3,4,5,40,18,32],ddagger:25,stix:[37,39,25,5,47,11],simpl:[46,40,18],css:[0,2,25,5,7,10,32,16,17,18,45,27,29,30,11,36,37,39,20,49,42,43,46,47,48],isn:15,resourc:[16,11],referenc:5,variant:39,reflect:[24,43],vdash:25,mstack:36,impliedbi:25,associ:[47,37,23,45,26,17,30,8,32,20,34],curlywedg:25,mytim:26,github:30,ambigu:12,caus:[0,36,30,26,45,41,25,14,4,16,27,21,18,43,15,47,32,35,42],callback:[0,27,23,35,12,13,41,24,43,15,26,39,44,8,32,20,45],firefox3:37,merror:49,unrhd:25,help:[30,42,16,3,46,11],soon:[11,2,18,43],trade:46,through:[35,36,30,41,42,25,15,44,46,47,11,33],hierarchi:[11,30],paramet:[9,0,22,33,23,26,13,14,16,35,21,18,11,38,8,32,20,34,43,45],style:[9,0,37,10,39,40,25,24,42,14,4,5,17,18,29,49,47,32,45,16],arial:25,x221a:36,processupdatetim:32,x221e:47,late:[39,2],isreadi:[27,24],pend:13,amsmathaddit:41,processenviron:4,might:[0,36,30,26,41,3,15,16,21,47,11],alter:[4,43],good:[41,2,3],"return":[9,0,36,33,23,35,13,41,14,15,26,34,43,44,8,32,20,45],textstyl:25,hslash:25,getelementbyid:43,rlap:25,mathscr:25,noerror:[25,16,11,2],bigcup:25,easili:[19,16,47],iff:25,x2212:[16,47],found:[0,8,18,3,26],unicod:[25,5,36],x2211:47,button:30,subsystem:24,originaltext:45,weight:[40,33],hard:[11,30,3],realli:26,nless:25,connect:[26,47],beyond:3,orient:[12,33,27,24],nleq:25,shortcom:44,skiptag:4,asynchorn:[41,43],print:[19,49,30],occurr:44,msie:[17,32,48],foreground:49,safari3:37,advanc:[12,10,19,11],offsetx:37,mml:[48,47,27,45],reason:[0,36,26,41,2,42,14,25,16,34,11,46,32],base:[27,37,1,44,12,2,24,46,5,34,45,19,30,33],typeet:43,put:[0,30,44,2,25,16,11],mathr:25,offseti:37,basi:[46,48],succnapprox:25,drupal:1,msbm10:16,showprocessingmessag:[11,18],perhap:26,bumpeq:25,elementjax:[12,45,34,24,27],stixgener:25,getelementsbytagnam:2,assign:[4,26],major:[19,46,11,2],dont:47,boxplu:25,feel:3,exchang:39,lastnam:26,number:[0,27,30,23,5,40,41,14,16,21,18,26,45,8,32,20,34],fadeoutstep:5,done:[13,41,11,47],construct:[41,47],blank:[35,23,43],stabl:30,miss:[25,23],differ:[25,11,30,23,26,41,43,15,16,44,46,47,32,33],script:[0,11,30,1,24,41,2,43,4,16,47,34,18,6,15,31,32,20,8,45],interact:[19,16,47,45],smoother:5,least:[46,47,32],statement:[41,23],illeg:40,mbox:25,store:[9,35,27,37,23,45,41,43,26,8,32,20,47],option:[25,5,6,7,32,16,40,18,21,22,38,28,29,11,33,34,4,37,42,17,47,48],nleftarrow:25,triangleleft:25,ntrianglerighteq:25,selector:[49,18,14],tex2jax_process:4,part:[15,36,30,23,44,41,2,25,4,16,21,6,19,47,33],pars:25,binom:25,cosh:25,kind:47,whenev:[35,36,30],remot:30,remov:[35,43,45,14,4,18,47,32,20],dtd:[16,11],bridg:45,arrang:23,ffff88:49,comput:[30,32,37],nleqslant:25,packag:[39,30,28],expir:9,"null":[9,0,22,37,23,35,33,2,14,4,5,27,34,18,43,38,8,32,20,45],built:[10,2,46],equival:[9,23,41,43,26,40],lim:25,self:36,also:[2,3,25,9,12,14,15,16,17,18,45,23,26,30,11,33,4,36,37,39,42,43,44,47],brack:25,brace:25,index:[16,30,1],addel:9,react:35,most:[27,30,1,23,39,2,49,24,15,34,46,11,33],plan:16,rho:25,alpha:25,rhd:25,vardelta:25,clear:[35,37,23,24,14,15],tpl:1,exp:25,usual:[23,26,41,25,5,34,18,47],leftroot:25,nshortparallel:25,carefulli:[40,43],finv:25,particularli:[46,30],rightleftarrow:25,font:[0,37,5,39,40,49,42,14,25,16,17,18,43,44,19,30,47,11,21],find:[3,43,5,28,6,46,47,32],preremoveclass:18,execut:[0,23,13,41,24,15,26,47],pretti:30,solut:[16,47,30,3],delayedx:23,"public":30,queu:[13,41,23,35],factor:[17,37,18],tagsid:[21,11],precnsim:25,express:[4,15,41,18,35],strut:25,nativ:[36,12,2,19,46,47,11,48],greasemonkei:[11,2],notransl:34,restart:[4,13,41],ie8:46,ie7:46,acut:25,vmatrix:25,common:[36,1,39,40,25,5,34,11,32],set:[0,24,4,5,7,9,32,14,15,16,17,18,45,21,22,23,2,25,26,28,29,30,11,33,35,27,37,38,39,40,41,42,43,44,47,48,49],overrightarrow:25,startup:[10,27,24,41,2,43,15,34,18,32],see:[0,3,4,5,6,8,32,13,15,16,17,18,22,23,25,26,28,29,30,31,11,35,36,37,38,39,41,42,43,44,46,47,49],sec:25,arg:25,close:[5,36,11,3],langl:25,someth:[30,3,43,4,16,18],particip:3,won:[41,30],subscript:25,experi:[30,18],attibut:49,numer:[32,36],complement:25,javascript:[0,1,2,5,6,10,12,15,16,17,18,19,45,21,23,26,29,31,11,33,27,37,39,40,41,42,44,46,47,49],mailbox:[15,39],bmatrix:25,distinguish:8,longrightarrow:25,classnam:2,popul:24,closur:[26,23,43],last:[0,11,30,23,13,49,25,32],delimit:[4,16,25,11,47],hyperlink:47,event:[39,2,43,15,44,47],nvdash:25,context:[4,42,18,23],overset:25,hbar:25,whole:[22,44,43,4,38,32],load:[0,1,2,25,10,32,13,14,15,16,34,18,19,20,23,24,26,28,8,11,35,27,30,39,41,43,44,46,47],markdown:47,simpli:[25,22,30,23,38,13,43,4,26,34,18,11,19,8,32,20,28],point:[25,13,16],instanti:33,schedul:26,usemathmlspac:7,header:[30,1,6],suppli:[32,45,23],bigve:25,mistak:40,zeta:25,gneq:25,atopwithdelim:25,empti:[27,37,23,41,24,47],dur:32,strategi:46,invis:30,fire:[24,2,26],imag:[22,37,38,2,4,5,40,19,30],descib:16,coordin:[13,41,47],understand:47,urcorn:25,sqcap:25,blacksquar:25,look:[9,35,36,37,23,1,43,25,3,14,4,16,11,6,30,47,32,49],solid:[9,25,49],pitchfork:25,lvert:25,"while":[9,0,36,30,16,48,41,2,25,15,5,34,18,44,46,47,11,35],blacktriangleleft:25,nprec:25,behavior:18,circlearrowright:25,bookmarklet:11,everyon:15,loop:45,subsect:34,measuredangl:25,readi:[15,34,24,27],jpg:[4,38,22,40],biguplu:25,itself:[35,36,30,23,13,41,24,25,15,27,18,11,45,47,32,33,49],overleftarrow:25,rightarrow:25,xleftarrow:25,redisplai:14,unexpectedli:16,conflict:47,upuparrow:25,optim:46,domin:39,alert:[15,26,41,23],jsmath2jax:[22,28,11],hander:18,temporari:34,user:[25,36,37,23,43,2,3,14,15,5,17,18,29,46,19,30,47,11,42,28],robust:[15,39],typic:[4,25,30],recent:[19,2],lower:[25,27,24,18,14],task:25,entri:[39,13,49],searchabl:19,person:26,textit:25,expens:46,normals:25,scriptsiz:25,fallingdotseq:25,explan:[16,11],rvert:25,obscur:14,mathinn:25,amp:25,regardless:43,cup:25,blacklozeng:25,ffeeee:25,notifi:15,input:[2,25,7,32,15,16,21,18,45,27,28,8,11,33,34,36,39,20,41,43,46,47],unlik:[19,34],subsequ:25,oslash:25,trueli:43,march:10,format:[10,36,37,39,40,25,16,17,18,45,19,46,8,11,20,47],big:[25,11,30],moodl:1,tomathml:45,game:25,insert:[22,23,2,4,38,34,18,11,6,31,32,20,47],bit:[17,33],diagup:25,semi:49,varkappa:25,signal:[35,27,23,44,12,24,15,26,34,39,32],altough:26,collect:[26,41,45,49,23],"boolean":32,popular:[16,28,1],swarrow:25,stackrel:25,lastest:3,creation:[8,24],some:[1,25,5,32,12,13,15,16,17,18,19,20,23,26,30,8,11,33,34,36,37,45,41,43,46,47,48],back:[5,30,45],emph:25,sampl:[30,44,49,15,16,18],instal:[10,37,16,46,25,5,6,19,30,31,11],scale:[19,17,37,18],delimt:4,mathemat:[0,2,4,5,6,31,32,15,16,17,18,19,20,21,22,38,28,29,30,8,11,34,25,36,37,39,45,41,42,43,46,47],larg:[25,0],slash:11,prod:25,reproduc:43,sqsubseteq:25,tex2jax:[25,36,2,43,4,16,27,18,47,11],machin:[39,30],garamond:25,previou:[26,41,35,23,14],run:[0,2,4,5,7,32,13,15,16,17,21,22,23,24,38,30,11,35,36,37,26,41,43,44,46,47,48],doteqdot:25,odot:25,step:[5,47,1,16],hookleftarrow:25,impor:30,impos:30,ngeqslant:25,materi:43,rangl:25,succcurlyeq:25,block:[37,16,5,17,18,47,11,34],file3:41,file2:41,file1:41,file4:41,bmod:25,within:[0,36,30,23,5,12,25,24,11,43,4,16,21,28,26,44,47,32,33],prec:25,notat:[19,16,25,47,39],isjax:32,announc:44,triangl:25,question:[16,34,3],"long":[25,41,42],custom:[14,25,16,19,46,11],perp:25,includ:[0,1,24,4,5,7,11,12,15,16,17,18,19,21,22,23,2,26,27,28,29,30,8,32,34,25,36,37,38,40,41,42,43,46,47,48,49],suit:[5,36,16],nativemml:[36,48,42,17,46,47,11,20],overleftrightarrow:25,ulcorn:25,doctyp:[46,36],poster:35,atop:25,loadhook:[0,32,26],serif:[25,0,49],link:[30,1,16,12,5,44,11],translat:[8,34,20,47],delta:25,line:[25,22,30,1,2,24,4,16,36,46,47,11],consist:[25,40,41,36,46],rmoustach:25,qquad:25,divideontim:25,geqq:25,similar:[44,23],enlarg:29,constant:15,doesn:[25,37,23,45,2,15,18,30,33],repres:[9,22,16,49,14,4,5,40,18,19,38,20,47],mathdiv:[9,26,41,43],opera10:37,guarante:[0,41,43,13],constortium:19,phantom:25,bigoplu:25,iiint:25,titl:[16,43],sequenti:[44,41],invalid:[25,40],llcorner:25,toaudibl:45,declar:[36,37,49,42,5,17,29],shoveleft:25,xrightarrow:25,department:30,supseteq:25,delayclear:37,msup:[16,47],slice:23,eval:23,newcommand:25,svn:[16,30],rightharpoonup:25,land:25,mimetyp:[45,8,34,20],svg:47,supseteqq:25,depth:25,hello:26,code:[0,2,3,4,6,9,10,32,13,15,16,17,18,22,23,24,25,26,11,35,27,38,39,40,41,43,44,49],partial:25,edg:30,queri:47,tiddlywiki:1,edu:[30,2],privat:[44,34,30],elsewher:43,send:[15,35],becam:39,sens:47,sent:[15,35,32,39],actiontyp:37,unzip:30,gnsim:25,xxxxxxxx:[16,30],mous:[47,37,42,29],tri:[25,0,37,30],ischrom:32,mathit:25,forefox:[30,2],"try":[33,3,15,16,34,8,20],userscript:2,maction:37,pleas:[16,11,40,3],impli:[25,36],smaller:0,fortun:15,natur:[19,16,25,30,47],varupsilon:25,download:[0,30,5,16,18,47],fullnam:26,hspace:25,click:[30,42,17,18,29,6,37,47],append:9,compat:[39,46],appendchild:[9,2],turn:[9,35,36,23,4,17],compar:11,access:[35,30,1,26,45,41,42,25,16,19,33],mathjax:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49],can:[0,2,3,4,5,9,11,13,14,15,16,17,18,19,20,23,24,25,26,27,28,30,8,32,33,34,35,36,37,39,41,43,44,46,47,49],vargamma:25,varsigma:25,leq:25,let:[36,30,2,42,16,40,46,32,48],sinh:25,becom:[36,30,23,41,3,15,33],sinc:[0,36,23,35,13,41,49,25,15,16,17,18,11,44,46,47,32,33,21,43],tex4ht:47,rtime:25,convert:[10,36,23,25,2,4,28,19,47,20],convers:25,larger:47,technolog:[19,3],zscale:18,circledast:25,chang:[11,37,1,43,2,42,14,17,30,47,32,45,21],chanc:[4,15,35],firefox:[11,30,2,46,32,48],rgroup:25,appli:[25,33],iskonqueror:32,lessgtr:25,api:[12,10,19,16],smallmatrix:25,from:[0,1,24,4,10,32,15,16,21,18,20,22,2,25,26,28,30,8,11,33,34,35,27,37,38,45,41,42,43,46,47],zip:[16,30],commun:[15,10,3,16],chi:25,doubl:[21,18,29],upgrad:[5,30,3],varphi:25,next:[25,44,45,43],implic:30,few:[25,16,30,28],msqrt:[16,47],src:[22,1,38,41,2,43,4,16,40,11,6,31,32],doublebarwedg:25,projlim:25,"4ac":16,rare:41,versionatleast:32,alik:2,retriev:9,augment:[33,8,34,20],aperson:26,thin:21,sqsupset:25,control:[25,22,37,16,49,11,42,46,4,5,17,18,29,38,30,7,32,48,21],tau:25,lesseqgtr:25,tar:30,process:[0,2,4,9,10,32,13,14,15,16,34,18,20,22,24,38,28,8,11,25,36,26,45,41,43,46,47,48],dfrac:25,newmath:43,high:[19,46,47],tag:[1,24,25,6,32,15,16,40,18,45,21,2,38,28,8,11,4,36,30,20,43,47],tan:25,prece:26,delai:[0,37,23,35,42,14,15,18,29,30],gcd:25,pure:36,getelementsbytagnamen:2,subdirectori:[30,8,20,45],instead:[25,30,16,13,41,43,15,26,47],class4:33,class2:33,sin:25,sim:25,class1:33,simplesup:33,frac:25,overridden:[37,20,34,45,8,33],mspace:[25,36],anothermethod:33,frak:25,redund:[33,18],essenti:[25,47,33],light:[25,33],correspond:[32,37],element:[24,25,5,9,15,16,40,20,22,35,38,36,8,32,33,4,27,37,45,41,43,44,47,49],issu:[0,36,3,14,16,47,11],unaccept:46,allow:[35,36,37,1,26,39,40,41,2,25,14,15,16,17,18,29,49,19,30,33,42],fallback:[30,37],mjx:9,fastest:46,nonumb:25,move:[30,37],nsucc:25,comma:[25,49,11,2,18],dagger:25,mathjax_tooltip:37,movabl:[31,1],coth:25,varxi:25,therefor:25,pixel:37,multimap:25,crash:18,greater:25,handl:[0,36,25,39,41,2,27,15,5,17,44,32,48,34],innermost:40,dai:9,successor:28,gggtr:25,sourceel:[15,45,20,43],anyth:[15,11,3],edit:[16,11,1],smallfrown:25,mode:[25,37,4,16,46,47],varomega:25,"2em":25,genfrac:25,subset:25,reprocessor:36,consum:14,nointerest:35,meta:46,"static":33,our:[30,3],meth:0,ie6:37,special:[25,36,26,49,4,16,18,11,44,19,46,47,32],out:[0,37,41,15,5,17,46,30,47],variabl:[27,23,12,2,24,43,25,26,33],lesseqqgtr:25,matrix:25,categori:41,rel:[0,17,37],moveabl:[31,1],circlearrowleft:25,ref:32,math:[24,4,9,10,32,14,15,16,17,18,19,22,2,38,28,29,30,8,11,34,25,36,37,39,42,43,44,46,47],negthinspac:25,nsucceq:25,insid:1,workflow:36,manipul:43,eqslantgtr:25,releas:[16,2,30],afterward:26,indent:[21,18],could:[0,36,26,12,41,3,43,15,16,47,32,45],ask:[47,21,3,43],succ:25,keep:[30,1,39,43,25,16,46,47],gtreqqless:25,length:[2,23],outsid:[4,46,11],"0em":18,scriptstyl:25,softwar:[19,16,47],rbrace:25,rbrack:25,qualiti:[19,46,47],spadesuit:25,date:[16,30],uplu:25,clubsuit:25,bigsqcup:25,start:[0,30,23,10,40,41,24,44,25,15,16,34,18,6,31,35,47],unknown:36,system:[30,1,16,3,25,5,19,46],messag:[0,11,30,39,16,12,25,24,14,15,5,27,34,18,44,32,35],attach:[15,35,44],termin:4,"final":[26,25,16,40,19,47,11],rsh:25,supset:25,"1em":36,gtreqless:25,blind:47,gtrdot:25,structur:[0,11,23,39,43,15,26,27,32],charact:[25,36,37,49,4,5,21,18,47],htaccess:30,seriou:47,biggl:25,biggm:25,rrightarrow:25,unkown:32,have:[0,1,2,3,4,5,6,32,15,16,17,18,45,23,25,26,30,31,11,33,34,35,36,37,41,43,44,46,47],disadvantag:46,need:[0,1,2,3,4,5,6,8,11,13,14,15,16,17,18,19,20,21,23,24,26,30,31,32,33,34,25,36,37,39,45,41,43,44,47,49],nsim:25,border:[9,25,49],min:25,mid:25,which:[1,24,4,8,32,14,15,16,21,18,20,22,23,2,25,26,27,28,29,30,31,11,33,34,35,36,37,38,40,41,43,45,46,47,49],hbox:25,mit:25,singl:[0,27,23,44,12,41,43,4,16,19,11,49],declaremathoper:25,mathjax_preview:[22,49,4,38,18,47],x22d6:25,unless:[16,11,23,46],who:[15,35,3],eight:46,leftthreetim:25,comparison:[41,32],"class":[33,35,27,23,12,13,25,4,34,18,45,8,20,47,28],underset:25,url:[0,30,2,42,16,11],gather:25,request:[0,35,41,25,15,26,46],face:[30,3,5,21,37,11],inde:[11,2],nmid:25,determin:[11,37,1,24,25,17,18,32],flux:41,fact:[35,34],backsimeq:25,mathjax_messag:14,text:[1,2,25,5,6,9,14,15,16,40,18,19,45,21,22,26,31,11,4,37,38,41,43,17,47],verbos:[39,26,18],perfom:44,perfor:46,bring:47,woth:36,curlyeqsucc:25,lgroup:25,locat:[0,22,30,16,24,2,43,4,5,18,11,15,38,32,20,47,28],jax:[24,7,32,12,15,16,34,18,45,21,2,28,8,11,33,17,27,37,39,20,49,43,46,47,48],vartriangleright:25,forev:2,should:[2,4,6,8,32,13,16,40,18,20,22,23,25,38,28,31,11,34,35,36,30,26,41,43,46,48,49],imagefont:[5,37],vartriangleleft:25,suppos:[26,43],"5px":9,triangleright:25,local:[30,23,16,41,2,43,5,18,11],hope:5,precsim:25,liminf:25,fontwarns:49,ignoreclass:4,leqslant:25,smash:25,enabl:[25,1,4,16,6,31],organ:47,frown:25,stuff:32,she:46,contain:[0,1,2,4,5,9,12,13,14,15,16,34,18,45,22,23,25,26,30,32,35,27,37,38,41,43,47,49],view:[36,37,12,2,16,28,46,19,30],altern:[0,25,26,47,11,33],coooki:9,temporarili:14,substack:25,issafari:32,mathord:25,statu:[0,30,26],error:[0,36,2,3,25,16,34,18,11,32],jmath:25,pattern:[4,18],thumb:41,gtrsim:25,written:[16,6],quickest:16,theta:25,neither:[5,11,40],equiv:[25,46],omicron:25,nshortmid:25,kei:[9,0,23,35,13,15,18,32],job:11,entir:[32,43],closebox:5,ker:25,addit:[0,36,23,16,13,41,25,15,5,18,26,45,8,32,20,49,43],skipstartuptypeset:18,plugin:[1,42,18,19,46,47,11],admin:[31,6],nabla:25,equal:[41,32,33],gnapprox:25,etc:[25,41,18,43],instanc:[9,33,41,34,32,45],equat:[25,22,30,43,4,38,21,18,19,46,47,11,45],futher:46,class3:33,eth:25,limiti:30,lmoustach:25,onchang:43,comment:[16,49,11,18],varnoth:25,dorectori:31,arriv:[15,44],solv:2,arguement:26,respect:[17,37,23],quit:43,showfontmenu:42,"55em":25,quotat:49,compos:36,compon:[0,36,35,12,33,49,24,42,15,44,27,11,19,8,32,20,47],accept:[26,23,43],treat:16,immedi:[0,13,41,24,43,15],smallsetminu:25,both:[0,36,16,39,41,26,18,11,32,33],alignat:25,otf:30,psi:25,togeth:[41,32,36,23],injlim:25,present:[5,36,18,3,35],twoheadrightarrow:25,multi:25,iscallback:23,plain:25,align:[25,36,18],contextu:[36,37,42,17,18,29,47,45],studentdisplai:43,defin:[11,37,29,16,24,41,2,42,25,5,17,18,26,49,32,33,21],glossari:[39,10],layer:1,almost:25,curvearrowright:25,site:[30,1,16,18,19,31,11],archiv:[16,30],revis:30,halt:44,welcom:3,displaystyl:[25,43],parti:15,cross:30,sqrt:[25,16,47],getx:33,extensiondir:34,oint:25,easi:[30,28],difficult:[26,36,44],phi:25,http:[16,2,30,42,46],lleftarrow:25,"8em":[25,21],effect:[13,41,2],mrow:[16,47,36],student:43,php:[1,6],trake:3,executehook:[35,23],off:[25,44,17,46],center:[25,18],well:[30,23,26,49,3,43,15,16,34,18,44,46],exampl:[0,2,3,4,5,7,9,11,13,15,16,17,18,20,21,22,23,25,26,27,29,30,8,32,33,35,36,37,38,40,41,42,43,44,45,46,47,48,49],command:[36,30,23,39,13,41,24,43,25,18,32],choos:[25,46],undefin:[25,16,11,23,26],setx:33,latest:30,curlyeqprec:25,paus:30,less:[4,25,47,32,30],natiov:17,obtain:[30,43,16,18,47,20],mistaken:47,mathclos:25,mathoutput:43,simultan:41,web:[10,37,1,16,24,41,2,44,25,15,5,28,43,6,19,30,31,11,35,47,45],current_them:1,smith:26,textbf:25,cdotp:25,add:[33,25,1,16,13,49,2,4,5,18,45,46,20],book:39,match:[4,35,37],ctrl:18,webpag:28,ntriangleright:25,know:[35,26,2,15,16,8,20,47],cfrac:25,press:18,loader:[8,20],recurs:32,konqueror:[46,32],nofont:5,like:[2,25,13,14,15,16,19,23,35,26,28,8,11,4,36,30,39,41,43,44,46,47,49],lost:26,messagehook:[15,35,32],necessari:[19,32,45],page:[1,24,4,5,6,9,10,11,12,14,15,16,17,18,19,45,22,2,25,26,28,30,31,32,35,36,37,38,41,42,43,44,46,47],captur:39,linux:32,"export":45,superclass:33,proper:[35,32],home:0,librari:[12,41,27,30],glyph:[39,25],kern:25,leak:45,avoid:[25,40,47,36,18],tooltip:37,leav:[9,21,48,43],doublecap:25,twoheadleftarrow:25,daleth:25,upharpoonright:25,journal:39,usag:10,sphericalangl:25,although:[12,16,11,48,35],offset:37,panel:25,varepsilon:25,about:[35,11,37,23,16,25,3,43,15,5,17,28,26,44,30,47,32],actual:[9,0,36,23,43,13,41,25,15,26,18,11,8,32,20],column:21,mod_head:30,mapsto:25,constructor:33,fals:[35,11,37,25,2,42,4,17,18,7,32,33],disabl:[17,37],eqalign:25,own:[30,16,12,41,2,3,25,5,44,8,11,20,47],amsmath:[41,2,25,16,21,11],circledr:25,delaypost:37,automat:[25,13,41,14,4,16,34,46,47,11,33],bigtriangledown:25,guard:18,vphantom:25,merg:[9,32],dcocument:32,transfer:[16,30],support:[10,36,37,16,24,2,3,27,25,5,17,19,46,47,11,48],much:[15,39,46,44],bigcap:25,tracker:[16,3],arg1:26,"var":[9,23,41,2,43,15,26,33],arg2:26,"function":[33,0,23,35,39,13,41,2,25,15,26,24,43,44,8,32,20,47],propto:25,unexpect:[17,18],precnapprox:25,studentansw:43,bodi:[0,43,16,8,11,20],gain:[46,42],inlin:[4,16,11],bug:[30,3,14,16,18,47],made:[45,41,3,44,8,11,20,47],bbbk:25,whether:[25,22,37,38,2,42,43,4,26,17,18,7,32,48],wish:[49,2,3,25,26,46,32],displai:[9,15,22,30,10,45,25,11,42,14,4,5,21,18,29,19,47,36,20,16,43],troubl:16,underleftrightarrow:25,asynchron:[0,27,23,35,39,13,41,15,26,44,32],gtrapprox:25,below:[1,2,25,5,7,9,16,40,18,20,21,22,38,29,46,30,8,32,34,4,37,45,42,44,17,47,48],limit:[25,0,36],otherwis:[0,32,23,14,25,27,6,11,33],problem:[30,26,2,3,25,16,46,47],x03c0:47,"int":[9,26,25],dure:[15,32,45,34,23],implement:[9,0,36,12,25,15,26,34,46,47,33],nolimit:25,inf:25,rightleftharpoon:25,probabl:[30,1,26,15,16,11],oplu:25,helpurl:42,immateri:41,percent:17,detail:[0,4,5,6,10,32,13,15,16,17,18,22,23,25,38,28,29,30,31,11,35,36,37,41,42,43,44,46,47],arctan:25,other:[24,25,32,13,15,16,17,18,19,45,23,35,26,28,30,11,33,34,4,36,37,39,41,43,44,46,47,48],futur:[15,0,46,3,44],varieti:47,downlaod:19,removeaft:5,repeat:[30,1],star:25,thicksim:25,msgroup:36,scientif:39,reliabl:[46,2],rule:[25,5,41,7,18],mathjax_mathml:2,portion:43,eot:30},objtypes:{"0":"py:method"},titles:["The MathJax.Ajax Object","Using MathJax in popular web platforms","Loading MathJax Dynamically","The MathJax Community","The tex2jax Preprocessor","The FontWarnings extension","Installing MathJax in WordPress","The MathML input processor","The MathJax.InputJax Class","The MathJax.HTML Object","MathJax Documentation","Loading and Configuring MathJax","The MathJax API","The MathJax.Callback.Queue Class","The MathJax.Message Object","Using Signals","Getting Started","The NativeMML output processor","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The TeX input processor","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax Startup Sequence","MathJax TeX and LaTeX Support","Using Callbacks","The MathJax variable","Converting to MathJax from jsMath","The MathZoom extension","Installing and Testing MathJax","Using MathJax in Movable Type","The MathJax.Hub Object","The MathJax Object-Oriented Programming Model","The Base Jax Class","The MathJax.Callback.Signal Class","MathJax MathML Support","The HTML-CSS output processor","The mml2jax Preprocessor","Glossary","Describing HTML snippets","Using Queues","The MathMenu extension","Modifying Math on the Page","Synchronizing your code with MathJax","The MathJax.ElementJax Class","MathJax Output Formats","The MathJax Processing Model","The MMLorHTML configuration options","CSS Style Objects"],objnames:{"0":"Python method"},filenames:["api/ajax","platforms/index","dynamic","community","options/tex2jax","options/FontWarnings","platforms/wordpress","options/MathML","api/inputjax","api/html","index","configuration","api/index","api/queue","api/message","signals","start","options/NativeMML","options/hub","mathjax","api/outputjax","options/TeX","options/jsMath2jax","api/callback","startup","tex","callbacks","api/variable","jsMath","options/MathZoom","installation","platforms/movable-type","api/hub","api/object","api/jax","api/signal","mathml","options/HTML-CSS","options/mml2jax","glossary","HTML-snippets","queues","options/MathMenu","typeset","synchronize","api/elementjax","output","model","options/MMLorHTML","CSS-styles"]})
-\ No newline at end of file
+Search.setIndex({objects:{"":{Load:[0,0,1],Preloading:[0,0,1],Log:[18,0,1],Subclass:[38,0,1],Delay:[28,0,1],Init:[38,0,1],getAllJax:[37,0,1],Interest:[29,0,1],Translate:[39,0,1],Config:[37,0,1],addElement:[12,0,1],Styles:[0,0,1],ExecuteHook:[29,0,1],loadTimeout:[0,0,1],Resume:[17,0,1],Update:[37,0,1],loadComplete:[0,0,1],loadHook:[0,0,1],formatError:[37,0,1],call:[17,0,1],getJaxByInputType:[37,0,1],PreProcess:[37,0,1],Post:[29,0,1],has:[38,0,1],Signal:[28,0,1],executeHooks:[28,0,1],Set:[18,0,1],Insert:[37,0,1],addText:[12,0,1],TextNode:[12,0,1],Augment:[38,0,1],Clear:[18,0,1],Register:[39,0,1],Remove:[18,0,1],Element:[12,0,1],Queue:[28,0,1],NoInterest:[29,0,1],Suspend:[17,0,1],getJaxByType:[37,0,1],Push:[17,0,1],Typeset:[37,0,1],fileURL:[0,0,1],wait:[17,0,1],reset:[28,0,1],getJaxFor:[37,0,1],loadError:[0,0,1],Process:[37,0,1],Text:[45,0,1],setText:[12,0,1],Reprocess:[37,0,1],Startup:[39,0,1],SourceElement:[45,0,1],can:[38,0,1],File:[18,0,1],MessageHook:[29,0,1],isJax:[37,0,1],filterText:[18,0,1],isa:[38,0,1],Require:[0,0,1]}},terms:{represent:51,reprocess:[37,45,48],mathjax_msie_fram:18,four:[1,14],prefix:[12,20,15],asymp:46,blacktriangledown:46,webfont:[6,42,20],whose:[12,7,48,5,31,37,24],html5:[50,14,15,7],under:[41,35],preprocess:[51,37,30,48],slowest:50,worth:7,digit:15,gimel:46,everi:[19,37,15,7],mskip:46,arcco:46,govern:[20,14,7],dotplu:46,affect:[14,35,15,46,37,45,26],isforefox:37,look:[12,46,41,42,28,2,29,53,4,18,5,20,48,8,35,51,37,26],eqnarrai:46,cmd:22,bigodot:46,ominu:46,math:[30,5,7,11,12,13,14,15,40,18,19,20,39,22,23,27,3,43,33,34,35,10,37,46,41,42,44,47,48,49,50,51],nparallel:46,properti:[12,0,32,38,28,29,17,31,39,45,10,37,24],direct:[42,6,14,41,35],consequ:11,second:[0,14,35,28,31,53,49,5,6,21,22,7,19,10,41,24,1],ngeq:46,even:[0,41,28,31,17,46,3,49,48,40,20,21,7,19,23,51,37,29,1],hide:48,prejax:[51,22],neg:46,weren:14,children:41,"new":[30,4,12,13,14,15,18,19,20,25,23,45,26,28,37,10,7,38,29,35,24,1,47,48,49,51],mhtml:2,told:49,limsup:46,elimin:22,behavior:[14,35,22,7],lessapprox:46,blacktriangleright:46,here:[12,29,32,28,31,1,3,48,19,20,39,22,37,45],met:30,lneqq:46,path:[40,0,7,20],noundefin:[40,20,46],interpret:[46,20,35],nrightarrow:46,netowrk:36,forum:[20,4],mbox:46,rceil:46,circleddash:46,mathstrut:46,unix:35,org:[14,15,2,3,47,48,46,20,33,8,50,36,7],thinmathspac:[20,41],unit:15,highli:23,describ:[12,46,14,35,28,20,44,53,30,48,40,6,21,7,31,50,51,37],would:[5,6,9,11,12,14,40,17,20,21,22,45,25,27,28,31,37,33,34,35,7,38,46,42,43,53,47,48,50,51,52,1],afterward:31,readi:[40,19,39,30,32],ltime:46,varlambda:46,call:[0,2,3,46,6,7,9,14,17,18,19,20,25,22,24,26,27,28,29,31,34,35,10,37,38,39,5,42,43,44,45,1,47,48,49,11,51,52],recommend:[20,51,35,50],diretori:35,preview:[5,43,51,27,22],type:[0,2,3,5,8,10,12,14,40,19,20,39,22,45,37,33,36,7,46,41,24,1,48,49,50,51],until:[0,27,29,1,5,31,39,22,7,19,43,37],notin:46,displaymath:[5,7],relat:[0,15],notic:46,warn:[0,14,22,6],jpg:[5,43,21,27],loss:7,hold:[0,21,22,34,51,37],unpack:[20,35],must:[0,41,42,35,6,44,17,46,30,18,5,20,25,22,34,49,50,7,29,53],fbox:[46,15],join:[19,46],centerdot:46,setup:[23,20,41],work:[12,13,14,35,15,31,46,3,4,48,19,20,41,33,49,23,50,7,38],cc0000:[53,22],tag_nam:35,root:[46,0,30,15,18],overrid:[38,6,10,39,24],mathmenu:[42,53,47,40,11,7,26],give:[29,42,20,53,3,19,6,21,25,26],cirit:7,indic:[0,7,31,17,46,30,19,20,29,39,22,45,10,37,24,51],impair:[23,7],want:[4,5,14,40,16,18,19,20,22,24,28,31,35,36,7,38,46,42,1,48,50,52],setminu:46,end:[0,5,41,2,50,46,30,4,40,8,19,36,1],quot:[5,42,15,22],hom:46,heartsuit:46,how:[0,2,3,4,5,6,8,14,40,17,18,20,21,22,27,28,29,43,37,33,34,35,7,46,42,47,49,11,51],disappear:[5,43,27],answer:[4,48],verifi:[20,35,4],config:[2,30,5,6,7,8,9,10,11,14,40,18,19,20,25,22,24,26,27,3,31,33,34,36,37,39,46,42,43,53,47,48,50,52,1],updat:[37,35,15,2,1,48,14,7,45],showrender:47,recogn:20,lai:[50,51],diagdown:46,after:[0,42,28,31,17,1,3,47,18,19,20,39,22,48,49,35,51,7,29,26],befor:[0,2,30,4,46,7,8,14,17,18,19,20,21,22,25,28,29,31,34,37,38,39,5,41,42,44,1,48,49,50,51],wrong:41,startuphook:[19,37],parallel:[46,1,30,15],averag:51,alignedat:46,attempt:[0,41,47],third:[1,41],leftarrow:46,receiv:[29,14,31,19,20,39,49,7,38],greasekit:3,maintain:[19,31,22,4,49],environ:[5,20,46,25,4],enter:[41,48,46,20,51,7],textnod:12,order:[29,14,35,20,44,17,1,30,7,18,5,6,27,22,31,50,43,37,38,51],oper:[0,5,6,9,11,15,17,18,19,25,23,27,43,34,42,39,29,32,35,31,44,1,47,48,50,52],parentnod:[3,15],softwar:[23,20,51],over:[12,0,42,15,46,47,48,40,20,22,34,51,7],fall:[46,6,1,35,20],becaus:[19,14,42,1,31,46,3,18,5,20,21,7,51,41,29,25,48],boxtim:46,suspend:[19,17,1,29],textrm:46,appar:[50,1],afil:31,flexibl:[21,1,14],vari:50,smallint:46,fit:[19,47],fix:[14,35,15,7],strang:41,better:[15,47,40,20,33,8,50,7],boxminu:46,drawback:50,upharpoonleft:46,persist:4,comprehens:44,easier:[29,14,35,1,46,41,38],moveleft:46,them:[12,0,5,14,35,15,20,17,46,41,40,6,25,1,7,31,19,51,37,29,53],thei:[0,3,4,5,6,7,9,14,15,40,16,17,18,19,20,21,22,25,26,27,29,30,31,34,35,37,39,46,41,42,43,44,53,47,48,49,11,51,52,1],qualiti:[23,50,51],safe:[12,3,48],"break":[46,49,1,41,15],mtext:[46,20,15],wedg:46,widetild:46,choic:[50,37,8],dbinom:46,leftharpoondown:46,timeout:[0,15,28],each:[5,7,28,29,46,30,49,18,40,20,48,19,51,37,1],debug:18,side:[20,18,25,22,8],mean:[5,14,2,29,16,30,46,3,49,48,40,31,27,22,19,23,43,7],leqq:46,createel:3,resum:[17,1],leqalignno:46,mathopen:46,looparrowleft:46,network:[14,35,15,40,20,7],goe:[46,49,1],iint:46,newli:[12,19,38],predefin:22,content:[2,30,5,8,10,12,14,15,20,21,22,3,37,36,7,38,40,41,44,1,48,50,51],reader:[40,23,7,15],forth:32,impract:35,multilin:46,situat:[7,15],free:[45,4],ineffici:[38,22],reconfigur:14,lneq:46,angl:46,moment:[20,10,35],isn:[19,39],iphon:15,temporari:7,isa:38,subtl:48,confus:14,mathbb:46,rang:51,mathbf:46,render:[41,15,30,47,5,20,22,23,50,51,52,33],independ:7,yourcolleg:35,restrict:[46,35],hook:[19,0,28,29],instruct:[20,21,3,2],alreadi:[0,28,48,46,3,4,18,19,31,49,7,38,1],primari:50,tooltop:42,top:[32,35,46,20,50,7],sometim:7,underlin:[46,15],master:49,too:[46,42,15,3,5,20],similarli:[0,37,35],john:31,listen:[19,29,37,28],thickapprox:46,namespac:[20,3,15,28,48],tool:[1,35],tagind:25,compressor:15,somewhat:49,technic:44,past:[29,14,15,19,49,23],filesmatch:35,provid:[12,0,41,28,2,31,17,46,18,19,20,29,21,48,49,23,51,37,38,1],eqalignno:46,tree:[20,21],"final":[14,31,46,20,21,23,51],project:[44,7,4],matter:[19,33],mathtt:46,ldotp:46,modern:[23,6,50,13],mind:[46,20,7,2],manner:50,increment:17,seem:[31,41],rightrightarrow:46,ldot:46,person:31,latter:[19,51,21,7,26],expens:50,simplifi:15,though:[28,46,49,21,22,51],object:[0,30,6,12,13,37,16,17,18,19,21,22,24,26,28,31,34,10,7,38,39,29,32,42,44,45,53,47,48,49,11,51,1],gzip:15,regular:[5,22],letter:[20,35],grave:46,don:[14,15,31,1,3,48,19,6,41,7,50,37],dom:[12,45,1,48,19,49,39,22,37,24],doe:[46,41,35,28,52,45,3,19,31,11,22,7,23,50,10,37,24,51],declar:[41,42,53,47,6,11,34],tfrac:46,unchang:[14,52,48],sum:[46,28],came:35,delaystartupuntil:[37,30,22,7],random:[20,35],lnapprox:46,syntax:[46,38,15],mediawiki:2,isopera:37,outerhtml:15,shownam:31,asynchon:48,involv:[49,7,4],consolid:23,layout:45,firstnam:31,mathchoic:46,ismsi:[37,30],menu:[13,41,42,15,30,47,40,11,22,34,8,35,50,36,45,51],explain:[40,49,14,7,26],configur:[0,3,5,6,7,8,9,10,13,14,15,18,19,20,25,22,23,24,26,27,30,31,33,34,35,36,37,39,40,41,42,43,21,46,11,50,51,52],apach:35,configut:21,theme:[7,2,8],explic:14,rich:23,folder:[20,42,35],compli:20,infti:[46,51],report:[41,22,4],circeq:46,subseteq:46,fadeouttim:6,bar:[46,38,28],patch:[7,35],reload:47,bad:15,replacechild:3,neq:46,respond:[29,22,4],dashrightarrow:46,scriptscriptstyl:46,precneqq:46,result:[14,42,28,31,45,1,48,46,20,41,7,50,10,37,24,51],respons:[29,10,15,28],fail:[0,15,31,39,50,26],themselv:[20,37,30,21,32],best:[0,14,35,1,50,51,7],awar:[46,0,1,41],subarrai:46,varinjlim:46,wikipedia:[44,3],circledcirc:46,gneqq:46,awai:[7,35],approach:[31,51,2,48],attribut:[12,15,53,46,43,21,51,7],never:[35,0,7,3,39],extend:[23,51],synchon:19,extens:[0,30,5,6,14,15,40,19,20,25,22,26,27,3,43,37,33,34,7,39,46,32,44,53,47,48,1],add:[5,14,15,2,17,46,40,6,39,22,45,50,38,53],preprocessor:[5,14,43,46,41,30,32,40,20,27,22,7,51,37,48,26,33],intop:46,cot:46,cow:38,howev:[14,35,31,30,53,3,4,18,46,20,22,48,50,51,7,38,1,26],configuraiton:[36,7,15,8],against:29,seri:[1,21],com:35,varpsi:46,pre:[5,14,35,40,6,41,7],foral:46,can:[0,3,4,5,6,7,12,14,15,40,17,18,19,20,39,22,23,24,26,28,29,30,31,32,33,35,10,37,38,46,41,42,44,53,11,48,49,50,51,1],foobar:38,delic:11,innerhtml:[3,48],height:[46,15,47],wider:4,sqsupset:46,speak:[16,51],chrome:[42,50,37,3,15],three:[41,35,28,31,1,6,21,49,51,39],been:[0,3,4,5,14,17,18,19,20,39,24,28,30,31,33,10,7,29,35,1,48,49,50],trigger:[40,50,7,22,34],interest:[19,29,44,4,49],basic:13,tini:46,quickli:[23,50,7,4],underrightarrow:46,regul:1,xxx:46,ani:[0,3,4,5,6,7,9,11,14,40,17,18,19,20,25,22,45,27,28,29,30,31,34,35,37,38,46,41,42,43,1,47,48,49,50,52],embelish:15,emploi:[44,50],dash:[53,42],tanh:46,servic:[14,35,15,20,36,7],showcontext:47,diamondsuit:46,javascipt:20,dashboard:36,"3px":53,succeq:46,canb:25,have:[0,2,30,4,5,6,14,15,40,19,20,11,22,45,26,28,29,3,31,37,35,7,38,46,41,42,1,48,49,50,51],nexist:46,tabl:41,cong:46,sever:[0,14,35,46,48,40,31,51,24,1],amout:18,disabl:[11,14,42],incorrectli:[20,14,15],perform:[30,4,6,14,15,17,18,19,39,22,45,28,31,37,7,29,32,44,1,48,49,50],suggest:[6,4],make:[0,4,46,6,14,15,16,17,19,20,22,23,27,43,37,42,7,38,5,41,35,53,47,48,49,50,51,1],complex:[50,21],split:46,lrcorner:46,unsafewindow:3,complet:[0,14,35,28,31,44,17,1,30,49,48,40,20,39,22,7,19,50,37,29,45],longmapsto:46,hand:[32,18,25,22,51,41,33],fairli:[21,14],rais:[46,15],mkern:46,ignorepast:29,unlhd:46,squar:[46,21,15],redefin:[6,10,39,24],kept:19,thu:[14,28,1,19,31,45],inherit:[16,38,10,24,45],client:42,thi:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,45,46,47,48,49,50,51,52,53],idotsint:46,programm:38,everyth:[40,46,1,37,7],settimeout:[31,28],left:[41,35,32,30,18,46,49,25,22,8,36,26],processclass:5,identifi:[12,20,46,51,29],just:[46,41,28,2,31,53,40,20,22,8,23,51,7,29,1],yen:46,mathbin:46,coprod:46,yet:[41,17,1,48,19,49,50],languag:[44,49,51],noscript:5,onload:[32,3,30,31,22,7],errorset:[40,22],easi:[35,33],interfer:[40,7],had:[19,20,14,7],myconfig:[19,31],els:[31,3,48],save:[36,7,53,8],hat:46,take:[12,0,14,28,2,31,1,30,4,48,46,6,25,49,7],sanit:18,applic:[23,20,30,2],loadtimeout:0,quirk:50,preserv:31,assit:40,negativethinmathspac:50,background:[46,53,15],sqsubset:46,specif:[0,7,28,2,29,44,17,1,32,5,31,39,22,48,50,51,37,45],deprec:7,arbitrari:46,zoom:[13,41,15,40,22,34,7],leftrightarrow:46,underli:50,www:[35,3,47],right:[11,41,42,44,17,1,3,18,46,25,22,8,35,51,7,26],old:19,famili:[46,0,53],deal:50,autobold:46,begin:[19,35,46,30,48,5,25,50,51,7,1],percentag:[11,42,22],donald:44,successfulli:[0,31],interc:46,dddot:46,bottom:8,subclass:[29,32,24,39,45,10,38],circ:46,tracker:[20,4],overcom:[50,49],condit:[0,30],foo:[38,28],core:[1,30,46,22,51,37,26],plu:[40,29,30],bold:[46,21,25,26],confiogur:20,popular:[20,33,2],colleg:35,repositori:[35,15],post:[29,42,30,4,18,19,49,39],"super":[38,15],llless:46,obj:12,nwarrow:46,slightli:[46,8],surround:[20,11,42],unfortun:[20,35],current_theme_templ:2,joomla:2,span:[27,5,43,21,22,51,33],downharpoonright:46,geramond:46,encod:46,contectu:50,two:[19,1,49,46,40,20,21,22,53,50,7,25,26],down:[36,35,22],shortparallel:46,wrap:38,ntriangleright:46,stackrel:46,git:[20,35,15],suffici:[46,20,25,52,50],checkmark:46,transform:51,ngtr:46,avail:[0,2,5,6,14,19,20,11,22,23,45,27,43,35,7,38,41,42,1,47,48,50,51],width:[41,47,46,20,25,50],reli:[0,14,1,3,48,31,11,50],wordpress:[2,8],editor:8,rightthreetim:46,lnsim:46,form:[41,42,44,18,20,25,22,51,7],offer:[14,15,4],forc:[7,42],epsilon:46,hear:[19,29],downdownarrow:46,"true":[46,14,42,28,29,30,47,5,32,22,7,11,9,37,38],vcenter:46,maxmacro:25,reset:[47,28],absens:2,displayalign:22,intern:[0,41,29,44,17,1,46,22,50,10,37,24,51],tell:[35,3,48,20,50,7],moveright:46,more:[40,6,8,10,14,15,17,20,21,22,23,28,31,37,33,35,36,7,38,39,29,42,44,53,11,48,49,50,51,52,1],nnn:35,featur:[13,41,35,4,48,19,31,34,50,38],rfloor:46,drive:35,exist:[46,20,38,35,28],ddot:46,backsim:46,triangleq:46,check:[0,35,31,18,46,20,29,38],recevi:35,when:[0,30,5,6,7,8,9,11,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,31,32,33,34,35,10,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,1],abovewithdelim:46,role:51,test:[12,13,41,35,49,30,3,48,19,20,50,37,38],tie:[30,28],smallsmil:46,scriptstyl:46,searrow:46,mathel:2,intend:[38,22],consit:46,munderov:51,gvertneqq:46,consid:[0,14,15,46,4,5,20,51,37,45,1],src:[5,14,2,43,46,3,27,48,40,20,21,33,7,8,50,36,37,1],omega:46,outdat:4,longer:[29,14,35,18],bullet:46,anywher:7,tex2jax_ignor:[5,15],ignor:[5,29],time:[0,3,4,46,6,12,37,15,18,19,25,22,28,31,34,7,39,29,35,1,48,50,51],push:[28,44,17,1,30,48,31,37],"5kb":25,mathrm:46,doteq:46,emulateie7:50,skip:[5,35],consum:18,webkit:15,skin:2,displayind:22,millisecond:[0,42,28,47,18,6,34,37],decid:[7,47],depend:[28,30,48,31,8,50,7,52],head:[2,3,48,20,8,50,36,7],newenviron:46,readabl:44,nearrow:46,varpi:46,certainli:35,vee:46,decis:50,text:[2,30,5,6,8,12,14,15,40,18,19,20,21,22,23,45,25,27,3,31,33,36,7,46,42,43,1,11,48,50,51],succnsim:46,sourc:[13,14,42,1,3,47,40,41,19,23,35,51,37,45,11],string:[0,28,29,46,18,5,53,21,22,19,37,45,25],word:[5,51,7],room:25,dim:46,getjaxfor:[19,37,24],administr:[2,8],level:[20,7,35,32],did:31,item:[11,42,47,46,31,21],preprocesor:46,cooki:[12,30,15],div:[12,46,51,33,48],prevent:[46,27,42,15,43,47,5,20,25,22,7],mmlorhtml:[40,50,52,22,26],slower:50,compens:11,sign:[46,14,48,5,20,51,7],cost:[46,20,7,38],pmb:46,rightarrowtail:46,histori:[19,29,30,44],xandi:38,dotsi:46,dotsm:46,appear:[46,32,35,31,47,18,19,20,22,48,8,50,7,45],dotso:46,repli:19,dotsc:46,dotsb:46,current:[0,42,35,2,29,45,8,50,36,7,38],backepsilon:46,ampersand:46,inlinemath:[46,14,48,5,20,7],defici:41,amalg:46,mathsiz:46,gener:[46,7,20,52,30,40,6,33,31,51,37,45],mfrac:[20,51],modif:[1,7],address:[20,35],along:[44,1,18,19,33,10,24],wait:[0,7,35,15,28,29,44,17,1,3,48,19,31,30,39,22,49,37],box:[46,0,15,6],html_head:2,shift:22,bot:46,queue:[29,32,28,49,16,17,1,30,48,31,44,37],overriden:37,digamma:46,varlimsup:46,macintosh:37,semant:38,succsim:46,extra:[19,46,51,15,22],circumv:35,modul:[0,36,32],prefer:[14,42,47,20,50,35,52],iepro7:3,veebar:46,visibl:[5,43,1,27,48],marker:46,myid:53,mobil:[14,15,7],arrowvert:46,memori:[49,45],bigr:46,visit:20,todai:44,subvers:[20,35],stylesheet:[0,32,28,29,17,30,48,49,22,8,50],handler:[0,32,44,3,30,48,49,51,7],current_skin:2,bigl:46,bigm:46,eqcirc:46,checkout:35,bigg:46,inputjax:[32,16,45,30,39,10,38],capit:16,sitaut:48,reduct:50,peopl:20,bigtriangleup:46,enhanc:[51,15],minscaleadjust:42,visual:[40,23,7],accept:[31,28,48],hphantom:46,easiest:[19,20,35,28,31],graphic:35,prepar:[1,7],cap:46,uniqu:53,pmatrix:46,whatev:[46,2,38,1,48,19,24],cal:46,purpos:[31,51,50],getjaxbytyp:37,downharpoonleft:46,subseteqq:46,varprojlim:46,backslash:[46,25,22],topic:[16,13,7],sharp:46,occur:[0,41,28,31,17,1,3,47,18,19,20,39,22,7,49,37,29,48],eqsim:46,nuber:25,pink:46,alwai:[46,31,1,7,28],multipl:[46,1,14],trianglelefteq:46,write:[29,1,48,20,23,50],pure:41,mathsf:46,tild:46,xhtml:[20,41],map:51,book:44,max:46,clone:35,spot:46,usabl:35,mac:[11,37,42,22],udpat:35,mai:[0,2,3,4,46,6,8,14,16,19,20,11,22,24,29,31,37,35,7,38,5,41,42,45,1,48,49,50,51],data:[12,0,32,42,28,38,19,31,39,45,35,10,37,24],grow:2,newlin:[46,15,18],vartheta:46,preceq:46,explicit:[0,7,22,20],uparrow:46,produc:[6,14,19,20,25,22,23,45,26,28,31,33,50,10,7,29,42,24,47,48,11,51],inform:[0,42,2,29,44,18,40,31,11,22,19,51,7],"switch":[51,35,15,33],preced:7,combin:[0,14,15,46,40,20,50,7],block:[11,14,42,15,20,30,3,46,6,39,22,51,7],approx:46,comfort:35,lsh:46,tex2math:33,still:[19,41,28,2,29,44,1,40,22,34,50],pointer:38,ttf:35,dynam:[0,32,13,1,3,48,20,22,49,23,51,7],entiti:[46,41,15],amssymbol:[40,20,46,14,7],conjunct:14,group:[0,41,4],monitor:4,polici:35,ignoreclass:5,platform:[23,13,2,20],window:[32,28,6,3,47,18,31,48,37],"05em":46,bookmarklet:7,main:[46,14,35,1,16,38,53,47,40,20,32,22,7,10,37,24,51],mathexampl:48,non:[12,0,17,46,20,51],within:[0,14,35,15,28,20,16,46,41,30,7,48,5,6,25,33,31,49,51,37,38],myinputjax:39,initi:[0,14,49,46,30,47,32,5,20,39,22,7,19,51,37,45,1],safari:[50,37,3,15],half:31,now:[14,35,15,44,30,20,50,7],discuss:[12,35,7,3,4],nor:[6,21],term:[20,14,7,18],name:[0,30,5,6,7,12,14,15,40,18,19,20,21,22,24,25,26,27,28,29,3,31,35,10,37,38,39,46,41,42,43,45,53,50],opera:[50,52,37,3,15],boxdot:46,drop:35,separ:[11,14,35,53,18,19,20,41,22,7,1,26],messagestyl:[6,22,18],confid:23,compil:31,domain:[20,7,35],replac:[0,14,15,41,3,48,20,25,7,51,37,38,39],individu:[45,15,26,48],continu:[0,46,19,49,7,1],happen:[41,35,17,1,46,49,51],shown:[46,21,22,47,48],accomplish:[20,7,3,35,50],space:[15,48,46,20,22,50,9,51],intermix:30,internet:[0,15,46,3,47,18,40,31,22,50,51,7,26],formula:[48,22,34,23,50,51],correct:[31,14,3],she:50,simeq:46,earlier:[20,1,7],migrat:[13,14],ajax:[0,32,16,1,30,19,31,39,37],mime:[41,45,20,39,10,37,24],underleftarrow:46,brower:46,ord:46,care:[46,20,3,26],ntrianglelefteq:46,couldn:31,x00b1:20,synchron:[0,28,13,44,17,1,3,48,31,30,49,37,29],mscarri:41,thing:[46,20,21,48],place:[0,42,6,46,4,48,19,20,29,25,22,35,7,38,1,33],mathop:46,unwis:50,ture:11,view:[41,42,35,16,3,20,33,23,50,7],think:[46,22,48],frequent:[5,19],first:[19,41,35,1,28,31,46,3,49,48,5,20,29,21,22,8,10,7,24,51],origin:[38,46,35,29,17,3,48,19,20,45,10,24],lfloor:46,oni:35,directli:[35,15,1,3,48,46,31,39,8,51],onc:[0,35,28,29,46,30,48,40,20,39,33,1],arrai:[30,46,6,9,37,15,17,19,21,22,24,25,26,27,28,29,31,33,10,7,39,5,42,43,11,50,51,52],yourself:[35,20,17,3,46,31,22,7],submit:4,open:[13,41,35,47,46,20,8,23,36],ios4:15,size:[11,42,15,53,48,46,25,7],given:[12,0,38,15,2,29,17,46,53,18,19,31,21,1,22,45,28,51,37,24,39],ifmodul:35,evail:1,leftrightharpoon:46,circl:46,white:53,conveni:[20,38,22],hub:[0,30,5,6,7,9,11,14,40,16,18,19,20,25,22,24,26,27,3,31,33,34,37,39,46,32,42,43,45,1,47,48,50,51,52],especi:51,programat:51,copi:[41,35,3,4,20,39,7,23,37],specifi:[30,46,6,9,11,12,14,15,17,19,20,21,22,25,28,29,31,37,34,7,5,42,53,47,49,50,51,52,1],github:35,enclos:[51,53,42,22],quad:46,than:[0,30,5,6,7,8,9,14,15,40,17,19,20,39,22,23,45,26,28,29,35,10,37,38,46,41,42,44,53,48,49,50,51,1],serv:[20,15],wide:[23,51,35],instanc:[12,7,38,1,39,37,45],underbrac:46,were:[19,14,45,48],posit:[17,42,15],stub:39,browser:[30,5,6,12,13,14,15,40,20,11,22,23,45,26,3,37,41,33,35,7,46,32,42,44,47,49,50,51,52],preccurlyeq:46,sai:[17,3,28],lnot:46,doublecup:46,nleftrightarrow:46,argument:[29,28,1,31,38,26],hskip:46,doctyp:[20,41,50],engin:[23,13],techniqu:[14,3],npreceq:46,note:[0,3,46,6,8,37,20,21,22,45,25,29,31,35,7,39,5,42,53,47,48,50,51,52,1],x2260:20,jsmath:[13,51,33],noth:[20,28,31],channel:[19,44],updownarrow:46,surd:[46,15],sure:[46,14,35,15,29,1,4,48,5,20,50,7],windowset:47,normal:[5,28,46,3,40,20,22,51,53],buffer:25,compress:[7,15],beta:[46,50,7],pair:[12,0,28,53,5,21,19,10,37,24,25,26],fileurl:0,beth:46,hotfix:7,latex:[13,44,46,5,20,22,23,51,7],renam:14,textarea:5,later:[29,41,42,28,17,1,46,31,7,37],sale:11,typeset:[0,30,5,15,18,19,11,22,23,45,27,3,43,34,37,32,42,31,44,1,47,48,49,51],badg:4,sigma:46,mathfrak:46,showmathmenu:42,show:[46,35,20,4,48,40,6,21,22,31,36,47,26],autoreset:28,approxeq:46,unprocess:[37,45,48],concurr:30,permiss:[20,35],hack:50,corner:[32,22,18],xml:[23,44],insruct:2,onli:[0,2,3,4,5,6,14,15,40,20,21,22,23,45,29,31,37,35,10,7,46,41,42,44,53,48,50],explicitli:[46,14,15,31,5,20,22,7,38],activ:[41,35,28,44,4,48,49,50,51],written:[20,8],inlinedelimit:46,otim:46,black:46,offici:7,geq:46,mypic:[5,43,21,27],nearli:[40,46,7,26],variou:[0,42,2,29,16,53,18,19,6,11,10,7,51,26],get:[12,13,41,42,15,28,31,30,1,3,18,46,20,29,11,22,48,35,50,7,38],cannot:46,ncong:46,downarrow:46,nsim:46,requir:[0,14,28,46,3,40,31,39,7,19,23,51,37,24,1],prime:46,lceil:46,mathpunct:46,consist:[46,50,1,21,41],intermitt:[32,18],shortmid:46,retypeset:48,where:[0,30,4,46,6,12,14,18,19,20,25,45,28,31,37,35,10,7,40,32,42,24,53,48,49,51],wiki:[20,51,7,3,2],often:[46,20,53,51],lozeng:46,obejct:17,ismac:[37,30],concern:[51,37],infinit:25,detect:[15,28],parent:[12,38],enumer:46,label:[46,47,26],enough:[1,21],between:[46,7,15,28,31,1,47,19,20,50,51,37,45],maltes:46,"import":[0,35,15,16,1,40,49,19,7],across:[44,50],longleftrightarrow:46,vdot:46,screen:[0,15,48,1,18,40,23,7,24],negmedspac:46,come:[14,35,1,3,40,31,41,50,51,7],leftleftarrow:46,manu:47,timout:0,pertain:20,audienc:50,inconsist:14,overbrac:46,improv:[14,15,4,22,50,7],among:7,color:[46,53,21,15,22],operatornam:46,period:[0,32,35],colon:[46,53],autmat:7,cancel:28,"70kb":7,bigcirc:46,msrow:41,damag:20,needlessli:31,skew:46,altern:[46,0,51,38,31],mark:[0,41,46,5,20,33,51,53],addit:[0,14,15,28,20,17,46,7,48,40,6,41,1,22,31,19,10,37,24,53,45],succapprox:46,fade:6,arcsin:46,resolut:23,processenviron:5,supprot:15,breve:46,texfont:6,blacktriangl:46,those:[46,6,37,17,19,20,21,22,23,45,28,29,31,10,7,39,40,41,35,24,53,48,51,1],"case":[46,14,42,28,31,38,53,3,48,19,20,21,22,45,35,51,7,24,1,26],kappa:46,oldstyl:46,addtext:12,invok:50,invoc:7,margin:25,opera10:42,advantag:[50,1,14,7,2],barwedg:46,leadsto:46,henc:35,worri:[19,51],destin:37,updatemath:48,bigwedg:46,develop:[44,41,35,7,4],author:[14,18,39,22,34,23,51],media:[53,7,35],postjax:[51,22],same:[5,14,35,15,29,46,8,27,40,20,25,19,49,43,7,24,1],html:[2,30,5,6,7,9,11,12,13,14,15,40,16,19,20,21,22,24,26,27,3,43,32,33,35,36,37,46,41,42,44,53,47,48,49,50,51,52],pad:[12,53],knuth:44,mathvari:51,document:[0,3,46,13,14,16,20,22,23,24,27,43,37,33,7,5,41,35,44,48,50,51],finish:[44,49,1,3,48],vvdash:46,nest:[41,15,32],assist:7,longleftarrow:46,capabl:[16,23,50],formaterror:37,mani:[46,7,15,49,53,5,31,37,1],extern:[0,32,31,1,19,49,37],submenu:[22,47,8],appropri:[46,19,39,33,10,51],macro:[15,46,20,25,22,7,26],markup:[46,0,51,41,44],leftharpoonup:46,overwithdelim:46,without:[0,14,42,46,19,31,41,11,51,7],model:[13,32,35,16,30,46,50,51,38],altertn:50,bigotim:46,stixfont:6,mml2jax:[41,43,40,20,22,51,26],loaderror:0,rest:[0,41,1,48,20,23,51],flavor:[40,7],speed:[50,51,14,15,7],versu:1,mathzoom:[40,53,34,26],nleqq:46,except:[40,20,49],littl:[0,29],blog:[20,51,7,2],treatment:46,yuicompressor:15,earli:[7,15],hover:[47,22,34],around:[46,7],read:[14,35,15,21,19,20,41,7],outermost:21,boldsymbol:46,messsag:18,getjaxbyinputtyp:37,moo:38,world:[23,31,7],lasterror:37,mod:46,sum_:51,blackberri:15,cdot:46,integ:37,server:[14,42,15,3,40,20,35,7],either:[0,14,35,2,29,16,53,3,19,20,21,7,34,50,37,52,25],output:[3,46,9,11,13,14,15,19,20,39,22,24,26,37,41,33,7,38,40,32,42,44,45,53,47,48,50,51,52],rollov:15,manag:[12,32,35,2,31,44,30,18,20,50,51,45],lesssim:46,node:12,respect:[11,42,28],constitut:16,pod:46,slice:28,easili:[23,51],definit:[0,42,15,53,47,40,25,34,23,11],shoveright:46,inputid:45,dashleftarrow:46,mathcal:46,variuou:19,complic:[50,21,41,52],refer:[13,35,20,45,3,48,19,6,29,39,31,49,37,38],power:[1,4],inspect:37,broken:51,thinspac:46,found:[0,20,4,31,22,10],regexp:5,"throw":[24,10,39,3],trianglerighteq:46,acc:7,comparison:[1,37],underwai:1,ddddot:46,act:[46,44,1,19,31,25,22,51],industri:44,processor:[46,41,42,1,44,53,30,47,40,20,25,50,9,7,52,51,26,11],hookrightarrow:46,nobreakspac:46,routin:[12,0,49,31,39,10,37,24],effici:[38,48],elementari:41,lessdot:46,triangledown:46,compos:41,rightharpoondown:46,mathbackground:46,your:[0,2,3,4,5,6,7,8,9,11,13,14,15,40,20,25,22,23,27,31,33,34,35,36,37,46,41,42,43,44,21,1,47,48,49,50,52],compon:[0,30,46,14,40,16,19,20,23,24,26,37,41,10,7,38,29,32,53,47,49,51],log:[46,20,35,18],area:[25,18],fontwarn:[6,22,26],lor:46,strict:[50,35],compliant:[14,15],interfac:[35,2,20,8,23,36],lot:[19,25,35],lambda:46,programmat:33,buggi:46,categor:26,faster:[50,7,15],pull:35,mathml:[13,41,15,44,45,46,3,51,40,20,11,10,52,8,23,50,9,7,24,36,26],furthermor:[1,14,22,7],possibl:[0,41,35,15,28,31,53,18,40,6,22,50,51,7,38,1],"default":[0,30,5,6,7,9,11,14,40,18,20,25,22,24,26,27,28,43,33,34,35,10,37,39,46,42,47,50,51,52],processescap:[5,46,14,7],buildrel:46,sepecifi:35,notag:46,embed:41,connect:[40,31,51,7],taylor:20,creat:[0,30,4,12,18,19,39,45,28,31,10,38,29,32,35,44,24,1,47,49,51,53],certain:[19,29,49],leftrightsquigarrow:46,risingdotseq:46,varliminf:46,file:[0,2,3,46,6,7,8,10,14,15,17,18,19,20,21,22,24,26,28,29,30,31,33,36,37,39,40,35,44,45,53,49,50,51,52,1],outputjax:[32,16,45,30,39,24],fill:[50,52],again:[46,0,37,45,48],iiiint:46,googl:4,pmod:46,event:[0,15,44,3,48,19,49,22,51],wai:[19,14,35,28,2,31,1,3,18,5,20,51,27,22,48,50,43,7,29,39],you:[1,2,3,4,5,6,7,8,9,11,14,15,16,17,18,19,20,25,22,23,24,26,27,28,30,31,33,35,36,37,38,39,40,41,42,43,21,46,47,48,49,50,51,52,53],trash:45,wthin:7,sequenc:[13,7,35,17,46,30,19,49,37],symbol:[46,20],dashv:46,track:[51,4],menuset:[40,22,34],reduc:[46,7],mathcolor:46,lbrace:46,directori:[0,42,15,49,44,45,30,18,40,20,39,22,19,35,10,7,24],descript:[27,43,3,5,6,32,22],lbrack:46,hello:31,calle:38,potenti:1,escap:25,dst:37,negthickspac:46,lvertneqq:46,all:[0,2,30,5,6,7,13,14,15,40,18,19,20,39,22,23,26,27,28,29,3,31,32,37,38,46,41,35,43,44,1,49,50,51],consider:7,illustr:48,dollar:[46,14,48,5,20,7],abil:[50,51,14,35,15],follow:[5,14,42,15,28,31,16,46,30,53,48,40,20,21,19,35,51,7,38,39,26],alt:[3,22],disk:[40,20,7,35],multlinewidth:25,scr:46,articl:44,init:38,program:[32,2,49,16,45,1,30,20,23,51,38],smile:46,cgi:0,introduc:7,liter:5,multlin:[46,25],vert:46,far:[0,29,35,18],varrho:46,prooblem:46,"1px":[12,46,53],verb:46,mechan:[29,28,17,1,30,19,49,38],difficult:[31,41,49],loadcomplet:[0,37,39],veri:8,preferredfont:42,fourth:1,list:[2,30,46,6,8,9,36,37,19,25,22,45,27,28,43,34,35,10,7,5,42,24,1,47,48,11,51,52],"_html":50,emul:50,adjust:[42,3,48,11,8,36,7],plain:46,small:[42,15,18,46,25,51],preceed:[5,22],dimens:15,getalljax:[37,48],lll:46,tex:[2,3,5,6,7,8,9,10,13,14,15,40,19,20,25,22,23,26,27,32,33,35,36,37,39,46,41,42,44,1,48,50,51],zero:17,design:[41,3,4,40,23,36],pass:[0,14,15,28,29,17,1,30,47,19,31,51,37,38,26],overlin:46,further:[17,51,39,1],what:[0,4,46,6,13,37,15,20,11,22,23,27,28,43,34,35,7,5,41,42,47,48,50,51],sub:32,section:[3,5,6,9,11,14,15,40,25,22,26,27,31,37,33,34,36,7,46,41,42,43,47,50,52],advanc:[16,13,23,7],abl:[14,42,28,2,20,3,48,19,6,22,8,23,35,36,7],delet:42,version:[13,14,35,15,48,30,3,4,32,40,20,39,7,34,45,10,37,24],sup:46,method:[12,0,14,38,28,29,17,1,3,49,18,19,31,39,7,45,10,37,24,48],hasn:[0,10,24,18],full:[0,5,15,16,3,48,40,31,22,23,7],exectu:28,geqslant:46,modular:[23,41],ggg:46,standard:[19,35,44,46,40,20,23,50,51,7,53],modifi:[13,14,2,48,46,18,40,20,39,7,19,37,24],valu:[0,30,46,6,9,12,15,17,19,21,22,25,26,27,28,31,34,37,38,5,41,42,43,53,47,48,11,51,52,1],search:[23,13,37,4],sender:19,prior:[46,22],amount:[6,25,28],action:[0,7,28,29,32,17,46,3,18,19,31,30,39,44,34,49,51,37,48,1],mathjax_wikipedia:3,mml_htmlormml:[14,2,3,40,20,8,50,36,7],magnitud:50,llap:46,via:[0,2,30,40,6,14,15,18,19,20,39,45,26,28,3,34,35,7,38,41,42,1,51],shorthand:48,filenam:[31,14,3,7],href:[21,15],inappropri:19,emptyset:46,simbl:3,decrement:17,establish:40,select:[41,35,47,40,11,50,37],proceed:[1,21],x41:46,distinct:16,ctrl:22,regist:[0,7,29,44,30,19,49,39,10,37,24,51],rightsquigarrow:46,asn:51,taken:[19,46,1,48,50],imath:46,ispc:[37,30],vec:46,flat:46,diamond:46,desir:[40,38,3,35],mlongdiv:41,ital:[0,22],flag:22,aleph:46,particular:[12,0,7,35,28,31,44,17,53,46,20,29,49,50,51,37,38],known:1,upsilon:46,mathml3:41,cach:[19,7],showmathmenumsi:[40,11,15],none:[29,27,42,28,43,5,31,22,51,7],outlin:15,det:46,dev:4,widehat:46,remain:[40,44],paragraph:[46,6,51,48,20],caveat:[20,35],def:[46,25,38],deg:46,scan:37,myspan:21,challeng:40,registr:39,share:[20,7,35,4],templat:[36,7,2,8],succneqq:46,minimum:[37,42,15],explor:[0,15,46,3,47,18,40,31,22,50,51,7,26],phrase:[46,20],mathinput:48,huge:46,cours:[1,14,41,7],goal:23,awkward:38,secur:[35,3],rather:[0,30,46,6,9,14,15,17,19,20,39,22,23,45,26,28,7,38,5,41,35,53,48,49,50,51,1],anoth:[29,35,17,1,18,19,49,10,48,51,26],showmathmath:11,csc:46,snippet:[12,13,27,43,4,5,6,21,22,37],ddagger:46,stix:[42,15,44,46,6,35,51,7],simpl:[50,21,22,18],css:[0,3,46,6,9,13,14,15,20,11,22,24,26,37,41,33,34,35,7,40,32,42,44,45,53,47,48,50,51,52],unabl:6,resourc:15,referenc:6,mtabl:40,variant:44,reflect:[30,48],vdash:46,mstack:41,impliedbi:46,associ:[11,42,28,45,31,39,35,10,37,24,51],welcom:4,mytim:31,lhd:46,footer:7,onto:[44,20,1,37,48],ambigu:16,caus:[0,41,35,1,31,45,46,47,18,5,20,32,25,22,7,19,51,37,29,39,48],callback:[0,32,28,29,16,17,1,30,48,19,31,39,44,49,37,45],firefox3:42,merror:53,unrhd:46,help:[13,14,35,4,20,47,50,7],soon:[7,3,22,48],trade:[50,7],through:[46,14,35,15,29,1,47,19,49,41,50,51,7,38,26],hierarchi:[7,35],paramet:[0,30,46,12,14,15,17,18,20,25,22,24,26,27,28,29,31,37,10,7,38,39,40,43,45,48],style:[12,0,42,15,13,44,46,30,47,18,5,6,21,22,34,11,51,37,45,53],arial:46,border:[12,46,53],x221a:41,processupdatetim:37,x221e:51,late:[44,3],isreadi:[32,30],pend:17,amsmathaddit:1,mathplay:[50,3,15,47,22],might:[0,14,35,31,1,4,19,20,25,7,51,41],alter:[5,48],good:[1,3,4],"return":[12,0,41,38,28,29,17,1,49,18,19,31,39,48,45,10,37,24],textstyl:46,hslash:46,getelementbyid:48,rlap:46,funciton:39,mathscr:46,unlik:[23,7,39],bigcup:46,ntriangleleft:46,iff:46,x2212:[20,51],fulli:[20,1,41],unicod:[46,6,41],x2211:51,forefox:3,subsystem:30,originaltext:45,weight:[21,38],hard:[35,15,4,40,20,7],realli:[31,22],nless:46,expect:[46,50,1,7,22],beyond:4,orient:[16,38,32,30],"try":[35,4,19,20,39,38],shortcom:49,skiptag:5,asynchorn:[1,48],print:[23,53,35],occurr:49,msie:[11,37,52],foreground:53,availablefont:[6,7,42],safari3:42,ast:46,offsetx:42,symbian:15,mml:[32,52,40,20,10,45,51],reason:[0,41,31,1,3,47,18,46,20,25,50,37,39],base:[14,42,35,2,49,16,30,3,32,6,39,45,23,50,7,38],typeet:48,sbe:30,put:[0,14,35,49,46,20,7,26],mathr:46,offseti:42,basi:[50,7,52],succnapprox:46,bring:51,drupal:2,msbm10:20,showprocessingmessag:[22,26],perhap:[31,7],bumpeq:46,elementjax:[32,16,30,39,10,45],stixgener:46,getelementsbytagnam:3,assign:[5,31],major:[23,50,7,3],dont:51,boxplu:46,feel:4,exchang:44,lastnam:31,number:[0,2,40,6,14,15,18,20,21,22,45,25,28,31,37,10,7,39,32,35,24,1,50],fadeoutstep:6,done:[17,51,7,30,1],least:[50,51,37,7],blank:[29,28,48],stabl:[7,35],miss:[46,28],differ:[46,7,35,28,31,1,48,19,20,49,50,51,37,38],script:[0,2,30,5,8,10,12,14,15,40,19,20,39,22,24,3,37,33,36,7,46,35,45,1,48,50,51],interact:[23,20,51,7,45],smoother:6,construct:[51,1],statement:[1,28],illeg:[21,15,7],store:[12,29,14,42,15,28,45,1,48,31,32,33,7,10,37,24,51],option:[5,6,8,9,13,14,40,20,21,22,25,26,27,43,37,33,34,7,38,39,46,42,47,11,51,52],nleftarrow:46,triangleleft:46,ntrianglerighteq:46,selector:[53,22,18],tex2jax_process:5,part:[5,41,35,28,49,46,8,3,40,20,25,19,23,50,51,7,38,1],pars:[46,15],binom:46,cosh:46,kind:51,aaa:25,prebuilt:20,whenev:[29,41,35],remot:35,remov:[29,7,15,48,45,18,5,22,51,37,24],dtd:20,bridg:45,arrang:28,ffff88:53,comput:[35,37,42],nleqslant:46,img:[27,53,3,5,43,21],packag:[44,7,35,33],expir:12,"null":[12,0,27,42,15,28,29,38,3,18,5,6,32,39,22,48,43,10,37,24,45],built:[13,14,3,50],equival:[12,28,1,48,40,31,21],lim:46,self:[20,41,15],ell:46,also:[3,4,5,12,14,40,16,18,19,20,11,22,45,28,31,35,7,38,46,41,42,44,47,48,49,51],brack:46,build:20,brace:46,distribut:[20,36,14,35,7],appendchild:[12,3],addel:12,reach:7,react:29,most:[19,32,35,15,2,44,30,53,3,40,20,39,28,50,7,38],plan:20,rho:46,alpha:46,rhd:46,vardelta:46,componet:7,clear:[29,42,28,30,18,19],tpl:2,exp:46,latest:[14,35,2,3,48,46,20,33,8,50,36,7],leftroot:46,cdata:15,nshortparallel:46,carefulli:[21,48],cdn:[14,35,15,2,3,48,46,20,33,8,50,36,7],finv:46,particularli:[40,50,35],rightleftarrow:46,font:[0,46,6,13,14,15,18,20,21,22,23,25,35,7,11,42,44,53,47,48,49,51],find:[7,4,48,6,33,8,50,51,37],preremoveclass:22,execut:[0,28,17,1,30,19,31,51,7],pretti:35,solut:[20,51,35,4],delayedx:28,"public":35,queu:[17,1,7,28,29],factor:[11,42,15,22],noerror:[40,20,46],tagsid:[25,26],precnsim:46,express:[19,29,1,5,25,22],strut:46,nativ:[41,16,3,40,23,50,51,52],mainten:14,greasemonkei:[7,3],konqueror:[50,37],restart:[5,17,1,7,35],ie9:[50,35,15],ie8:[50,15],ie7:50,acut:46,vmatrix:46,common:[13,14,2,20,44,46,41,40,6,21,7,37,39],set:[0,30,5,6,7,9,12,14,15,40,18,19,20,21,22,45,25,26,27,28,29,3,31,33,34,35,37,38,46,32,42,43,44,53,47,48,49,11,51,52,1],overrightarrow:46,startup:[13,7,15,48,30,1,3,32,19,39,22,37],see:[0,30,4,5,6,7,8,10,14,15,40,17,19,20,11,22,26,27,28,29,31,33,34,35,36,37,46,41,42,43,44,53,47,48,49,50,51,1],sec:46,arg:46,ams_hml:7,disadvantag:50,langl:46,someth:[46,35,4,48,5,20,22],particip:4,won:[1,7,35,15],subscript:[46,15],experi:22,attibut:53,numer:[37,41],complement:46,javascript:[0,2,3,46,6,8,11,13,14,16,19,20,21,22,23,45,25,26,28,31,34,36,7,38,40,32,42,44,53,47,48,49,50,51,1],isol:15,mailbox:[19,44],bmatrix:46,consumpt:15,distinguish:10,longrightarrow:46,errat:7,classnam:3,popul:30,varsigma:46,last:[0,35,28,17,53,46,37,26],delimit:[46,14,15,5,20,51,7],hyperlink:51,nvdash:46,context:[5,47,22,28],collect:[31,53,45,1,28],overset:46,hbar:46,whole:[27,49,48,5,43,37],becam:44,load:[0,2,3,46,7,10,13,14,15,17,18,19,20,39,22,23,24,28,29,30,31,33,36,37,40,32,35,44,1,48,49,50,51],markdown:51,simpli:[5,14,35,28,43,17,46,48,40,31,27,22,7,23,37,39,33],point:[46,17,7,20],instanti:38,schedul:31,usemathmlspac:9,header:[7,35,2,8],suppli:[37,45,28],simplu:39,mistak:21,zeta:46,laod:[7,39],gneq:46,devic:[14,15,7],due:14,empti:[32,42,28,1,30,22,51],otherwis:[0,7,28,46,18,40,20,32,8,50,37,38],dur:37,strategi:50,invis:35,fire:[30,7,3,31],imag:[14,42,15,43,3,27,5,6,21,23,35,7],coordin:[17,51,1],understand:[40,51],demand:40,urcorn:46,convers:46,blacksquar:46,bbfont:46,solid:[12,46,53],pitchfork:46,lvert:46,"while":[12,0,14,35,20,52,46,3,19,6,41,22,49,50,51,7,29,1],blacktriangleleft:46,nprec:46,abov:[12,46,42,15,28,20,1,3,48,5,6,22,31,35,50,7,38],circlearrowright:46,bowti:46,everyon:19,loop:[25,45],pack:15,subsect:39,measuredangl:46,vartriangl:46,eqslantless:46,biguplu:46,itself:[46,14,35,1,28,29,17,53,30,32,19,41,22,7,45,51,37,38,39,26],overleftarrow:46,limit:[12,0,41,46,25,7],rightarrow:46,xleftarrow:46,shorten:18,shorter:15,redisplai:18,conflict:[51,15],upuparrow:46,optim:[50,15],domin:44,alert:[19,31,1,28],jsmath2jax:[27,15,26,33],hander:22,pulicis:29,user:[3,4,46,6,13,18,19,20,11,22,23,28,33,34,35,7,40,41,42,47,48,50,51],robust:[19,44],stack:25,recent:[23,3],lower:[32,15,30,18,46,22],task:46,older:7,entri:[44,17,53,15],searchabl:23,ngeqq:46,textit:46,curvearrowleft:46,normals:46,scriptsiz:46,fallingdotseq:46,explan:20,rvert:46,obscur:[15,18],press:22,amp:[46,15],regardless:48,cup:46,blacklozeng:46,ffeeee:46,notifi:19,input:[3,46,8,9,36,14,15,19,20,39,22,24,25,26,37,32,33,10,7,38,40,41,44,45,1,48,50,51],subsequ:[46,39],sin:46,oslash:46,trueli:48,march:13,format:[13,14,42,44,45,46,11,40,20,21,22,23,50,10,41,24,51],big:[46,35,26],moodl:2,tomathml:[40,45],game:46,insert:[27,28,3,5,43,39,22,8,36,37,24,51],bit:[11,38],diagup:46,semi:53,varkappa:46,signal:[29,7,28,49,16,30,32,19,31,39,44,37],altough:31,resolv:15,"0em":22,api:[16,13,23,20],mathrel:46,swarrow:46,scrip:14,gtrless:46,lastest:4,creation:[10,30],some:[2,3,46,6,14,16,17,19,20,39,22,23,24,26,28,31,37,35,10,7,38,40,41,42,45,1,11,48,50,51,52],back:[6,35,45],emph:46,global:[16,50,32,28,48],urgent:7,sampl:[35,49,53,30,48,19,20,22,50],instal:[13,14,42,15,20,35,46,6,8,23,50,7],scale:[23,11,42,15,22],flux:1,delimt:5,substitut:25,mathemat:[0,3,5,6,8,10,11,7,15,40,19,20,25,22,23,24,27,43,33,34,35,36,37,39,46,41,42,44,45,1,47,48,50,51],larg:[46,0,14,7],temprorari:7,prod:46,reproduc:48,sqsubseteq:46,tex2jax:[5,14,15,48,46,3,32,40,20,41,22,51,7,26],machin:[44,35],garamond:46,previou:[31,1,29,28,18],run:[0,3,5,6,9,37,17,19,20,25,27,28,30,43,35,7,29,41,42,31,1,11,48,49,50,51,52],doteqdot:46,odot:46,step:[6,51,30,2,20],hookleftarrow:46,impor:35,impos:35,ngeqslant:46,reappear:18,materi:[15,48],dialog:15,rangl:46,succcurlyeq:46,gamma:46,file3:1,file2:[0,1],file1:[0,1],file4:1,bmod:46,msam10:20,prec:46,notat:[44,46,20,23,51,7],isjax:37,chang:[11,14,42,15,2,48,3,47,18,20,25,7,35,51,37,45],announc:49,triangl:46,question:[20,39,4],fast:[14,15,7],custom:[46,15,18,40,20,23,50],adjac:15,perp:46,includ:[0,2,30,5,6,7,9,11,14,15,40,16,19,20,21,22,23,25,26,27,28,3,31,32,33,34,35,10,37,39,46,41,42,43,53,47,48,50,51,52,1],suit:[6,14,41,7,20],nativemml:[41,52,47,40,11,50,51,24,26],overleftrightarrow:46,ulcorn:46,properli:[12,0,14,35,15,20,45,1,3,48,6,41,31,37,38],poster:29,atop:46,loadhook:[0,37,31],serif:[46,0,53],link:[14,35,15,2,20,16,6,49,7],translat:[51,10,39,24,15],delta:46,line:[46,14,35,15,2,30,3,5,20,27,7,50,51,41,26],enspac:46,rmoustach:46,qquad:46,divideontim:46,geqq:46,similar:[49,35,28],enlarg:34,constant:[19,25],doesn:[19,42,28,45,46,3,40,22,35,7,38],repres:[12,27,20,53,18,5,6,21,22,23,43,24,51],mathdiv:[12,31,1,48],tbinom:46,home:0,constortium:23,phantom:46,iiint:46,titl:[20,48],sequenti:[49,1,30],invalid:[46,21],llcorner:46,toaudibl:45,bracket:[21,22],shoveleft:46,xrightarrow:46,department:35,supseteq:46,nice:3,delayclear:42,msup:[20,51],alttext:43,eval:28,newcommand:46,svn:[20,35],rightharpoonup:46,land:46,mimetyp:[45,10,39,24],svg:[51,15],supseteqq:46,depth:46,dot:46,leak:45,scroll:36,prototyp:38,code:[0,3,4,5,8,12,13,37,40,17,19,20,21,22,27,28,29,30,31,7,46,32,43,44,53,48,49,11,1],partial:46,queri:51,tiddlywiki:2,edu:35,privat:[49,39,35],elsewher:48,send:[19,29,7],exectur:29,sens:51,sent:[19,29,37,44],actiontyp:42,unzip:35,gnsim:46,xxxxxxxx:[20,35],mous:[51,47,42,15,34],tri:[46,0,42],ischrom:37,mathit:46,button:35,geograph:7,fewer:40,nleq:46,userscript:3,maction:[42,15],pleas:[21,4],impli:[46,41],smaller:[40,0],fortun:19,arctan:46,natur:[23,20,46,35,51],varupsilon:46,download:[0,14,35,15,6,20,22,51,7],fullnam:31,hspace:46,click:[42,47,40,11,22,34,8,35,51,7],append:12,compat:[44,50,7,15,22],index:[20,35,2],access:[46,35,15,2,31,45,1,47,40,20,29,23,7,38],mathjax:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53],backprim:46,vargamma:46,closur:[31,28,48],leq:46,let:[14,35,41,3,47,20,21,50,37,52],sinh:46,becom:[14,35,28,1,4,19,41,38],sinc:[0,46,14,15,40,17,19,20,25,22,28,37,7,38,29,41,53,11,48,49,50,51,1],tex4ht:51,rtime:46,convert:[13,41,28,46,3,18,5,33,23,51,24],sqcap:46,larger:[40,20,51,7],technolog:[40,23,7,4],zscale:22,circledast:46,typic:[5,46,10,7,35],honor:35,chanc:[5,19,29,20],firefox:[35,15,3,50,37,52],rgroup:46,appli:[46,7,38],iskonqueror:37,lessgtr:46,"boolean":37,smallmatrix:46,cloud:[14,7],from:[0,2,30,46,7,10,13,14,15,18,19,20,25,22,24,27,29,3,31,33,35,36,37,38,39,5,32,42,43,45,1,47,48,50,51],zip:[20,35,15],commun:[19,13,4,20],chi:46,doubl:[40,7,25,22,34],upgrad:[6,35,4,13],varphi:46,next:[46,49,45,48],implic:35,few:[46,20,35,33],msqrt:[20,51],simpler:18,newmath:48,assocait:48,doublebarwedg:46,projlim:46,"4ac":20,actual:[12,0,41,28,17,46,48,19,31,22,7,10,37,24,1],versionatleast:37,account:12,alik:3,retriev:12,augment:[38,10,39,24],aperson:31,thin:25,control:[5,27,42,35,20,46,7,47,40,6,25,22,34,43,50,9,37,52,53,11],tau:46,tar:35,process:[0,3,5,7,12,13,14,15,40,17,18,19,20,25,22,24,26,27,30,31,33,10,37,39,46,41,43,45,1,48,50,51,52],dfrac:46,preformat:15,high:[23,50,51],tag:[2,30,46,8,14,15,19,20,21,22,24,25,26,3,43,37,33,10,7,5,41,35,45,48,51],tan:46,prece:31,delai:[0,7,42,28,29,47,18,40,22,34,19,37],fontwarns:53,gcd:46,getelementsbytagnamen:3,subdirectori:[35,10,24,45],instead:[46,14,35,15,31,17,1,48,19,20,51,7],class4:38,class2:38,smallfrown:46,sim:46,class1:38,simplesup:38,frac:46,overridden:[42,24,18,39,45,10,38],mspace:[46,20,41,15],anothermethod:38,frak:46,filtertext:18,redund:[38,22],essenti:[40,46,51,7,38],light:[46,38],correspond:[37,42,33,7],element:[30,5,6,12,37,15,40,19,20,21,24,27,29,43,32,10,7,38,46,41,42,45,53,48,49,51,1],issu:[0,41,4,18,22,51,7],unaccept:50,allow:[2,3,46,14,15,18,19,20,21,22,23,25,31,34,35,7,38,29,41,42,44,53,47,11,1],fallback:[35,42],mjx:12,fastest:50,nonumb:46,move:[35,14,42],nsucc:46,comma:[53,3,46,22,7,26],dagger:46,mathjax_tooltip:42,movabl:[36,2],chosen:50,coth:46,varxi:46,therefor:46,pixel:42,multimap:46,crash:22,greater:46,handl:[0,14,15,49,44,46,3,32,19,6,41,7,11,1,37,52,39],supsetneq:46,nokia:15,innermost:21,dai:12,automat:[46,17,1,18,5,20,39,50,51,38],front:[40,15],successor:33,gggtr:46,sourceel:[19,45,24,48],anyth:[19,26,4],edit:[7,2,8],class3:38,mode:[46,42,15,5,20,33,35,50,51],varomega:46,"2em":46,genfrac:46,subset:46,delaypost:42,nointerest:29,meta:50,"static":38,our:[14,35,15,4,20,36],meth:39,ie6:42,special:[46,41,31,53,5,20,22,7,49,23,50,51,37],out:[0,35,1,42,19,6,11,50,51],variabl:[32,28,16,3,30,48,46,31,38],lesseqqgtr:46,reflow:15,categori:1,rel:[0,11,42,15],moveabl:[36,2],merg:[12,37],ref:37,red:[46,20,21],negthinspac:46,nsucceq:46,insid:[15,2],workflow:41,manipul:48,eqslantgtr:46,releas:[20,7,3,35],bleed:15,indent:[25,22],could:[0,14,31,16,46,4,48,19,20,41,7,51,37,45,1],ask:[4,48,20,25,51,7],succ:46,keep:[14,35,2,44,48,46,20,50,51,7],gtreqqless:46,length:[3,28],outsid:[5,50],uproot:46,unexpectedli:[46,20],rbrace:46,blogger:2,rbrack:46,precapprox:46,spadesuit:46,date:[20,14,35,15,7],uplu:46,clubsuit:46,bigsqcup:46,suffic:20,"long":[46,20,1,15,47],start:[0,14,35,1,28,13,46,30,49,51,19,20,21,22,8,36,7,29,39],unknown:41,system:[35,2,20,4,46,6,23,50],messag:[0,14,35,44,20,16,46,30,49,18,40,6,32,39,22,19,37,29],attach:[19,29,49],termin:5,iota:46,rsh:46,supset:46,"1em":41,gtreqless:46,exactli:50,blind:51,ipad:15,gtrdot:46,subsetneq:46,structur:[0,7,28,31,44,48,19,20,32,37,26],charact:[46,41,42,15,53,5,6,25,22,51],htaccess:35,seriou:51,bet:35,exhibit:35,"function":[0,28,29,44,17,46,3,48,19,31,30,49,51,37,38,1],biggl:46,biggm:46,rrightarrow:46,unkown:37,lightli:50,close:[41,15,20,4,40,6,26],need:[0,1,2,3,4,5,6,7,8,10,14,15,17,18,19,20,25,22,23,24,28,30,31,35,36,37,38,39,40,41,42,44,45,46,48,49,11,51,53],turn:[12,5,41,28,29,40,11],biggr:46,min:46,mid:46,which:[2,30,5,7,10,14,15,40,18,19,20,21,22,24,25,26,27,28,29,3,31,32,33,34,35,36,37,38,46,41,42,43,45,53,48,50,51,1],hbox:46,mit:46,singl:[0,14,15,28,49,16,46,48,5,20,32,23,1,7,53],declaremathoper:46,mathjax_preview:[27,53,5,43,22,51],x22d6:46,unless:[20,15,28,50],who:[19,29,4],eight:50,leftthreetim:46,"class":[38,46,32,15,28,29,16,17,5,39,22,45,10,24,51,33],underset:46,placement:15,url:[0,14,35,15,3,47,40,20,7],gather:46,request:[0,15,29,46,30,19,31,50,7,1],face:[35,4,6,25,42,26],inde:[3,26],movablelimit:15,nmid:46,determin:[7,42,2,30,46,11,22,37],starup:22,occasion:7,fact:[29,14,39],backsimeq:46,mathjax_messag:18,leftarrowtail:46,verbos:[44,31,22],perfom:49,perfor:50,bracevert:46,woth:41,curlyeqsucc:46,inlin:[5,20,14],locat:[0,27,35,6,30,48,5,20,22,7,19,43,37,24,51,33],jax:[30,40,9,14,15,16,19,25,22,24,26,3,37,33,10,7,38,39,11,32,42,44,45,53,48,50,51,52],vartriangleright:46,forev:3,should:[3,5,8,36,14,40,17,20,21,22,24,25,27,28,29,31,37,33,10,7,39,46,41,35,43,53,48,50,52,1],imagefont:[6,42],vartriangleleft:46,suppos:[31,14,48],"5px":12,triangleright:46,"5pt":20,local:[35,28,20,1,3,48,6,22,7],hope:[6,14],precsim:46,liminf:46,looparrowright:46,increas:[14,15],bigstar:46,leqslant:46,smash:46,enabl:[46,14,2,5,20,8,36,7],organ:51,frown:46,stuff:37,integr:2,contain:[0,2,3,5,6,12,37,40,16,17,18,19,20,39,22,45,27,28,29,31,35,7,46,32,42,43,53,48,51,1],typset:15,conform:20,coooki:12,frame:18,temporarili:18,troubl:20,issafari:37,asynchron:[0,32,28,29,44,17,1,19,31,49,37],statu:[0,35,31],error:[0,14,46,3,4,40,20,41,22,10,37,24,39],jmath:46,pattern:[5,22],gtrsim:46,state:1,quickest:20,theta:46,neither:[6,21],equiv:[46,50],omicron:46,nshortmid:46,kei:[12,0,28,29,17,19,22,37],entir:[37,7,48],closebox:6,ker:46,thumb:1,skipstartuptypeset:22,plugin:[2,47,22,8,23,50,51],admin:[36,8],nabla:46,equal:[1,37,38],gnapprox:46,etc:[46,1,7,22,48],eta:46,equat:[5,27,42,15,43,35,46,48,40,20,25,22,23,50,51,45],futher:50,eth:46,limiti:35,lmoustach:46,onchang:48,comment:[15,53,40,20,22,7],varnoth:46,arriv:[19,49],solv:[7,3],arguement:31,sqcup:46,quit:48,showfontmenu:47,"55em":46,quotat:53,bbb:46,sqsupseteq:46,treat:[46,20],immedi:[0,17,1,30,48,19,7],smallsetminu:46,both:[0,14,15,31,44,1,30,40,20,41,22,7,8,36,37,38],alignat:46,otf:[35,15],psi:46,togeth:[40,1,37,41,28],injlim:46,present:[29,41,4,6,22,7],twoheadrightarrow:46,multi:46,iscallback:28,displaylin:46,align:[46,41,22],contextu:[13,41,42,47,40,11,22,34,51,45],studentdisplai:48,defin:[46,14,42,34,20,30,53,3,7,47,40,6,25,22,31,11,1,37,38,39,26],glossari:[44,13],layer:[15,2],almost:46,curvearrowright:46,site:[14,35,2,40,20,22,23,36,7],archiv:[20,35],substanti:[14,7],revis:35,halt:49,curlywedg:46,displaystyl:[46,48],parti:19,cross:35,sqrt:[46,20,51],getx:38,extensiondir:39,oint:46,android:15,cssid:15,curlyve:46,phi:46,http:[14,35,2,3,47,48,46,20,33,8,50,36,7],lleftarrow:46,"8em":[46,25],effect:[17,1,3],mrow:[20,51,41],student:48,php:[2,8],trake:4,executehook:[29,28],off:[46,15,40,49,11,50,7],center:[46,22],well:[19,35,28,31,53,4,48,40,20,39,22,49,50,7],exampl:[0,3,4,46,6,7,9,11,12,14,15,17,19,20,21,22,24,25,26,27,28,29,31,32,33,34,35,10,37,38,5,41,42,43,45,53,47,48,49,50,51,52,1],command:[41,35,28,44,17,1,30,48,46,22,7,37],choos:[46,20,50],undefin:[46,20,28,31],setx:38,sibl:15,usual:[28,31,1,46,6,39,22,51,7],curlyeqprec:46,paus:35,less:[46,35,5,20,51,37],natiov:11,obtain:[14,35,48,40,20,22,51,7,24],mistaken:51,mathclos:46,mathoutput:48,simultan:[1,30],web:[13,14,42,15,2,20,30,46,3,49,48,19,6,33,45,23,35,51,7,29,1],current_them:2,smith:31,textbf:46,cdotp:46,atopwithdelim:46,valid:[31,14,50],match:[5,29,42],webpag:33,piec:15,varpropto:46,punctuat:15,know:[29,31,3,19,20,10,7,24,51],cfrac:46,mathinn:46,recurs:[37,15],mho:46,nofont:6,like:[3,46,15,17,18,19,20,23,26,28,29,31,33,10,7,5,41,35,44,53,48,49,50,51,1],lost:31,messagehook:[19,29,37],necessari:[23,20,37,45,7],page:[2,30,5,6,7,8,12,13,14,15,40,16,18,19,20,11,22,23,45,27,29,3,31,33,35,36,37,46,41,42,43,1,47,48,49,50,51],captur:44,settext:12,linux:37,bigve:46,"export":45,superclass:38,proper:[29,37],guarante:[0,1,48,17],librari:[16,1,32,35],glyph:[46,44],kern:46,assum:48,avoid:[41,15,46,21,22,51],tooltip:42,leav:[12,25,52,48],doublecap:46,preload:[0,20],twoheadleftarrow:46,daleth:46,upharpoonright:46,journal:44,usag:13,host:7,sphericalangl:46,although:[16,29,35,52],offset:42,panel:46,varepsilon:46,about:[19,14,42,15,28,20,46,7,4,48,40,6,11,22,31,49,35,51,37,29],ams_html:[46,14,48,40,33,7],rare:1,column:25,mathajx:14,mod_head:35,mapsto:46,constructor:38,fals:[5,42,15,29,46,3,47,40,11,22,9,37,38,26],bigoplu:46,eqalign:46,own:[14,35,15,20,16,1,4,46,6,49,50,10,7,24,51,26],amsmath:[46,14,1,40,20,25,7],circledr:46,reprocessor:41,maxbuff:25,bigtriangledown:46,guard:22,vphantom:46,circlearrowleft:46,dcocument:37,transfer:[20,35],support:[13,14,42,15,20,30,46,3,4,32,40,6,41,23,50,51,7,52,11],much:[19,50,7,44,49],bigcap:46,arg1:31,"var":[12,28,1,3,48,19,31,38],stai:7,arg2:31,deliveri:[20,15],propto:46,unexpect:[11,22],precnapprox:46,studentansw:48,bodi:[0,14,48,20,10,7,24],gain:[50,47],lgroup:46,bug:[12,14,35,15,4,18,20,22,51,7],count:3,made:[1,4,49,51,45,26],bbbk:46,whether:[46,27,42,43,3,47,48,5,31,11,22,7,9,37,52],wish:[14,31,53,3,4,46,20,50,37],displai:[46,6,12,13,15,18,19,20,25,22,23,45,27,33,34,7,5,41,35,24,47,48,51],substack:46,underleftrightarrow:46,mathord:46,gtrapprox:46,below:[2,46,6,9,11,12,37,20,21,22,45,25,27,43,34,35,10,7,5,42,24,47,49,50,51,52],sideset:46,"_htmlormml":50,problem:[14,35,15,31,3,4,46,20,50,51,7],x03c0:51,"int":[12,46,31],dure:[15,28,19,39,37,45],implement:[12,0,41,16,46,40,31,39,19,50,51,38],nolimit:46,inf:46,rightleftharpoon:46,probabl:[19,31,7,2],oplu:46,helpurl:47,immateri:1,percent:[11,42],detail:[0,5,6,7,8,13,14,15,40,17,19,20,11,22,27,28,29,43,33,34,35,36,37,46,41,42,1,47,48,49,50,51],lesseqgtr:46,other:[0,2,30,5,14,15,40,17,18,19,20,39,22,23,45,28,29,31,37,33,35,7,38,46,41,42,44,1,11,48,49,50,51,52],futur:[0,4,18,19,49,50,45],branch:[7,35],varieti:51,downlaod:[23,35,15],removeaft:6,mehtod:39,repeat:[35,2],star:46,thicksim:46,msgroup:41,matrix:46,sphinx:2,scientif:44,reliabl:[50,14,3,7],rule:[46,6,9,1,22],mathjax_mathml:3,portion:48,eot:35},objtypes:{"0":"py:method"},titles:["The MathJax.Ajax Object","Using Queues","Using MathJax in popular web platforms","Loading MathJax Dynamically","The MathJax Community","The tex2jax Preprocessor","The FontWarnings extension","Loading and Configuring MathJax","Installing MathJax in WordPress","The MathML input processor","The MathJax.InputJax Class","The NativeMML output processor","The MathJax.HTML Object","MathJax Documentation","Migrating from MathJax v1.0 to v1.1","What’s New in MathJax v1.1","The MathJax API","The MathJax.Callback.Queue Class","The MathJax.Message Object","Using Signals","Getting Started","Describing HTML snippets","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The TeX input processor","Configuration Objects","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax.Callback.Signal Class","The MathJax Startup Sequence","Using Callbacks","The MathJax variable","Converting to MathJax from jsMath","The MathZoom extension","Installing and Testing MathJax","Using MathJax in Movable Type","The MathJax.Hub Object","The MathJax Object-Oriented Programming Model","The Base Jax Class","Common Configurations","MathJax MathML Support","The HTML-CSS output processor","The mml2jax Preprocessor","Glossary","The MathJax.ElementJax Class","MathJax TeX and LaTeX Support","The MathMenu extension","Modifying Math on the Page","Synchronizing your code with MathJax","MathJax Output Formats","The MathJax Processing Model","The MMLorHTML configuration options","CSS Style Objects"],objnames:{"0":"Python method"},filenames:["api/ajax","queues","platforms/index","dynamic","community","options/tex2jax","options/FontWarnings","configuration","platforms/wordpress","options/MathML","api/inputjax","options/NativeMML","api/html","index","upgrade","whats-new","api/index","api/queue","api/message","signals","start","HTML-snippets","options/hub","mathjax","api/outputjax","options/TeX","options/index","options/jsMath2jax","api/callback","api/signal","startup","callbacks","api/variable","jsMath","options/MathZoom","installation","platforms/movable-type","api/hub","api/object","api/jax","config-files","mathml","options/HTML-CSS","options/mml2jax","glossary","api/elementjax","tex","options/MathMenu","typeset","synchronize","output","model","options/MMLorHTML","CSS-styles"]})
+\ No newline at end of file
diff --git a/docs/html/signals.html b/docs/html/signals.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="up" title="Synchronizing your code with MathJax" href="synchronize.html" />
<link rel="next" title="Loading MathJax Dynamically" href="dynamic.html" />
@@ -213,11 +213,6 @@ structure and methods of the signal object.</p>
<h4>Next topic</h4>
<p class="topless"><a href="dynamic.html"
title="next chapter">Loading MathJax Dynamically</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/signals.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/start.html b/docs/html/start.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="Installing and Testing MathJax" href="installation.html" />
<link rel="prev" title="What is MathJax?" href="mathjax.html" />
@@ -52,8 +52,50 @@
<div class="section" id="getting-started">
<span id="id1"></span><h1>Getting Started<a class="headerlink" href="#getting-started" title="Permalink to this headline">¶</a></h1>
<p>MathJax allows you to include mathematics in your web pages, either
-using TeX and LaTeX notation, or as MathML. To use MathJax, you will
-need to do the following things:</p>
+using TeX and LaTeX notation, or as MathML, and you can even use both
+in the same document.</p>
+<p>There are two ways to access MathJax: the easiest way is to use the
+copy of MathJax available from our distributed network service at
+<tt class="docutils literal"><span class="pre">cdn.mathjax.org</span></tt>, but you can also download and install a copy of
+MathJax on your own server, or for use locally on your own hard disk
+(with no need for network access). Both of these are described below,
+with links to more detailed explanations. This page gives the
+quickest and easiest ways to get MathJax up and running on your web
+site, but you may want to read the details in order to customize the
+setup for your pages.</p>
+<div class="section" id="using-the-mathjax-content-delivery-network-cdn">
+<span id="mathjax-cdn"></span><h2>Using the MathJax Content Delivery Network (CDN)<a class="headerlink" href="#using-the-mathjax-content-delivery-network-cdn" title="Permalink to this headline">¶</a></h2>
+<p>To use MathJax from our server, you need to do two things:</p>
+<ol class="arabic simple">
+<li>Link MathJax into the web pages that are to include mathematics.</li>
+<li>Put mathematics into your web pages so that MathJax can display
+it.</li>
+</ol>
+<p>You accomplish the first step by putting</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>into the <tt class="docutils literal"><span class="pre"><head></span></tt> block of your document. (It can also go in the
+<tt class="docutils literal"><span class="pre"><body></span></tt> if necessary, but the head is to be preferred.) This will
+load the latest version of MathJax from the distributed server, and
+configure it to recognize mathematics in both TeX and MathML notation,
+and ask it to generate its output using MathML if the browser supports
+that, and otherwise use HTML-with-CSS to display the mathematics.
+This is the most general configuration, and should suffice for most
+people’s needs. Other configurations are available, however, and you
+can also provide additional configuration parameters to taylor one of
+the confiogurations to your needs. More details can be found in the
+<a class="reference internal" href="configuration.html#loading"><em>Loading and Configuring MathJax</em></a> instructions.</p>
+<p>The use of <tt class="docutils literal"><span class="pre">cdn.mathjax.org</span></tt> is governed by its <a class="reference external" href="http://www.mathjax.org/download/mathjax-cdn-terms-of-service/">terms of service</a>, so be
+sure to read that before linked to the MathJax CDN server.</p>
+<p>To see how to enter mathematics in your web pages, see <a class="reference internal" href="#putting-mathematics-in-a-web-page">Putting
+mathematics in a web page</a> below.</p>
+</div>
+<div class="section" id="installing-your-own-copy-of-mathjax">
+<h2>Installing Your Own Copy of MathJax<a class="headerlink" href="#installing-your-own-copy-of-mathjax" title="Permalink to this headline">¶</a></h2>
+<p>We recommend using the CDN service if you can, but you can also install
+MathJax on your own server, or locally on your own hard disk. To do
+so you will need to do the following things:</p>
<ol class="arabic simple">
<li>Obtain a copy of MathJax and make it available on your server.</li>
<li>Configure MathJax to suit the needs of your site.</li>
@@ -61,20 +103,16 @@ need to do the following things:</p>
<li>Put mathematics into your web pages so that MathJax can display
it.</li>
</ol>
-<p>Each of these steps is described briefly below, with links to more
-detailed explanations. This page gives the quickest and easiest ways
-to get MathJax up and running on your web site, but you may want to
-read the details in order to customize the setup for your pages.</p>
<div class="section" id="obtaining-and-installing-mathjax">
-<h2>Obtaining and Installing MathJax<a class="headerlink" href="#obtaining-and-installing-mathjax" title="Permalink to this headline">¶</a></h2>
+<h3>Obtaining and Installing MathJax<a class="headerlink" href="#obtaining-and-installing-mathjax" title="Permalink to this headline">¶</a></h3>
<p>The easiest way to set up MathJax is to obtain the v1.1 archive from
the <a class="reference external" href="http://www.mathjax.org/download/">MathJax download page</a> (you
-should obtain a file names something like
-<tt class="docutils literal"><span class="pre">mathjax-MathJax-v1.0-X-XXXXXXXX.zip</span></tt>, where the X’s are
+should obtain a file named something like
+<tt class="docutils literal"><span class="pre">mathjax-MathJax-v1.1-X-XXXXXXXX.zip</span></tt>, where the X’s are
random-looking letters and numbers). This archive includes both the
MathJax code and the MathJax webfonts, so it is the only file you
-need. (This is different from the beta releases, which had the fonts
-separate from the rest of the code).</p>
+need. Note that this is different from earlier releases, which had
+the fonts separate from the rest of the code.</p>
<p>Unpack the archive and place the resulting MathJax folder onto your
web server at a convenient location where you can include it into your
web pages. For example, making <tt class="docutils literal"><span class="pre">MathJax</span></tt> a top-level directory on
@@ -83,60 +121,61 @@ refer to the main MathJax file via the URL <tt class="docutils literal"><span cl
from within any page on your server.</p>
<p>Note: While this is the easiest way to set up MathJax initially, there
is a better way to do it if you want to be able to keep your copy of
-MathJax up-to-date easily. That uses the <a class="reference external" href="http://git-scm.com/">Git</a>
-version control system, and is described in the <a class="reference internal" href="installation.html#getting-mathjax-git"><em>Installing
-MathJax</em></a> document. If you prefer using
-<a class="reference external" href="http://subversion.apache.org/">Subversion</a>, you can also use that
-to get a copy of MathJax (see <a class="reference internal" href="installation.html#getting-mathjax-svn"><em>Installing MathJax via SVN</em></a>).</p>
+MathJax up-to-date. That uses the <a class="reference external" href="http://git-scm.com/">Git</a> version
+control system, and is described in the <a class="reference internal" href="installation.html#getting-mathjax-git"><em>Installing MathJax</em></a> document. If you prefer using <a class="reference external" href="http://subversion.apache.org/">Subversion</a>, you can also use that to get a copy
+of MathJax (see <a class="reference internal" href="installation.html#getting-mathjax-svn"><em>Installing MathJax via SVN</em></a>).</p>
<p>Once you have MathJax set up on your server, you can test it using the
files in the <tt class="docutils literal"><span class="pre">MathJax/test</span></tt> directory. Load them in your browser
using its web address rather than opening them locally (i.e., use an
<tt class="docutils literal"><span class="pre">http://</span></tt> URL rather than a <tt class="docutils literal"><span class="pre">file://</span></tt> URL). When you view the
-<tt class="docutils literal"><span class="pre">index.html</span></tt> file, after a few moments you should see a message that
-MathJax appears to be working. If not, check that the files have been
-transferred to the server completely and that the permissions allow
-the server to access the files and folders that are part of the
-MathJax directory. (Be sure to verify the MathJax folder’s permissions
-as well.) Check the server log files for any errors that pertain to
-the MathJax installation; this may help locate problems in the
-permission or locations of files.</p>
+<tt class="docutils literal"><span class="pre">index.html</span></tt> file, after a few moments you should see a message
+indicating that MathJax appears to be working. If not, check that the
+files have been transferred to the server completely and that the
+permissions allow the server to access the files and folders that are
+part of the MathJax directory. (Be sure to verify the MathJax
+folder’s permissions as well.) Check the server log files for any
+errors that pertain to the MathJax installation; this may help locate
+problems in the permission or locations of files.</p>
</div>
-<div class="section" id="configuring-mathjax">
-<h2>Configuring MathJax<a class="headerlink" href="#configuring-mathjax" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="configuring-your-copy-of-mathjax">
+<h3>Configuring your copy of MathJax<a class="headerlink" href="#configuring-your-copy-of-mathjax" title="Permalink to this headline">¶</a></h3>
<p>When you include MathJax into your web pages as described below, it
-will load the file <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> (i.e., the file named
-<tt class="docutils literal"><span class="pre">MathJax.js</span></tt> in the <tt class="docutils literal"><span class="pre">config</span></tt> folder of the main <tt class="docutils literal"><span class="pre">MathJax</span></tt>
-folder). This file contains the configuration parameters that
-control how MathJax operates. There are comments in it that
-explain each of the parameters, and you can edit the file to suit
-your needs.</p>
-<p>The default settings are appropriate for pages that use TeX as the
-input language, but you might still want to adjust some settings; for
-example, you might want to include some additional extensions such as
-the <tt class="docutils literal"><span class="pre">AMSmath</span></tt> and <tt class="docutils literal"><span class="pre">AMSsymbols</span></tt> extensions. The comments in the
-file should help you do this, but more detailed instructions are
-included in the <a class="reference internal" href="configuration.html#configuration"><em>Configuring MathJax</em></a> document.
-There are also ways to configure MathJax other than by using the
-<tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file; these are descibed on that page as well.</p>
+will load the file <tt class="docutils literal"><span class="pre">config/TeX-AMS-MML_HTMLorMML.js</span></tt> (i.e., the file
+named <tt class="docutils literal"><span class="pre">TeX-AMS-MML_HTMLorMML.js</span></tt> in the <tt class="docutils literal"><span class="pre">config</span></tt> folder of the
+main <tt class="docutils literal"><span class="pre">MathJax</span></tt> folder). This file preloads all the most comply-used
+components of MathJax, allowing it to process mathematics that is in
+the TeX or LaTeX format, or in MathML notation. It will produce
+output in MathML form if the user’s browser supports that, and will use
+HTML-with-CSS to render the mathematics otherwise.</p>
+<p>There are a number of other prebuilt configuration files that you can
+choose from as well, or you could use the <tt class="docutils literal"><span class="pre">config/default.js</span></tt> file and
+customize the settings yourself. The combined configuration files are
+described more fully in <a class="reference internal" href="config-files.html#common-configurations"><em>Common Configurations</em></a>, and the configuration options are described in
+<a class="reference internal" href="options/index.html#configuration"><em>Configuration Options</em></a>.</p>
+<p>Note: The configuration process has changed in MathJax v1.1, so if you have
+existing pages that use MathJax, you may need to modify the tag that
+loads MathJax so that is conforms with the new configuration process.
+See <a class="reference internal" href="installation.html#installation"><em>Installing and Configuring MathJax</em></a> for more
+details.</p>
</div>
-<div class="section" id="linking-mathjax-into-a-web-page">
-<h2>Linking MathJax into a web page<a class="headerlink" href="#linking-mathjax-into-a-web-page" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="linking-your-copy-of-mathjax-into-a-web-page">
+<h3>Linking your copy of MathJax into a web page<a class="headerlink" href="#linking-your-copy-of-mathjax-into-a-web-page" title="Permalink to this headline">¶</a></h3>
<p>You can include MathJax in your web page by putting</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js"</span><span class="nt">></script></span>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"path-to-MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></script></span>
</pre></div>
</div>
<p>in your document’s <tt class="docutils literal"><span class="pre"><head></span></tt> block. Here, <tt class="docutils literal"><span class="pre">path-to-MathJax</span></tt> should
be replaced by the URL for the main MathJax directory, so if you have
put the <tt class="docutils literal"><span class="pre">MathJax</span></tt> directory at the top level of you server’s web
site, you could use</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></script></span>
</pre></div>
</div>
<p>to load MathJax in your page. For example, your page could look like</p>
<div class="highlight-html"><div class="highlight"><pre><span class="nt"><html></span>
<span class="nt"><head></span>
...
- <span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
+ <span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></script></span>
<span class="nt"></head></span>
<span class="nt"><body></span>
...
@@ -144,37 +183,36 @@ site, you could use</p>
<span class="nt"></html></span>
</pre></div>
</div>
-<p>Although it is possible to load MathJax from a site other than your
-own web server, there are issues involved in doing so that you need to
-take into consideration. See the <a class="reference internal" href="installation.html#cross-domain-linking"><em>Notes About Shared Servers</em></a> for more details. Please do <strong>not</strong> link to
-the copy of MathJax at <tt class="docutils literal"><span class="pre">www.mathjax.org</span></tt>, as we do not have the
-resources to act as a web service for all the sites on the web that
-would like to display mathematics. If you are able to run MathJax
-from your own server, please do so (this will probably give you better
-response time in any case).</p>
+<p>If you have installed MathJax on a server that is in a different
+domain from the one serving the page that loads MathJax, be sure to
+read the <a class="reference internal" href="installation.html#cross-domain-linking"><em>Notes About Shared Servers</em></a> for
+more details. In that case, you may wish to consider using the
+<a class="reference internal" href="#mathjax-cdn"><em>MathJax CDN</em></a> rather than installing your own copy
+of MathJax.</p>
+</div>
</div>
<div class="section" id="putting-mathematics-in-a-web-page">
<h2>Putting mathematics in a web page<a class="headerlink" href="#putting-mathematics-in-a-web-page" title="Permalink to this headline">¶</a></h2>
-<p>To put mathematics in your web page, you can use either TeX and LaTeX
-notation, or MathML notation (or both); the configuration file tells
-MathJax which you want to use, and how you plan to indicate the
-mathematics when you are using TeX notation. The following sections
-tell you how to use each of these formats.</p>
+<p>To put mathematics in your web page, you can use either <a class="reference internal" href="glossary.html#term-tex"><em class="xref std std-term">TeX</em></a>
+and <a class="reference internal" href="glossary.html#term-latex"><em class="xref std std-term">LaTeX</em></a> notation or <a class="reference internal" href="glossary.html#term-mathml"><em class="xref std std-term">MathML</em></a> notation or both within
+the same page; the MathJax configuration tells MathJax which you want
+to use, and how you plan to indicate the mathematics when you are
+using TeX notation. The configuration file used in the examples above
+tells MathJax to look for both TeX and MathML notation within your
+pages. These two formats are described in more detail below.</p>
<div class="section" id="tex-and-latex-input">
<span id="id2"></span><h3>TeX and LaTeX input<a class="headerlink" href="#tex-and-latex-input" title="Permalink to this headline">¶</a></h3>
-<p>To process mathematics that is written in <a class="reference internal" href="glossary.html#term-tex"><em class="xref std std-term">TeX</em></a> or <a class="reference internal" href="glossary.html#term-latex"><em class="xref std std-term">LaTeX</em></a>
-format, include <tt class="docutils literal"><span class="pre">"input/TeX"</span></tt> in your configuration’s <cite>jax</cite> array,
-and add <tt class="docutils literal"><span class="pre">"tex2jax.js"</span></tt> to the <cite>extensions</cite> array so that MathJax
-will look for TeX-style math delimiters to identify the mathematics on
-the page.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2math.js"</span><span class="p">],</span>
-<span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span> <span class="s2">"output/HTML-CSS"</span><span class="p">]</span>
-</pre></div>
-</div>
-<p>Note that the default math delimiters are <tt class="docutils literal"><span class="pre">$$...$$</span></tt> and <tt class="docutils literal"><span class="pre">\[...\]</span></tt>
-for displayed mathematics, and <tt class="docutils literal"><span class="pre">\(...\)</span></tt> for in-line mathematics.
-In particular, the <tt class="docutils literal"><span class="pre">$...$</span></tt> in-line delimiters are <strong>not</strong> used by
-default. That is because dollar signs appear too often in
+<p>Mathematics that is written in <a class="reference internal" href="glossary.html#term-tex"><em class="xref std std-term">TeX</em></a> or <a class="reference internal" href="glossary.html#term-latex"><em class="xref std std-term">LaTeX</em></a> format is
+indicated using <em>math delimiters</em> that surround the mathematics,
+telling MathJax what part of your page represents mathematics and what
+is normal text. There are two types of equations: ones that occur
+within a paragraph (in-line mathematics), and larger equations that
+appear separated from the rest of the text on lines by themselves
+(displayed mathematics).</p>
+<p>The default math delimiters are <tt class="docutils literal"><span class="pre">$$...$$</span></tt> and <tt class="docutils literal"><span class="pre">\[...\]</span></tt> for
+displayed mathematics, and <tt class="docutils literal"><span class="pre">\(...\)</span></tt> for in-line mathematics. Note
+in particular that the <tt class="docutils literal"><span class="pre">$...$</span></tt> in-line delimiters are <strong>not</strong> used
+by default. That is because dollar signs appear too often in
non-mathematical settings, which could cause some text to be treated
as mathematics unexpectedly. For example, with single-dollar
delimiters, ”... the cost is $2.50 for the first one, and $2.00 for
@@ -182,72 +220,81 @@ each additional one ...” would cause the phrase “2.50 for the first
one, and” to be treated as mathematics since it falls between dollar
signs. For this reason, if you want to use single-dollars for in-line
math mode, you must enable that explicitly in your configuration:</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span><span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s1">'\\('</span><span class="p">,</span><span class="s1">'\\)'</span><span class="p">]]}</span>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+<span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span><span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s1">'\\('</span><span class="p">,</span><span class="s1">'\\)'</span><span class="p">]]}</span>
+<span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascipt"</span> <span class="na">src=</span><span class="s">"path-to-mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></script></span>
</pre></div>
</div>
-<p>See the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file, or the <a class="reference internal" href="options/tex2jax.html#configure-tex2jax"><em>tex2jax configuration
+<p>See the <tt class="docutils literal"><span class="pre">config/default.js</span></tt> file, or the <a class="reference internal" href="options/tex2jax.html#configure-tex2jax"><em>tex2jax configuration
options</em></a> page, for additional configuration
-parameters that you can specify for the <tt class="docutils literal"><span class="pre">tex2jax</span></tt> preprocessor.</p>
-<p>Here is a complete sample page containing TeX mathematics (which
-assumes that <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> is configured as described above):</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><html></span>
+parameters that you can specify for the <cite>tex2jax</cite> preprocessor,
+which is the component of MathJax that identifies TeX notation within
+the page). See the <a class="reference internal" href="tex.html#tex-support"><em>TeX and LaTeX</em></a> page for
+more on MathJax’s support for TeX.</p>
+<p>Here is a complete sample page containing TeX mathematics (also available
+in the <tt class="docutils literal"><span class="pre">test/sample-tex.html</span></tt> file):</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="cp"><!DOCTYPE html></span>
+<span class="nt"><html></span>
<span class="nt"><head></span>
<span class="nt"><title></span>MathJax TeX Test Page<span class="nt"></title></span>
-<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span><span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span><span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s1">'\\('</span><span class="p">,</span><span class="s1">'\\)'</span><span class="p">]]}});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></script></span>
<span class="nt"></head></span>
<span class="nt"><body></span>
-When \(a \ne 0\), there are two solutions to \(ax^2 + bx + c = 0\) and they are
+When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
<span class="nt"></body></span>
<span class="nt"></html></span>
</pre></div>
</div>
-<p>There are a number of extensions for the TeX input processor that you
-might want to add to the <cite>extensions</cite> array. These include:</p>
+<p>Since the TeX notation is part of the text of the page, there are some
+caveats that you must keep in mind when you enter your mathematics.
+In particular, you need to be careful about the use of less-than
+signs, since those are what the browser uses to indicate the start of
+a tag in HTML. Putting a space on both sides of the less-than sign
+should be sufficient, but see <a class="reference internal" href="tex.html#tex-support"><em>TeX and LaTeX support</em></a> for details.</p>
+<p>There are a number of extensions for the TeX input processor that are
+loaded by the <tt class="docutils literal"><span class="pre">TeX-AMS-MML_HTMLorMML</span></tt> configuration. These include:</p>
<ul class="simple">
<li><cite>TeX/AMSmath.js</cite>, which defines the AMS math environments and
macros,</li>
<li><cite>TeX/AMSsymbols.js</cite>, which defines the macros for the symbols in
-the msam10 and msbm10 fonts,</li>
+the <cite>msam10</cite> and <cite>msbm10</cite> fonts,</li>
<li><cite>TeX/noErrors.js</cite>, which shows the original TeX code rather than
an error message when there is a problem processing the TeX, and</li>
<li><cite>TeX/noUndefined.js</cite>, which prevents undefined macros from
producing an error message, and instead shows the macro name in red.</li>
</ul>
-<p>For example,</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2math.js"</span><span class="p">,</span><span class="s2">"TeX/noErrors.js"</span><span class="p">,</span><span class="s2">"TeX/noUndefined.js"</span><span class="p">,</span>
- <span class="s2">"TeX/AMSmath.js"</span><span class="p">,</span><span class="s2">"TeX/AMSsymbols.js"</span><span class="p">]</span>
-</pre></div>
-</div>
-<p>loads all four extensions, in addition to the <tt class="docutils literal"><span class="pre">tex2math</span></tt>
-preprocessor.</p>
+<p>Other extensions may be loaded automatically when needed.</p>
</div>
<div class="section" id="mathml-input">
<h3>MathML input<a class="headerlink" href="#mathml-input" title="Permalink to this headline">¶</a></h3>
-<p>To process mathematics written in <a class="reference internal" href="glossary.html#term-mathml"><em class="xref std std-term">MathML</em></a>, include
-<tt class="docutils literal"><span class="pre">"input/MathML"</span></tt> in your configuration’s <cite>jax</cite> array, and add
-<tt class="docutils literal"><span class="pre">"mml2jax.js"</span></tt> to the <cite>extensions</cite> array so that MathJax will
-locate the <tt class="docutils literal"><span class="pre"><math></span></tt> elements in the page automatically.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"mml2jax.js"</span><span class="p">],</span>
-<span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/MathML"</span><span class="p">,</span> <span class="s2">"output/HTML-CSS"</span><span class="p">]</span>
-</pre></div>
-</div>
-<p>With this configuration, you would mark your mathematics using
-standard <tt class="docutils literal"><span class="pre"><math></span></tt> tags, where <tt class="docutils literal"><span class="pre"><math</span> <span class="pre">display="block"></span></tt> represents
-displayed mathematics and <tt class="docutils literal"><span class="pre"><math</span> <span class="pre">display="inline"></span></tt> or just
-<tt class="docutils literal"><span class="pre"><math></span></tt> represents in-line mathematics.</p>
+<p>For mathematics written in <a class="reference internal" href="glossary.html#term-mathml"><em class="xref std std-term">MathML</em></a> notation, you mark your
+mathematics using standard <tt class="docutils literal"><span class="pre"><math></span></tt> tags, where <tt class="docutils literal"><span class="pre"><math</span>
+<span class="pre">display="block"></span></tt> represents displayed mathematics and <tt class="docutils literal"><span class="pre"><math</span>
+<span class="pre">display="inline"></span></tt> or just <tt class="docutils literal"><span class="pre"><math></span></tt> represents in-line mathematics.</p>
<p>Note that this will work in HTML files, not just XHTML files (MathJax
works with both), and that the web page need not be served with any
special MIME-type. Also note that, unless you are using XHTML rather
than HTML, you should not include a namespace prefix for your
<tt class="docutils literal"><span class="pre"><math></span></tt> tags; for example, you should not use <tt class="docutils literal"><span class="pre"><m:math></span></tt> except
in a file where you have tied the <tt class="docutils literal"><span class="pre">m</span></tt> namespace to the MathML DTD.</p>
-<p>Here is a complete sample page containing MathML mathematics (which
-assumes that <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> is configured as described above):</p>
-<div class="highlight-html"><div class="highlight"><pre><span class="nt"><html></span>
+<p>Here is a complete sample page containing MathML mathematics (also
+available in the <tt class="docutils literal"><span class="pre">test/sample-mml.html</span></tt> file):</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="cp"><!DOCTYPE html></span>
+<span class="nt"><html></span>
<span class="nt"><head></span>
<span class="nt"><title></span>MathJax MathML Test Page<span class="nt"></title></span>
-<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></script></span>
<span class="nt"></head></span>
<span class="nt"><body></span>
@@ -281,8 +328,22 @@ there are two solutions to <span class="nt"><math></span>
<span class="nt"></html></span>
</pre></div>
</div>
-<p>The <tt class="docutils literal"><span class="pre">mml2jax</span></tt> has only a few configuration options; see the
-<tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file or the <a class="reference internal" href="options/mml2jax.html#configure-mml2jax"><em>mml2jax configuration options</em></a> page for more details.</p>
+<p>When entering MathML notation in an HTML page (rather than an XHTML
+page), you should <strong>not</strong> use self-closing tags, but should use explicit
+open and close tags for all your math elements. For example, you
+should use</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><mspace</span> <span class="na">width=</span><span class="s">"thinmathspace"</span><span class="nt">></mspace></span>
+</pre></div>
+</div>
+<p>rather than <tt class="docutils literal"><span class="pre"><mspace</span> <span class="pre">width="5pt"</span> <span class="pre">/></span></tt> in an HTML document. If you use the
+self-closing form, some browsers will not build the math tree properly, and
+MathJax will receive a damaged math structure, which will not be rendered
+as the original notation would have been. Unfortunately, there is nothing
+MathJax can do about that, since the browser has incorrectly interpreted
+the tags long before MathJax has a chance to work with them.</p>
+<p>The component of MathJax that recognizes MathML notation is called the
+<cite>mml2jax</cite> extension, and it has only a few configuration options; see the
+<tt class="docutils literal"><span class="pre">config/default.js</span></tt> file or the <a class="reference internal" href="options/mml2jax.html#configure-mml2jax"><em>mml2jax configuration options</em></a> page for more details. See the <a class="reference internal" href="mathml.html#mathml-support"><em>MathML</em></a> page for more on MathJax’s MathML support.</p>
</div>
</div>
<div class="section" id="where-to-go-from-here">
@@ -291,7 +352,7 @@ there are two solutions to <span class="nt"><math></span>
MathJax installed and configured on your web server, and you should be
able to use it to write web pages that include mathematics. At this
point, you can start making pages that contain mathematical content!</p>
-<p>You could also read more about the details of how to <a class="reference internal" href="configuration.html#configuration"><em>customize
+<p>You could also read more about the details of how to <a class="reference internal" href="configuration.html#loading"><em>customize
MathJax</em></a>.</p>
<p>If you are trying to use MathJax in blog or wiki software or in some
other content-management system, you might want to read about <a class="reference internal" href="platforms/index.html#platforms"><em>using
@@ -317,9 +378,13 @@ MathJax, you could visit the <a class="reference internal" href="community.html#
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Getting Started</a><ul>
+<li><a class="reference internal" href="#using-the-mathjax-content-delivery-network-cdn">Using the MathJax Content Delivery Network (CDN)</a></li>
+<li><a class="reference internal" href="#installing-your-own-copy-of-mathjax">Installing Your Own Copy of MathJax</a><ul>
<li><a class="reference internal" href="#obtaining-and-installing-mathjax">Obtaining and Installing MathJax</a></li>
-<li><a class="reference internal" href="#configuring-mathjax">Configuring MathJax</a></li>
-<li><a class="reference internal" href="#linking-mathjax-into-a-web-page">Linking MathJax into a web page</a></li>
+<li><a class="reference internal" href="#configuring-your-copy-of-mathjax">Configuring your copy of MathJax</a></li>
+<li><a class="reference internal" href="#linking-your-copy-of-mathjax-into-a-web-page">Linking your copy of MathJax into a web page</a></li>
+</ul>
+</li>
<li><a class="reference internal" href="#putting-mathematics-in-a-web-page">Putting mathematics in a web page</a><ul>
<li><a class="reference internal" href="#tex-and-latex-input">TeX and LaTeX input</a></li>
<li><a class="reference internal" href="#mathml-input">MathML input</a></li>
@@ -336,11 +401,6 @@ MathJax, you could visit the <a class="reference internal" href="community.html#
<h4>Next topic</h4>
<p class="topless"><a href="installation.html"
title="next chapter">Installing and Testing MathJax</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/start.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/startup.html b/docs/html/startup.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="Synchronizing your code with MathJax" href="synchronize.html" />
<link rel="prev" title="The MathJax Processing Model" href="model.html" />
@@ -103,11 +103,10 @@ pushed into the queue:</p>
<ol class="arabic simple" start="2">
<li>Perform the configuration actions:<ul>
<li>Post the <tt class="docutils literal"><span class="pre">Begin</span> <span class="pre">Config</span></tt> startup signal</li>
-<li>Execute the content of the <tt class="docutils literal"><span class="pre"><script></span></tt> that loaded MathJax,
-or load the <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file if the <tt class="docutils literal"><span class="pre"><script></span></tt>
-is empty</li>
-<li>If the <tt class="docutils literal"><span class="pre">MathJax.Hub.config.delayStartupUntil</span></tt> value is set,
-wait until its condition is met</li>
+<li>Load any configuration files specified via <tt class="docutils literal"><span class="pre">config=</span></tt> as a script parameter</li>
+<li>Execute the content of the <tt class="docutils literal"><span class="pre"><script></span></tt> that loaded MathJax, if it is not empty</li>
+<li>Wait for the <tt class="docutils literal"><span class="pre">delayStartupUntil</span></tt> condition to be met, if one was specified</li>
+<li>Execute any <tt class="docutils literal"><span class="pre">text/x-mathjax-config</span></tt> script blocks</li>
<li>load the files listed in the <tt class="docutils literal"><span class="pre">MathJax.Hub.config.config</span></tt> array</li>
<li>Post the <tt class="docutils literal"><span class="pre">End</span> <span class="pre">Config</span></tt> startup signal</li>
</ul>
@@ -156,12 +155,16 @@ the name of the extension)</li>
</li>
</ol>
<ol class="arabic simple" start="7">
-<li>Wait for the onload handler to fire</li>
+<li>Set the MathJax menu’s renderer value based on the jax that have been
+loaded</li>
</ol>
<ol class="arabic simple" start="8">
-<li>Set <tt class="docutils literal"><span class="pre">MathJax.isReady</span></tt> to <tt class="docutils literal"><span class="pre">true</span></tt></li>
+<li>Wait for the onload handler to fire</li>
</ol>
<ol class="arabic simple" start="9">
+<li>Set <tt class="docutils literal"><span class="pre">MathJax.isReady</span></tt> to <tt class="docutils literal"><span class="pre">true</span></tt></li>
+</ol>
+<ol class="arabic simple" start="10">
<li>Perform the typesetting pass (preprocessors and processors)<ul>
<li>Post the <tt class="docutils literal"><span class="pre">Begin</span> <span class="pre">Typeset</span></tt> startup signal</li>
<li>Post the <tt class="docutils literal"><span class="pre">Begin</span> <span class="pre">PreProcess</span></tt> hub signal</li>
@@ -179,9 +182,18 @@ with the math element’s ID</li>
</ul>
</li>
</ol>
-<ol class="arabic simple" start="10">
+<ol class="arabic simple" start="11">
<li>Post the <tt class="docutils literal"><span class="pre">End</span></tt> startup signal</li>
</ol>
+<p>The loading of the jax and extensions in steps 5 and 6 are now done in
+parallel, rather than sequentially. That is, all the jax and extensions
+are requested simultaneously, so they load concurrently. That means they
+can load in any order, and that the begin and end signals for the jax and
+extensions can be intermixed. (In general, you will get <cite>Begin Jax</cite>
+followed by <cite>Begin Extensions</cite>, but the order of <cite>End Jax</cite> and <cite>End
+Extensions</cite> will depend on the file sbeing loaded.) Both 5 and 6 must
+complete, however, before 7 will be performed.</p>
+<p>See the <tt class="docutils literal"><span class="pre">test/sample-signals.html</span></tt> file to see the signals in action.</p>
</div>
@@ -196,11 +208,6 @@ with the math element’s ID</li>
<h4>Next topic</h4>
<p class="topless"><a href="synchronize.html"
title="next chapter">Synchronizing your code with MathJax</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/startup.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/synchronize.html b/docs/html/synchronize.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="Using Callbacks" href="callbacks.html" />
<link rel="prev" title="The MathJax Startup Sequence" href="startup.html" />
@@ -81,20 +81,19 @@ synchronize with MathJax, but you can also create your own private
queues for actions that need to be synchronized with each other, but
not to MathJax as a whole. See the <a class="reference internal" href="api/queue.html#api-queue"><em>Queue Object</em></a>
reference page for more details.</p>
-<p><strong>Signals</strong> are another means of synchronizing your own code with
-MathJax. Many of the important actions that MathJax takes (like
-typesetting new math on the page, or loading an external component)
-are “announced” by posting a message to a special object called a
-<cite>Signal</cite>. Your code can register an interest in receiving one or more
-of these signals by providing a callback to be called when the signal
-is posted. When the signal arrives, MathJax will call your code.
-This works somewhat like an event handler, except that many different
-types of events can go through the same signal, and the signals have a
-“memory”, meaning that if you register an interest in a particular
-type of signal and that signal has already occurred, you will be told
-about the past occurrances as well as any future ones. See the
-<a class="reference internal" href="api/signal.html#api-signal"><em>Signal Object</em></a> reference page for more details.
-See also the <tt class="docutils literal"><span class="pre">test/sample-signals.html</span></tt> file in the MathJax <tt class="docutils literal"><span class="pre">test</span></tt>
+<p><strong>Signals</strong> are another means of synchronizing your own code with MathJax.
+Many of the important actions that MathJax takes (like typesetting new math
+on the page, or loading an external component) are “announced” by posting a
+message to a special object called a <cite>Signal</cite>. Your code can register an
+interest in receiving one or more of these signals by providing a callback
+to be called when the signal is posted. When the signal arrives, MathJax
+will call your code. This works somewhat like an event handler, except
+that many different types of events can go through the same signal, and the
+signals have a “memory”, meaning that if you register an interest in a
+particular type of signal and that signal has already occurred, you will be
+told about the past occurrances as well as any future ones. See the
+<a class="reference internal" href="api/signal.html#api-signal"><em>Signal Object</em></a> reference page for more details. See
+also the <tt class="docutils literal"><span class="pre">test/sample-signals.html</span></tt> file in the MathJax <tt class="docutils literal"><span class="pre">test</span></tt>
directory for a working example of using signals.</p>
<p>Each of these is explained in more detail in the links below:</p>
<div class="toctree-wrapper compound">
@@ -118,11 +117,6 @@ directory for a working example of using signals.</p>
<h4>Next topic</h4>
<p class="topless"><a href="callbacks.html"
title="next chapter">Using Callbacks</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/synchronize.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/tex.html b/docs/html/tex.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="MathJax MathML Support" href="mathml.html" />
<link rel="prev" title="Using MathJax in Movable Type" href="platforms/movable-type.html" />
@@ -51,13 +51,13 @@
<div class="section" id="mathjax-tex-and-latex-support">
<span id="tex-support"></span><h1>MathJax TeX and LaTeX Support<a class="headerlink" href="#mathjax-tex-and-latex-support" title="Permalink to this headline">¶</a></h1>
-<p>The support for TeX and LaTeX in MathJax consists of two parts: the
-<cite>tex2jax</cite> preprocessor, and the TeX input processor. The first of
-these looks for mathematics within your web page (indicated by math
-delimiters like <tt class="docutils literal"><span class="pre">$$...$$</span></tt>) and marks the mathematics for later
-processing by MathJax. The TeX input processor is what converts the
-TeX notation into MathJax’s internal format, where one of MathJax’s
-output processors then displays it in the web page.</p>
+<p>The support for <a class="reference internal" href="glossary.html#term-tex"><em class="xref std std-term">TeX</em></a> and <a class="reference internal" href="glossary.html#term-latex"><em class="xref std std-term">LaTeX</em></a> in MathJax consists of two
+parts: the <cite>tex2jax</cite> preprocessor, and the <cite>TeX</cite> input processor. The
+first of these looks for mathematics within your web page (indicated by
+math delimiters like <tt class="docutils literal"><span class="pre">$$...$$</span></tt>) and marks the mathematics for later
+processing by MathJax. The TeX input processor is what converts the TeX
+notation into MathJax’s internal format, where one of MathJax’s output
+processors then displays it in the web page.</p>
<p>The <cite>tex2jax</cite> preprocessor can be configured to look for whatever
markers you want to use for your math delimiters. See the
<a class="reference internal" href="options/tex2jax.html#configure-tex2jax"><em>tex2jax configuration options</em></a> section for
@@ -76,6 +76,40 @@ does not implement <tt class="docutils literal"><span class="pre">\emph</span></
<tt class="docutils literal"><span class="pre">\begin{enumerate}...\end{enumerate}</span></tt> or other text-mode macros or
environments. You must use HTML to handle such formatting tasks. If
you need a LaTeX-to-HTML converter, you should consider <a class="reference external" href="http://www.google.com/search?q=latex+to+html+converter">other options</a>.</p>
+<div class="section" id="tex-and-latex-math-delimiters">
+<h2>TeX and LaTeX math delimiters<a class="headerlink" href="#tex-and-latex-math-delimiters" title="Permalink to this headline">¶</a></h2>
+<p>By default, the <cite>tex2jax</cite> preprocesor defines the LaTeX math delimiters,
+which are <tt class="docutils literal"><span class="pre">\(...\)</span></tt> for in-line math, and <tt class="docutils literal"><span class="pre">\[...\]</span></tt> for displayed
+equations. It also defines the TeX delimiters <tt class="docutils literal"><span class="pre">$$...$$</span></tt> for displayed
+equations, but it does <strong>not</strong> define <tt class="docutils literal"><span class="pre">$...$</span></tt> as in-line math
+delimiters. That is because dollar signs appear too often in
+non-mathematical settings, which could cause some text to be treated
+as mathematics unexpectedly. For example, with single-dollar
+delimiters, ”... the cost is $2.50 for the first one, and $2.00 for
+each additional one ...” would cause the phrase “2.50 for the first
+one, and” to be treated as mathematics since it falls between dollar
+signs. For this reason, if you want to use single-dollars for in-line
+math mode, you must enable that explicitly in your configuration:</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s1">'\\('</span><span class="p">,</span><span class="s1">'\\)'</span><span class="p">]],</span>
+ <span class="nx">processEscapes</span><span class="o">:</span> <span class="kc">true</span>
+ <span class="p">}</span>
+<span class="p">});</span>
+</pre></div>
+</div>
+<p>Note that if you do this, you may want to also set <tt class="docutils literal"><span class="pre">processEscapes</span></tt> to
+<tt class="docutils literal"><span class="pre">true</span></tt>, as in the example above, so that you can use <tt class="docutils literal"><span class="pre">\$</span></tt> to prevent a
+dollar sign from being treated as a math delimiter within the text of your
+web page. (Note that within TeX mathematics, <tt class="docutils literal"><span class="pre">\$</span></tt> always has this
+meaning; <tt class="docutils literal"><span class="pre">processEscapes</span></tt> only affects the treatment of the <em>opening</em>
+math delimiter.)</p>
+<p>See the <tt class="docutils literal"><span class="pre">config/default.js</span></tt> file, or the <a class="reference internal" href="options/tex2jax.html#configure-tex2jax"><em>tex2jax configuration
+options</em></a> page, for additional configuration
+parameters that you can specify for the <cite>tex2jax</cite> preprocessor,
+which is the component of MathJax that identifies TeX notation within
+the page).</p>
+</div>
<div class="section" id="tex-and-latex-in-html-documents">
<h2>TeX and LaTeX in HTML documents<a class="headerlink" href="#tex-and-latex-in-html-documents" title="Permalink to this headline">¶</a></h2>
<p>Keep in mind that your mathematics is part of an HTML document, so you
@@ -123,41 +157,63 @@ does.</p>
<div class="section" id="tex-and-latex-extensions">
<span id="tex-extensions"></span><h2>TeX and LaTeX extensions<a class="headerlink" href="#tex-and-latex-extensions" title="Permalink to this headline">¶</a></h2>
<p>While MathJax includes nearly all of the Plain TeX math macros, and
-many of the LaTeX macros and environments, note everything is
+many of the LaTeX macros and environments, not everything is
implemented in the core TeX input processor. Some less-used commands
are defined in extensions to the TeX processor. MathJax will load
some extensions automatically when you first use the commands they
implement (for example, the <tt class="docutils literal"><span class="pre">\def</span></tt> and <tt class="docutils literal"><span class="pre">\newcommand</span></tt> macros are
-implemented in the <tt class="docutils literal"><span class="pre">TeX/newcommand.js</span></tt> extension, but MathJax loads
+implemented in the <tt class="docutils literal"><span class="pre">newcommand.js</span></tt> extension, but MathJax loads
this extension itself when you use those macros). Not all extensions
are set up to load automatically, however, so you may need to request
some extensions explicitly yourself.</p>
<p>To enable any of the TeX extensions, simply add the appropriate string
-(e.g., <cite>“TeX/AMSmath.js”</cite>) to your config’s <cite>extensions</cite> array. The
-main extensions are described below.</p>
+(e.g., <tt class="docutils literal"><span class="pre">"AMSmath.js"</span></tt>) to the <cite>extensions</cite> array in the <tt class="docutils literal"><span class="pre">TeX</span></tt> block
+of your configuration. If you use one of the combined configuration files,
+like <tt class="docutils literal"><span class="pre">TeX-AMS_HTML</span></tt>, this will already include several of the extensions
+automatically, but you can include others using a mathjax configuration
+script prior to loading MathJax. For example</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span> <span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span> <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"autobold.js"</span><span class="p">]</span> <span class="p">}});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"</span><span class="nt">></span>
+<span class="nt"></script></span>
+</pre></div>
+</div>
+<p>will load the <cite>autobold</cite> TeX extension in addition to those already
+included in the <tt class="docutils literal"><span class="pre">TeX-AMS_HTML</span></tt> configuration file.</p>
+<p>The main extensions are described below.</p>
<div class="section" id="amsmath-and-amssymbol">
<h3>AMSmath and AMSsymbol<a class="headerlink" href="#amsmath-and-amssymbol" title="Permalink to this headline">¶</a></h3>
-<p>The <cite>AMSmath</cite> extension implements AMS math environments and macros,
-and the <cite>AMSsymbol</cite> extension implements macros for accessing the AMS
-symbol fonts. To use these extensions, add them to your <cite>extensions</cite> array.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"TeX/AMSmath.js"</span><span class="p">,</span> <span class="s2">"TeX/AMSsymbol.js"</span><span class="p">,</span> <span class="p">...]</span>
+<p>The <cite>AMSmath</cite> extension implements AMS math environments and macros, and
+the <cite>AMSsymbol</cite> extension implements macros for accessing the AMS symbol
+fonts. These are already included in the combined configuration files that
+load the TeX input processor. To use these extensions in your own
+configurations, add them to the <cite>extensions</cite> array in the TeX block.</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"AMSmath.js"</span><span class="p">,</span> <span class="s2">"AMSsymbol.js"</span><span class="p">,</span> <span class="p">...]</span>
+<span class="p">}</span>
</pre></div>
</div>
-<p>See the list of commands at the end of this document for details about
-what commands are implemented in these extensions.</p>
-<p>The <cite>AMSmath</cite> extension will be loaded automatically when you first
-use one of the math environments it defines, but you will have to load
-it explicitly if you want to use the other macros that it defines.
-The <cite>AMSsymbols</cite> extension is not loaded automatically, so you must
-include it explicitly if you want to use the macros it defines.</p>
+<p>See the list of control sequences at the end of this document for details
+about what commands are implemented in these extensions.</p>
+<p>If you are not using one of the combined configuration files, the <cite>AMSmath</cite>
+extension will be loaded automatically when you first use one of the math
+environments it defines, but you will have to load it explicitly if you
+want to use the other macros that it defines. The <cite>AMSsymbols</cite> extension
+is not loaded automatically, so you must include it explicitly if you want
+to use the macros it defines.</p>
</div>
<div class="section" id="autobold">
<h3>Autobold<a class="headerlink" href="#autobold" title="Permalink to this headline">¶</a></h3>
<p>The <cite>autobold</cite> extension adds <tt class="docutils literal"><span class="pre">\boldsymbol{...}</span></tt> around mathematics that
appears in a section of an HTML page that is in bold.</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"TeX/autobold.js"</span><span class="p">]</span>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"autobold.js"</span><span class="p">]</span>
+<span class="p">}</span>
</pre></div>
</div>
+<p>This extension is <strong>not</strong> loaded by the combined configuration files.</p>
</div>
<div class="section" id="noerrors">
<h3>noErrors<a class="headerlink" href="#noerrors" title="Permalink to this headline">¶</a></h3>
@@ -166,21 +222,24 @@ displayed and shows the original TeX code instead. You can configure
whether the dollar signs are shown or not for in-line math, and
whether to put all the TeX on one line or use multiple lines (if the
original text contained line breaks).</p>
-<p>To enable the <cite>noErrors</cite> extension and configure it, use</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"TeX/noErrors.js"</span><span class="p">,</span> <span class="p">...],</span>
-<span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">noErrors</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">inlineDelimiters</span><span class="o">:</span> <span class="p">[</span><span class="s2">""</span><span class="p">,</span><span class="s2">""</span><span class="p">],</span> <span class="c1">// or ["$","$"] or ["\\(","\\)"]</span>
- <span class="nx">multiLine</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span> <span class="c1">// false for TeX on all one line</span>
- <span class="nx">style</span><span class="o">:</span> <span class="p">{</span>
- <span class="s2">"font-family"</span><span class="o">:</span> <span class="s2">"serif"</span><span class="p">,</span>
- <span class="s2">"font-size"</span><span class="o">:</span> <span class="s2">"80%"</span><span class="p">,</span>
- <span class="s2">"color"</span><span class="o">:</span> <span class="s2">"black"</span><span class="p">,</span>
- <span class="s2">"border"</span><span class="o">:</span> <span class="s2">"1px solid"</span>
- <span class="c1">// add any additional CSS styles that you want</span>
- <span class="c1">// (be sure there is no extra comma at the end of the last item)</span>
- <span class="p">}</span>
+<p>This extension is loaded by all the combined configuration files that
+include the TeX input processor. To enable the <cite>noErrors</cite> extension in
+your own configuration, or to modify its parameters, add something like the
+following to your <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call:</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"noErrors.js"</span><span class="p">],</span>
+ <span class="nx">noErrors</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineDelimiters</span><span class="o">:</span> <span class="p">[</span><span class="s2">""</span><span class="p">,</span><span class="s2">""</span><span class="p">],</span> <span class="c1">// or ["$","$"] or ["\\(","\\)"]</span>
+ <span class="nx">multiLine</span><span class="o">:</span> <span class="kc">true</span><span class="p">,</span> <span class="c1">// false for TeX on all one line</span>
+ <span class="nx">style</span><span class="o">:</span> <span class="p">{</span>
+ <span class="s2">"font-family"</span><span class="o">:</span> <span class="s2">"serif"</span><span class="p">,</span>
+ <span class="s2">"font-size"</span><span class="o">:</span> <span class="s2">"80%"</span><span class="p">,</span>
+ <span class="s2">"color"</span><span class="o">:</span> <span class="s2">"black"</span><span class="p">,</span>
+ <span class="s2">"border"</span><span class="o">:</span> <span class="s2">"1px solid"</span>
+ <span class="c1">// add any additional CSS styles that you want</span>
+ <span class="c1">// (be sure there is no extra comma at the end of the last item)</span>
<span class="p">}</span>
+ <span class="p">}</span>
<span class="p">}</span>
</pre></div>
</div>
@@ -191,14 +250,14 @@ paragraph, like standard display mathematics.</p>
black border. If you want it to look as though the TeX is just part of
the paragraph, use</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">noErrors</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">inlineDelimiters</span><span class="o">:</span> <span class="p">[</span><span class="s2">"$"</span><span class="p">,</span><span class="s2">"$"</span><span class="p">],</span> <span class="c1">// or ["",""] or ["\\(","\\)"]</span>
- <span class="nx">multiLine</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
- <span class="nx">style</span><span class="o">:</span> <span class="p">{</span>
- <span class="s2">"font-size"</span><span class="o">:</span> <span class="s2">"normal"</span><span class="p">,</span>
- <span class="s2">"border"</span><span class="o">:</span> <span class="s2">""</span>
- <span class="p">}</span>
+ <span class="nx">noErrors</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineDelimiters</span><span class="o">:</span> <span class="p">[</span><span class="s2">"$"</span><span class="p">,</span><span class="s2">"$"</span><span class="p">],</span> <span class="c1">// or ["",""] or ["\\(","\\)"]</span>
+ <span class="nx">multiLine</span><span class="o">:</span> <span class="kc">false</span><span class="p">,</span>
+ <span class="nx">style</span><span class="o">:</span> <span class="p">{</span>
+ <span class="s2">"font-size"</span><span class="o">:</span> <span class="s2">"normal"</span><span class="p">,</span>
+ <span class="s2">"border"</span><span class="o">:</span> <span class="s2">""</span>
<span class="p">}</span>
+ <span class="p">}</span>
<span class="p">}</span>
</pre></div>
</div>
@@ -207,25 +266,28 @@ the paragraph, use</p>
<div class="section" id="noundefined">
<h3>noUndefined<a class="headerlink" href="#noundefined" title="Permalink to this headline">¶</a></h3>
<p>The <cite>noUndefined</cite> extension causes undefined control sequences to be
-shown as their macro names rather than produce an error message. So
+shown as their macro names rather than generating error messages. So
<tt class="docutils literal"><span class="pre">$X_{\xxx}$</span></tt> would display as an “X” with a subscript consiting of the
text <tt class="docutils literal"><span class="pre">\xxx</span></tt> in red.</p>
-<p>To enable and configure this extension, use for example</p>
-<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"TeX/noUndefined.js"</span><span class="p">,</span> <span class="p">...],</span>
-<span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">noUndefined</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">attributes</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">mathcolor</span><span class="o">:</span> <span class="s2">"red"</span><span class="p">,</span>
- <span class="nx">mathbackground</span><span class="o">:</span> <span class="s2">"#FFEEEE"</span><span class="p">,</span>
- <span class="nx">mathsize</span><span class="o">:</span> <span class="s2">"90%"</span>
- <span class="p">}</span>
+<p>This extension is loaded by all the combined configuration files that
+include the TeX input processor. To enable the <cite>noUndefined</cite> extension
+in your own configuration, or to modify its parameters, add something like
+the following ro your <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call:</p>
+<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"noUndefined.js"</span><span class="p">],</span>
+ <span class="nx">noUndefined</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">attributes</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">mathcolor</span><span class="o">:</span> <span class="s2">"red"</span><span class="p">,</span>
+ <span class="nx">mathbackground</span><span class="o">:</span> <span class="s2">"#FFEEEE"</span><span class="p">,</span>
+ <span class="nx">mathsize</span><span class="o">:</span> <span class="s2">"90%"</span>
<span class="p">}</span>
- <span class="p">}</span>
+ <span class="p">}</span>
+<span class="p">}</span>
</pre></div>
</div>
<p>The <tt class="docutils literal"><span class="pre">attributes</span></tt> setting specifies attributes to apply to the
<tt class="docutils literal"><span class="pre">mtext</span></tt> element that encodes the name of the undefined macro. The
-default settings set <tt class="docutils literal"><span class="pre">mathcolor</span></tt> to <tt class="docutils literal"><span class="pre">"red"</span></tt>, but do not set any
+default values set <tt class="docutils literal"><span class="pre">mathcolor</span></tt> to <tt class="docutils literal"><span class="pre">"red"</span></tt>, but do not set any
other attributes. This example sets the background to a light pink,
and reduces the font size slightly.</p>
</div>
@@ -264,9 +326,9 @@ in <cite>STIXGeneral</cite>), otherwise MathJax tries <cite>Arial Unicode MS</ci
<tt class="docutils literal"><span class="pre">\unicode{}</span></tt> macro, so you do not need to add it to the <cite>extensions</cite>
array. You can configure the extension as follows:</p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">unicode</span><span class="o">:</span> <span class="p">{</span>
- <span class="nx">fonts</span><span class="o">:</span> <span class="s2">"STIXGeneral, 'Arial Unicode MS'"</span>
- <span class="p">}</span>
+ <span class="nx">unicode</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">fonts</span><span class="o">:</span> <span class="s2">"STIXGeneral, 'Arial Unicode MS'"</span>
+ <span class="p">}</span>
<span class="p">}</span>
</pre></div>
</div>
@@ -937,6 +999,7 @@ S
<span class="k">\subset</span>
<span class="k">\subseteq</span>
<span class="k">\subseteqq</span> AMSsymbols
+<span class="k">\subsetneq</span> AMSsymbols
<span class="k">\substack</span> AMSmath
<span class="k">\succ</span>
<span class="k">\succapprox</span> AMSsymbols
@@ -952,6 +1015,7 @@ S
<span class="k">\supset</span>
<span class="k">\supseteq</span>
<span class="k">\supseteqq</span> AMSsymbols
+<span class="k">\supsetneq</span> AMSsymbols
<span class="k">\surd</span>
<span class="k">\swarrow</span>
@@ -1089,6 +1153,7 @@ Z
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">MathJax TeX and LaTeX Support</a><ul>
+<li><a class="reference internal" href="#tex-and-latex-math-delimiters">TeX and LaTeX math delimiters</a></li>
<li><a class="reference internal" href="#tex-and-latex-in-html-documents">TeX and LaTeX in HTML documents</a></li>
<li><a class="reference internal" href="#tex-and-latex-extensions">TeX and LaTeX extensions</a><ul>
<li><a class="reference internal" href="#amsmath-and-amssymbol">AMSmath and AMSsymbol</a></li>
@@ -1109,11 +1174,6 @@ Z
<h4>Next topic</h4>
<p class="topless"><a href="mathml.html"
title="next chapter">MathJax MathML Support</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/tex.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/typeset.html b/docs/html/typeset.html
@@ -21,7 +21,7 @@
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
- <script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
<link rel="top" title="MathJax v1.1 documentation" href="index.html" />
<link rel="next" title="The MathJax API" href="api/index.html" />
<link rel="prev" title="Loading MathJax Dynamically" href="dynamic.html" />
@@ -198,18 +198,22 @@ queue. If your startup code performs the commands</p>
</div>
<p>to change the student’s answer to be the typeset version of whatever
is in the <tt class="docutils literal"><span class="pre">studentAnswer</span></tt> variable.</p>
-<p>Here is a complete example that illustrates this approach</p>
+<p>Here is a complete example that illustrates this approach (available in a
+more full-featured version as <tt class="docutils literal"><span class="pre">test/sample-dynamic.html</span></tt>):</p>
<div class="highlight-html"><div class="highlight"><pre><span class="nt"><html></span>
<span class="nt"><head></span>
<span class="nt"><title></span>MathJax Dynamic Math Test Page<span class="nt"></title></span>
-<span class="nt"><script </span><span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
<span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
- <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">],</span>
- <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
- <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span><span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[[</span><span class="s2">"$"</span><span class="p">,</span><span class="s2">"$"</span><span class="p">],[</span><span class="s2">"\\("</span><span class="p">,</span><span class="s2">"\\)"</span><span class="p">]]}</span>
+ <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[[</span><span class="s2">"$"</span><span class="p">,</span><span class="s2">"$"</span><span class="p">],[</span><span class="s2">"\\("</span><span class="p">,</span><span class="s2">"\\)"</span><span class="p">]]</span>
+ <span class="p">}</span>
<span class="p">});</span>
<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML-full"</span><span class="nt">></span>
+<span class="nt"></script></span>
<span class="nt"></head></span>
<span class="nt"><body></span>
@@ -275,11 +279,6 @@ You typed: ${}$
<h4>Next topic</h4>
<p class="topless"><a href="api/index.html"
title="next chapter">The MathJax API</a></p>
- <h3>This Page</h3>
- <ul class="this-page-menu">
- <li><a href="_sources/typeset.txt"
- rel="nofollow">Show Source</a></li>
- </ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
diff --git a/docs/html/upgrade.html b/docs/html/upgrade.html
@@ -0,0 +1,306 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <title>Migrating from MathJax v1.0 to v1.1 — MathJax v1.1 documentation</title>
+ <link rel="stylesheet" href="_static/mj.css" type="text/css" />
+ <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
+ <script type="text/javascript">
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: '',
+ VERSION: '1.1',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ </script>
+ <script type="text/javascript" src="_static/jquery.js"></script>
+ <script type="text/javascript" src="_static/underscore.js"></script>
+ <script type="text/javascript" src="_static/doctools.js"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
+ <link rel="top" title="MathJax v1.1 documentation" href="index.html" />
+ <link rel="next" title="Converting to MathJax from jsMath" href="jsMath.html" />
+ <link rel="prev" title="What’s New in MathJax v1.1" href="whats-new.html" />
+ </head>
+ <body>
+
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="genindex.html" title="General Index"
+ accesskey="I">index</a></li>
+ <li class="right" >
+ <a href="jsMath.html" title="Converting to MathJax from jsMath"
+ accesskey="N">next</a> |</li>
+ <li class="right" >
+ <a href="whats-new.html" title="What’s New in MathJax v1.1"
+ accesskey="P">previous</a> |</li>
+ <li><a href="index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+
+ <div class="document">
+ <div class="documentwrapper">
+ <div class="bodywrapper">
+ <div class="body">
+
+ <div class="section" id="migrating-from-mathjax-v1-0-to-v1-1">
+<span id="upgrade"></span><h1>Migrating from MathJax v1.0 to v1.1<a class="headerlink" href="#migrating-from-mathjax-v1-0-to-v1-1" title="Permalink to this headline">¶</a></h1>
+<p>MathJax v1.1 fixes a number of bugs in v1.0, and improves support for
+new versions of browsers and mobile devices. It includes changes to
+increase its performance, and to make it more compliant with HTML5. It
+has more flexible configuration options, and the ability to load
+configuration files that combine multiple files into a single one to
+increase loading speed when MathJax starts up. Finally, MathJax.org now
+offers MathJax as a web service through a distributed “cloud” server.</p>
+<p>This document describes the changes you may need to make to your MathJax
+configurations in order to take advantage of these improvements.</p>
+<div class="section" id="configuration-changes">
+<h2>Configuration Changes<a class="headerlink" href="#configuration-changes" title="Permalink to this headline">¶</a></h2>
+<p>The main changes that you will see as a page author are in the way that
+MathJax can be loaded and configured. If you have been using in-line
+configuration by putting a <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call in the body of
+the <tt class="docutils literal"><span class="pre"><script></span></tt> tag that loads MathJax, then your site should work
+unchanged with version 1.1 of MathJax. You may wish to consider moving to
+the new HTML5-compliant method of configuring MathJax, however, which uses
+a separate <tt class="docutils literal"><span class="pre"><script></span></tt> tag to specify the configuration. That tag should
+come <strong>before</strong> the one that loads <tt class="docutils literal"><span class="pre">Mathjax.js</span></tt>, and should have
+<tt class="docutils literal"><span class="pre">type="text/x-mathjax-config"</span></tt> rather than <tt class="docutils literal"><span class="pre">type="text/javascript"</span></tt>.
+For example,</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">]</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+</pre></div>
+</div>
+<p>would become</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">]</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>instead. This will make sure your pages pass HTML5 validation. Be sure
+that you put the configuration block <strong>before</strong> the script that loads
+MathJax. See <a class="reference internal" href="configuration.html#loading"><em>Loading and Configuring MathJax</em></a> for more
+details.</p>
+<p>If your page simply loads <tt class="docutils literal"><span class="pre">MathJax.js</span></tt> and relies on
+<tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt>, then you will need to modify your <tt class="docutils literal"><span class="pre"><script></span></tt> tag
+in order to use MathJax v1.1. This is because MathJax no longer loads a
+default configuration file; you are required to explicity specify the
+configuration file if you use one. Furthermore, the name of the
+<tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file was a source of confusion, so it has been
+renamed <tt class="docutils literal"><span class="pre">config/default.js</span></tt> instead. Thus, if you used</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>in the past, you should replace it with</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js?config=default"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>instead. If you don’t do this, you will receive a warning message that
+directs you to a page that explains how to update your script tags to use
+the new configuration format.</p>
+</div>
+<div class="section" id="combined-configurations">
+<h2>Combined Configurations<a class="headerlink" href="#combined-configurations" title="Permalink to this headline">¶</a></h2>
+<p>New with version 1.1 is the ability to combine several files into a single
+configuration file, and to load that via the same script that loads
+MathJax. This should make configuring MathJax easier, and also helps to
+speed up the initial loading of MathJax’s components, since only one file
+needs to be downloaded.</p>
+<p>MathJax comes with four pre-built configurations, and our hope is that one
+of these will suit your needs. They are described in more detail in the
+<a class="reference internal" href="configuration.html#config-files"><em>Using a Configuration File</em></a> section. To load one,
+add <tt class="docutils literal"><span class="pre">?config=filename</span></tt> (where <tt class="docutils literal"><span class="pre">filename</span></tt> is the name of the
+configuration file without the <tt class="docutils literal"><span class="pre">.js</span></tt>) to the URL that loads
+<tt class="docutils literal"><span class="pre">MathJax.js</span></tt>. For example</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">,</span><span class="s2">"AMSmath.js"</span><span class="p">,</span><span class="s2">"AMSsymbols.js"</span><span class="p">]</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+</pre></div>
+</div>
+<p>could be replaced by the single line</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js?config=TeX-AMS_HTML"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>In this way, you don’t have to include the in-line configuration, and all
+the needed files will be downloaded when MathJax starts up. For complete
+details about the contents of the combined configuration files, see the
+<a class="reference internal" href="config-files.html#common-configurations"><em>Common Configurations</em></a> section.</p>
+<p>If you want to use a pre-defined configuration file, but want to modify some
+of the configuration parameters, you can use both a
+<tt class="docutils literal"><span class="pre">text/x-mathjax-config</span></tt> block and a <tt class="docutils literal"><span class="pre">config=filename</span></tt> parameter in
+combination. For example,</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">TeX</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s1">'\\('</span><span class="p">,</span><span class="s1">'\\)'</span><span class="p">]</span> <span class="p">],</span>
+ <span class="nx">processEscapes</span><span class="o">:</span> <span class="kc">true</span>
+ <span class="p">}</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js?config=TeX-AMS_HTML"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>would load the <tt class="docutils literal"><span class="pre">TeX-AMS_HTML</span></tt> configuration file, but would reconfigure
+the inline math delimiters to include <tt class="docutils literal"><span class="pre">$...$</span></tt> in addition to
+<tt class="docutils literal"><span class="pre">\(...\)</span></tt>, and would set the <tt class="docutils literal"><span class="pre">processEscapes</span></tt> parameter to <tt class="docutils literal"><span class="pre">true</span></tt>.</p>
+</div>
+<div class="section" id="loading-mathjax-from-the-cdn">
+<h2>Loading MathJax from the CDN<a class="headerlink" href="#loading-mathjax-from-the-cdn" title="Permalink to this headline">¶</a></h2>
+<p>The MathJax installation is fairly substantial (due to the large number of
+images needed for the image fonts), and so you may not want to (or be able
+to) store MathJax on your own server. Keeping MathJax up to date can also
+be a maintenance problem, and you might prefer to let others handle that
+for you. In either case, using the MathJax distributed network service may be
+the best way for you to obtain MathJax. That way you can be sure you are
+using an up-to-date version of MathJax, and that the server will be fast
+and reliable.</p>
+<p>To use the MathJax CDN service, simply load MathJax as follows:</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span>
+ <span class="na">src=</span><span class="s">"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"</span><span class="nt">></span>
+<span class="nt"></scrip></span>
+</pre></div>
+</div>
+<p>Of course, you can load any configuration file that you wish, or use a
+<tt class="docutils literal"><span class="pre">text/x=mathajx-config</span></tt> block to configure MathJax in-line.
+<a class="reference internal" href="configuration.html#loading-cdn"><em>More details</em></a> are available, if you need them.</p>
+<p>The use of <tt class="docutils literal"><span class="pre">cdn.mathjax.org</span></tt> is governed by its <a class="reference external" href="http://www.mathjax.org/download/mathjax-cdn-terms-of-service/">terms of service</a>, so be
+sure to read that before linked to the MathJax CDN server.</p>
+</div>
+<div class="section" id="change-in-default-tex-delimiters">
+<h2>Change in default TeX delimiters<a class="headerlink" href="#change-in-default-tex-delimiters" title="Permalink to this headline">¶</a></h2>
+<p>In addition to the fact that MathJax v1.1 no longer loads a default
+configuration file, there is a second configuration change that could
+affect your pages. The <tt class="docutils literal"><span class="pre">config/MathJax.js</span></tt> file properly configured the
+<cite>tex2jax</cite> preprocessor to use only <tt class="docutils literal"><span class="pre">\(...\)</span></tt> and not <tt class="docutils literal"><span class="pre">$...$</span></tt> for in-line
+math delimiters, but the <cite>tex2jax</cite> preprocessor itself incorrectly
+defaulted to including <tt class="docutils literal"><span class="pre">$...$</span></tt> as in-line math delimiters. The result
+was that if you used in-line configuration to specify the <tt class="docutils literal"><span class="pre">tex2jax</span></tt>
+preprocessor, single-dollar delimiters were enabled by default, while if
+you used file-based configuration, they weren’t.</p>
+<p>This inconsistency was an error, and the correct behavior was supposed to
+have the single-dollar delimiters disabled in both cases. This is now
+true in v1.1 of MathJax. This means that if you used in-line
+configuration to specify the <cite>tex2jax</cite> preprocessor, you will need to
+change your configuration to explicitly enable the single-dollar
+delimiters if you want to use them.</p>
+<p>For example, if you had</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">]</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+</pre></div>
+</div>
+<p>and you want to use single-dollar delimiters for in-line math, then you
+should replace this with</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">jax</span><span class="o">:</span> <span class="p">[</span><span class="s2">"input/TeX"</span><span class="p">,</span><span class="s2">"output/HTML-CSS"</span><span class="p">],</span>
+ <span class="nx">extensions</span><span class="o">:</span> <span class="p">[</span><span class="s2">"tex2jax.js"</span><span class="p">],</span>
+ <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s1">'\\('</span><span class="p">,</span><span class="s1">'\\)'</span><span class="p">]</span> <span class="p">],</span>
+ <span class="nx">processEscapes</span><span class="o">:</span> <span class="kc">true</span>
+ <span class="p">}</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>The same technique can be used in conjunction with a combined
+configuration file. For example</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
+ <span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+ <span class="nx">tex2jax</span><span class="o">:</span> <span class="p">{</span>
+ <span class="nx">inlineMath</span><span class="o">:</span> <span class="p">[</span> <span class="p">[</span><span class="s1">'$'</span><span class="p">,</span><span class="s1">'$'</span><span class="p">],</span> <span class="p">[</span><span class="s1">'\\('</span><span class="p">,</span><span class="s1">'\\)'</span><span class="p">]</span> <span class="p">],</span>
+ <span class="nx">processEscapes</span><span class="o">:</span> <span class="kc">true</span>
+ <span class="p">}</span>
+ <span class="p">});</span>
+<span class="nt"></script></span>
+<span class="nt"><script </span><span class="na">type=</span><span class="s">"text/javascript"</span> <span class="na">src=</span><span class="s">"/MathJax/MathJax.js?config=TeX-AMS_HTML"</span><span class="nt">></script></span>
+</pre></div>
+</div>
+<p>will load the pre-defined <tt class="docutils literal"><span class="pre">TeX-AMS_HTML</span></tt> configuration, but will modify
+the settings to allow <tt class="docutils literal"><span class="pre">$...$</span></tt> delimiters, and to process <tt class="docutils literal"><span class="pre">\$</span></tt> to
+produce dollar signs within the text of the page.</p>
+</div>
+</div>
+
+
+ </div>
+ </div>
+ </div>
+ <div class="sphinxsidebar">
+ <div class="sphinxsidebarwrapper">
+ <h3><a href="index.html">Table Of Contents</a></h3>
+ <ul>
+<li><a class="reference internal" href="#">Migrating from MathJax v1.0 to v1.1</a><ul>
+<li><a class="reference internal" href="#configuration-changes">Configuration Changes</a></li>
+<li><a class="reference internal" href="#combined-configurations">Combined Configurations</a></li>
+<li><a class="reference internal" href="#loading-mathjax-from-the-cdn">Loading MathJax from the CDN</a></li>
+<li><a class="reference internal" href="#change-in-default-tex-delimiters">Change in default TeX delimiters</a></li>
+</ul>
+</li>
+</ul>
+
+ <h4>Previous topic</h4>
+ <p class="topless"><a href="whats-new.html"
+ title="previous chapter">What’s New in MathJax v1.1</a></p>
+ <h4>Next topic</h4>
+ <p class="topless"><a href="jsMath.html"
+ title="next chapter">Converting to MathJax from jsMath</a></p>
+<div id="searchbox" style="display: none">
+ <h3>Quick search</h3>
+ <form class="search" action="search.html" method="get">
+ <input type="text" name="q" size="18" />
+ <input type="submit" value="Go" />
+ <input type="hidden" name="check_keywords" value="yes" />
+ <input type="hidden" name="area" value="default" />
+ </form>
+ <p class="searchtip" style="font-size: 90%">
+ Enter search terms or a module, class or function name.
+ </p>
+</div>
+<script type="text/javascript">$('#searchbox').show(0);</script>
+ </div>
+ </div>
+ <div class="clearer"></div>
+ </div>
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="genindex.html" title="General Index"
+ >index</a></li>
+ <li class="right" >
+ <a href="jsMath.html" title="Converting to MathJax from jsMath"
+ >next</a> |</li>
+ <li class="right" >
+ <a href="whats-new.html" title="What’s New in MathJax v1.1"
+ >previous</a> |</li>
+ <li><a href="index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+ <div class="footer">
+ © Copyright 2011 Design Science.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.7.
+ </div>
+
+ </body>
+</html>
+\ No newline at end of file
diff --git a/docs/html/whats-new.html b/docs/html/whats-new.html
@@ -0,0 +1,264 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+ <title>What’s New in MathJax v1.1 — MathJax v1.1 documentation</title>
+ <link rel="stylesheet" href="_static/mj.css" type="text/css" />
+ <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
+ <script type="text/javascript">
+ var DOCUMENTATION_OPTIONS = {
+ URL_ROOT: '',
+ VERSION: '1.1',
+ COLLAPSE_INDEX: false,
+ FILE_SUFFIX: '.html',
+ HAS_SOURCE: true
+ };
+ </script>
+ <script type="text/javascript" src="_static/jquery.js"></script>
+ <script type="text/javascript" src="_static/underscore.js"></script>
+ <script type="text/javascript" src="_static/doctools.js"></script>
+ <!--<script type="text/javascript" src="../../MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>-->
+ <link rel="top" title="MathJax v1.1 documentation" href="index.html" />
+ <link rel="next" title="Migrating from MathJax v1.0 to v1.1" href="upgrade.html" />
+ <link rel="prev" title="The MathJax Community" href="community.html" />
+ </head>
+ <body>
+
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="genindex.html" title="General Index"
+ accesskey="I">index</a></li>
+ <li class="right" >
+ <a href="upgrade.html" title="Migrating from MathJax v1.0 to v1.1"
+ accesskey="N">next</a> |</li>
+ <li class="right" >
+ <a href="community.html" title="The MathJax Community"
+ accesskey="P">previous</a> |</li>
+ <li><a href="index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+
+ <div class="document">
+ <div class="documentwrapper">
+ <div class="bodywrapper">
+ <div class="body">
+
+ <div class="section" id="what-s-new-in-mathjax-v1-1">
+<span id="whats-new"></span><h1>What’s New in MathJax v1.1<a class="headerlink" href="#what-s-new-in-mathjax-v1-1" title="Permalink to this headline">¶</a></h1>
+<p>MathJax version 1.1 includes a number of important improvements and
+enhancements over version 1.0. We have worked hard to fix bugs, improve
+support for browsers and mobile devices, supprot TeX and MathML better, and
+increase MathJax’s performance.</p>
+<p>In addition to these changes, MathJax.org now offers MathJax as a network
+service. Instead of having to install MathJax on your own server, you can
+link to our content delivery network (CDN) to get fast access to
+up-to-date and past versions of MathJax. See <a class="reference internal" href="configuration.html#loading-cdn"><em>Loading MathJax from
+the CDN</em></a> for more details.</p>
+<p>The following sections outline the changes in v1.1:</p>
+<div class="section" id="optimization">
+<h2>Optimization<a class="headerlink" href="#optimization" title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Combined configuraiton files that load all the needed files in one piece
+rather than loading them individually. This simplifies configuration
+and speeds up typsetting of the mathematics on the page.</li>
+<li>Improved responsiveness to mouse events during typesetting.</li>
+<li>Parallel downloading of files needed by MathJax, for faster startup
+times.</li>
+<li>Shorter timeout for web fonts, so if they can’t be downlaoded, you don’t
+have to wait so long.</li>
+<li>Rollover to image fonts if a web font fails to load (so you don’t have
+to wait for <em>every</em> font to fail.</li>
+<li>The MathJax files are now packed only with <cite>yuicompressor</cite> rather than a
+custom compressor. The CDN serves gzipped versions, which compressed
+better than the gzipped custom-packed files.</li>
+<li>Improved rendering speed in IE by removing <tt class="docutils literal"><span class="pre">position:relative</span></tt> from
+the style for mathematics.</li>
+<li>Improve rendering speed for most browsers by isolating the mathematics
+from page during typesetting (avoids full page reflows).</li>
+</ul>
+</div>
+<div class="section" id="enhancements">
+<h2>Enhancements<a class="headerlink" href="#enhancements" title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Allow the input and output jax configuration blocks to specify extensions
+to be loaded when the jax is loaded (this avoids needing to load them up
+front, so they don’t have to be loaded on pages that don’t include
+mathematics, for example).</li>
+<li>Better handling of background color from style attributes.</li>
+<li>Ability to pass configuration parameters via script URL.</li>
+<li>Support HTML5 compliant configuration syntax.</li>
+<li>Switch the Git repository from storing the fonts in <cite>fonts.zip</cite> to
+storing the <cite>fonts/</cite> directory directly.</li>
+<li>Improved About box.</li>
+<li>add a minimum scaling factor (so math won’t get too small)</li>
+</ul>
+</div>
+<div class="section" id="tex-support">
+<h2>TeX Support<a class="headerlink" href="#tex-support" title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Added support for <tt class="docutils literal"><span class="pre">\href</span></tt>, <tt class="docutils literal"><span class="pre">\style</span></tt>, <tt class="docutils literal"><span class="pre">\class</span></tt>, <tt class="docutils literal"><span class="pre">\cssId</span></tt>.</li>
+<li>Avoid recursive macro definitions and other resource consumption possibilities.</li>
+<li>Fix for <tt class="docutils literal"><span class="pre">\underline</span></tt> bug.</li>
+<li>Fix for bug with <tt class="docutils literal"><span class="pre">\fbox</span></tt>.</li>
+<li>Fix height problem with <tt class="docutils literal"><span class="pre">\raise</span></tt> and <tt class="docutils literal"><span class="pre">\lower</span></tt>.</li>
+<li>Fix problem with <tt class="docutils literal"><span class="pre">\over</span></tt> used inside array entries.</li>
+<li>Fix problem with nesting of math delimiters inside text-mode material.</li>
+<li>Fix single digit super- and subscripts followed by punctuation.</li>
+<li>Make sure <cite>movablelimits</cite> is off for <tt class="docutils literal"><span class="pre">\underline</span></tt> and related macros.</li>
+<li>Fix problem with dimensions given with <tt class="docutils literal"><span class="pre">pc</span></tt> units.</li>
+</ul>
+</div>
+<div class="section" id="mathml-support">
+<h2>MathML Support<a class="headerlink" href="#mathml-support" title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Fix <tt class="docutils literal"><span class="pre">&lt;</span></tt> and <tt class="docutils literal"><span class="pre">&amp;</span></tt> being translated too early.</li>
+<li>Handle self-closing tags in HTML files better.</li>
+<li>Combine adjacent relational operators in <tt class="docutils literal"><span class="pre"><mo></span></tt> tags.</li>
+<li>Fix entity name problems.</li>
+<li>Better support for MathML namespaces.</li>
+<li>Properly handle comments within MathML in IE.</li>
+<li>Properly consider <tt class="docutils literal"><span class="pre"><mspace></span></tt> and <tt class="docutils literal"><span class="pre"><mtext></span></tt> as space-like.</li>
+<li>Improved support for <tt class="docutils literal"><span class="pre"><maction></span></tt> with embelished operators.</li>
+</ul>
+</div>
+<div class="section" id="other-bug-fixes">
+<h2>Other Bug Fixes<a class="headerlink" href="#other-bug-fixes" title="Permalink to this headline">¶</a></h2>
+<ul class="simple">
+<li>Fixed CSS bleed through with zoom and other situations.</li>
+<li>Fixed problems with <tt class="docutils literal"><span class="pre">showMathMenuMSIE</span></tt> when set to <tt class="docutils literal"><span class="pre">false</span></tt>.</li>
+<li>Replaced illegal prefix characters in cookie name.</li>
+<li>Improve placement of surd for square roots and n-th roots.</li>
+<li>Fixed layer obscuring math from MathPlayer for screen readers.</li>
+<li>Newlines in CDATA comments are now handled properly.</li>
+<li>Resolved conflict between <cite>jsMath2jax</cite> and <cite>tex2jax</cite> both processing the
+same equation.</li>
+<li>Fixed problem with <tt class="docutils literal"><span class="pre">class="tex2jax_ignore"</span></tt> affecting the processing of
+sibling elements.</li>
+</ul>
+</div>
+<div class="section" id="browser-support">
+<h2>Browser Support<a class="headerlink" href="#browser-support" title="Permalink to this headline">¶</a></h2>
+<p><strong>Android</strong></p>
+<ul class="simple">
+<li>Added detection and configuration for Android browser.</li>
+<li>Allow use of OTF web fonts in Android 2.2.</li>
+</ul>
+<p><strong>Blackberry</strong></p>
+<ul class="simple">
+<li>MathJax now works with OS version 6.</li>
+</ul>
+<p><strong>Chrome</strong></p>
+<ul class="simple">
+<li>Use OTF web fonts rather than SVG fonts for version 4 and above.</li>
+</ul>
+<p><strong>Firefox</strong></p>
+<ul class="simple">
+<li>Added Firefox 4 detection and configuration.</li>
+<li>Fix for extra line-break bug when displayed equations are in
+preformatted text.</li>
+<li>Update fonts so that FF 3.6.13 and above can read them.</li>
+</ul>
+<p><strong>Internet Explorer</strong></p>
+<ul class="simple">
+<li>Changes for compatibility with IE9.</li>
+<li>Fix for IE8 incorrectly parsing MathML.</li>
+<li>Fix for IE8 namespace problem.</li>
+<li>Fix for null <tt class="docutils literal"><span class="pre">parentNode</span></tt> problem.</li>
+<li>Fix for <tt class="docutils literal"><span class="pre">outerHTML</span></tt> not quoting values of attributes.</li>
+</ul>
+<p><strong>iPhone/iPad</strong></p>
+<ul class="simple">
+<li>Add support for OTF web fonts in iOS4.2.</li>
+</ul>
+<p><strong>Nokia</strong></p>
+<ul class="simple">
+<li>MathJax now works with Symbian<sup>3</sup>.</li>
+</ul>
+<p><strong>Opera</strong></p>
+<ul class="simple">
+<li>Prevent Opera from using STIX fonts unless explicitly requested via the
+font menu (since Opera can’t display many of the characters).</li>
+<li>Fix for bad em-size detection in 10.61.</li>
+<li>Fixed a problem with the About dialog in Opera 11.</li>
+</ul>
+<p><strong>Safari</strong></p>
+<ul class="simple">
+<li>Use OTF web fonts for Safari/PC.</li>
+</ul>
+<p><strong>WebKit</strong></p>
+<ul class="simple">
+<li>Better version detection.</li>
+</ul>
+</div>
+</div>
+
+
+ </div>
+ </div>
+ </div>
+ <div class="sphinxsidebar">
+ <div class="sphinxsidebarwrapper">
+ <h3><a href="index.html">Table Of Contents</a></h3>
+ <ul>
+<li><a class="reference internal" href="#">What’s New in MathJax v1.1</a><ul>
+<li><a class="reference internal" href="#optimization">Optimization</a></li>
+<li><a class="reference internal" href="#enhancements">Enhancements</a></li>
+<li><a class="reference internal" href="#tex-support">TeX Support</a></li>
+<li><a class="reference internal" href="#mathml-support">MathML Support</a></li>
+<li><a class="reference internal" href="#other-bug-fixes">Other Bug Fixes</a></li>
+<li><a class="reference internal" href="#browser-support">Browser Support</a></li>
+</ul>
+</li>
+</ul>
+
+ <h4>Previous topic</h4>
+ <p class="topless"><a href="community.html"
+ title="previous chapter">The MathJax Community</a></p>
+ <h4>Next topic</h4>
+ <p class="topless"><a href="upgrade.html"
+ title="next chapter">Migrating from MathJax v1.0 to v1.1</a></p>
+<div id="searchbox" style="display: none">
+ <h3>Quick search</h3>
+ <form class="search" action="search.html" method="get">
+ <input type="text" name="q" size="18" />
+ <input type="submit" value="Go" />
+ <input type="hidden" name="check_keywords" value="yes" />
+ <input type="hidden" name="area" value="default" />
+ </form>
+ <p class="searchtip" style="font-size: 90%">
+ Enter search terms or a module, class or function name.
+ </p>
+</div>
+<script type="text/javascript">$('#searchbox').show(0);</script>
+ </div>
+ </div>
+ <div class="clearer"></div>
+ </div>
+ <div class="related">
+ <h3>Navigation</h3>
+ <ul>
+ <li class="right" style="margin-right: 10px">
+ <a href="genindex.html" title="General Index"
+ >index</a></li>
+ <li class="right" >
+ <a href="upgrade.html" title="Migrating from MathJax v1.0 to v1.1"
+ >next</a> |</li>
+ <li class="right" >
+ <a href="community.html" title="The MathJax Community"
+ >previous</a> |</li>
+ <li><a href="index.html">MathJax v1.1 documentation</a> »</li>
+ </ul>
+ </div>
+ <div class="footer">
+ © Copyright 2011 Design Science.
+ Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.7.
+ </div>
+
+ </body>
+</html>
+\ No newline at end of file