commit f46cc5c6b4747afa1bfe0621abf28c320c2e93ce
parent 4d9007ca9e1ea69b4d05cf0e6fbfbfde1ee425bf
Author: Davide P. Cervone <dpvc@union.edu>
Date: Fri, 18 Mar 2011 18:54:00 -0400
Update documentation to reflect new situation for element(s) parameters
Diffstat:
16 files changed, 139 insertions(+), 151 deletions(-)
diff --git a/docs/html/_sources/api/hub.txt b/docs/html/_sources/api/hub.txt
@@ -187,24 +187,26 @@ Methods
.. Method:: Typeset([element[,callback]])
- Calls the preprocessors on the given element, and then typesets
- any math elements within the element. If no `element` is
- provided, the whole document is processed. The `element` is
- either the DOM `id` of the element, or a reference to the DOM
- element itself. The `callback` is called when the process is
- complete. See the :ref:`Modifying Math <typeset-math>` section
- for details of how to use this method properly.
+ Calls the preprocessors on the given element (or elements if it is an
+ array of elements), and then typesets any math elements within the
+ element. If no `element` is provided, the whole document is processed.
+ The `element` is either the DOM `id` of the element, a reference to
+ the DOM element itself, or an array of id's or refereneces. The
+ `callback` is called when the process is complete. See the
+ :ref:`Modifying Math <typeset-math>` section for details of how to use
+ this method properly.
:Parameters:
- - **element** --- the element whose math is to be typeset
+ - **element** --- the element(s) whose math is to be typeset
- **callback** --- the callback specification
:Returns: the callback object
.. method:: PreProcess([element[,callback]])
- Calls the loaded preprocessors on the entire document, or on the
- given DOM element. The `element` is either the DOM `id` of the
- element, or a reference to the DOM element itself. The `callback`
+ Calls the loaded preprocessors on the entire document, or on the given
+ DOM element (or elements, if it is an array of elements). The
+ `element` is either the DOM `id` of the element, a reference to the
+ DOM element itself, or an array of id's or references. The `callback`
is called when the processing is complete.
:Parameters:
@@ -214,43 +216,44 @@ Methods
.. method:: Process([element[,callback]])
- Scans either the entire document or a given DOM `element` for
- MathJax ``<script>`` tags and processes the math those tags
- contain. The `element` is either the DOM `id` of the element to
- scan, or a reference to the DOM element itself. The `callback` is
- called when the processing is complete.
+ Scans either the entire document or a given DOM `element` (or array of
+ elements) for MathJax ``<script>`` tags and processes the math those
+ tags contain. The `element` is either the DOM `id` of the element to
+ scan, a reference to the DOM element itself, or an array of id's or
+ references. The `callback` is called when the processing is complete.
:Parameters:
- - **element** --- the element to be processed
+ - **element** --- the element(s) to be processed
- **callback** --- the callback specification
:Returns: the callback object
.. method:: Update([element[,callback]])
- Scans either the entire document or a given DOM element for
- mathematics that has changed since the last time it was processed,
- or is new, and typesets the mathematics they contain. The
- `element` is either the DOM `id` of the element to scan, or a
- reference to the DOM element itself. The `callback` is called
- when the processing is complete.
+ Scans either the entire document or a given DOM element (or elements if
+ it is an array of elements) for mathematics that has changed since the
+ last time it was processed, or is new, and typesets the mathematics
+ they contain. The `element` is either the DOM `id` of the element to
+ scan, a reference to the DOM element itself, or an array of id's or
+ references. The `callback` is called when the processing is complete.
:Parameters:
- - **element** --- the element to be updated
+ - **element** --- the element(s) to be updated
- **callback** --- the callback specification
:Returns: the callback object
.. method:: Reprocess([element[,callback]])
- Removes any typeset mathematics from the document or DOM
- element, and then processes the mathematics again,
- re-typesetting everything. This may be necessary, for example, if
- the CSS styles have changed and those changes would affect the
- mathematics. The `element` is either the DOM `id` of the element
- to scan, or a reference to the DOM element itself. The `callback`
- is called when the processing is complete.
+ Removes any typeset mathematics from the document or DOM element (or
+ elements if it is an array of elements), and then processes the
+ mathematics again, re-typesetting everything. This may be necessary,
+ for example, if the CSS styles have changed and those changes would
+ affect the mathematics. The `element` is either the DOM `id` of the
+ element to scan, a reference to the DOM element itself, or an array of
+ id's or references. The `callback` is called when the processing is
+ complete.
:Parameters:
- - **element** --- the element to be reprocessed
+ - **element** --- the element(s) to be reprocessed
- **callback** --- the callback specification
:Returns: the callback object
diff --git a/docs/html/_sources/options/hub.txt b/docs/html/_sources/options/hub.txt
@@ -145,6 +145,16 @@ behavior of MathJax. They are given with their default values.
which case you will need to call :meth:`MathJax.Hub.Typeset()`
yourself by hand, set this value to ``true``.
+.. describe:: element: []
+
+ This is a list of DOM element ID's that are the ones to process for
+ mathematics when any of the Hub typesetting calls (Typeset, Process,
+ Update, etc.) are called with no element specified, and during
+ MathJax's initial typesetting run when it starts up. This lets you
+ restrict the processing to particular containers rather than scanning
+ the entire document for mathematics. If none are supplied, the entire
+ document is processed.
+
.. describe:: menuSettings: { ... }
This block contains settings for the mathematics contextual menu
diff --git a/docs/html/_sources/options/jsMath2jax.txt b/docs/html/_sources/options/jsMath2jax.txt
@@ -20,12 +20,6 @@ section in your :meth:`MathJax.Hub.Config()` call. For example
would set the ``preview`` parameter to ``"none"``.
-
-.. describe:: element: null
-
- The id name of the element that should be processed by `jsMath2jax`.
- The default is the whole document.
-
.. describe:: preview: "TeX"
This controls whether `jsMath2jax` inserts ``MathJax_Preview`` spans
diff --git a/docs/html/_sources/options/mml2jax.txt b/docs/html/_sources/options/mml2jax.txt
@@ -20,11 +20,6 @@ set any of these options, include a ``mml2jax`` section in your
would set the ``preview`` parameter to ``"none"``.
-.. describe:: element: null
-
- The id name of the element that should be processed by `mml2jax`.
- The default is the whole document.
-
.. describe:: preview: "alttext"
This controls whether `mml2jax` inserts ``MathJax_Preview`` spans
diff --git a/docs/html/_sources/options/tex2jax.txt b/docs/html/_sources/options/tex2jax.txt
@@ -22,11 +22,6 @@ would set the ``inlineMath`` delimiters for the `tex2jax`
preprocessor.
-.. describe:: element: null
-
- The id name of the element that should be processed by `tex2jax`.
- The default is the whole document.
-
.. describe:: inlineMath: [['\\\(','\\\)']]
Array of pairs of strings that are to be used as in-line math
diff --git a/docs/html/api/hub.html b/docs/html/api/hub.html
@@ -330,19 +330,20 @@ supply as many <cite>callback</cite> specifications in one call to the
<dl class="method">
<dt id="Typeset">
<tt class="descname">Typeset</tt><big>(</big><span class="optional">[</span><em>element</em><span class="optional">[</span>, <em>callback</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#Typeset" title="Permalink to this definition">¶</a></dt>
-<dd><p>Calls the preprocessors on the given element, and then typesets
-any math elements within the element. If no <cite>element</cite> is
-provided, the whole document is processed. The <cite>element</cite> is
-either the DOM <cite>id</cite> of the element, or a reference to the DOM
-element itself. The <cite>callback</cite> is called when the process is
-complete. See the <a class="reference internal" href="../typeset.html#typeset-math"><em>Modifying Math</em></a> section
-for details of how to use this method properly.</p>
+<dd><p>Calls the preprocessors on the given element (or elements if it is an
+array of elements), and then typesets any math elements within the
+element. If no <cite>element</cite> is provided, the whole document is processed.
+The <cite>element</cite> is either the DOM <cite>id</cite> of the element, a reference to
+the DOM element itself, or an array of id’s or refereneces. The
+<cite>callback</cite> is called when the process is complete. See the
+<a class="reference internal" href="../typeset.html#typeset-math"><em>Modifying Math</em></a> section for details of how to use
+this method properly.</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>element</strong> — the element whose math is to be typeset</li>
+<li><strong>element</strong> — the element(s) whose math is to be typeset</li>
<li><strong>callback</strong> — the callback specification</li>
</ul>
</td>
@@ -357,9 +358,10 @@ for details of how to use this method properly.</p>
<dl class="method">
<dt id="PreProcess">
<tt class="descname">PreProcess</tt><big>(</big><span class="optional">[</span><em>element</em><span class="optional">[</span>, <em>callback</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#PreProcess" title="Permalink to this definition">¶</a></dt>
-<dd><p>Calls the loaded preprocessors on the entire document, or on the
-given DOM element. The <cite>element</cite> is either the DOM <cite>id</cite> of the
-element, or a reference to the DOM element itself. The <cite>callback</cite>
+<dd><p>Calls the loaded preprocessors on the entire document, or on the given
+DOM element (or elements, if it is an array of elements). The
+<cite>element</cite> is either the DOM <cite>id</cite> of the element, a reference to the
+DOM element itself, or an array of id’s or references. The <cite>callback</cite>
is called when the processing is complete.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
@@ -381,17 +383,17 @@ is called when the processing is complete.</p>
<dl class="method">
<dt id="Process">
<tt class="descname">Process</tt><big>(</big><span class="optional">[</span><em>element</em><span class="optional">[</span>, <em>callback</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#Process" title="Permalink to this definition">¶</a></dt>
-<dd><p>Scans either the entire document or a given DOM <cite>element</cite> for
-MathJax <tt class="docutils literal"><span class="pre"><script></span></tt> tags and processes the math those tags
-contain. The <cite>element</cite> is either the DOM <cite>id</cite> of the element to
-scan, or a reference to the DOM element itself. The <cite>callback</cite> is
-called when the processing is complete.</p>
+<dd><p>Scans either the entire document or a given DOM <cite>element</cite> (or array of
+elements) for MathJax <tt class="docutils literal"><span class="pre"><script></span></tt> tags and processes the math those
+tags contain. The <cite>element</cite> is either the DOM <cite>id</cite> of the element to
+scan, a reference to the DOM element itself, or an array of id’s or
+references. The <cite>callback</cite> is called when the processing is complete.</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>element</strong> — the element to be processed</li>
+<li><strong>element</strong> — the element(s) to be processed</li>
<li><strong>callback</strong> — the callback specification</li>
</ul>
</td>
@@ -406,18 +408,18 @@ called when the processing is complete.</p>
<dl class="method">
<dt id="Update">
<tt class="descname">Update</tt><big>(</big><span class="optional">[</span><em>element</em><span class="optional">[</span>, <em>callback</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#Update" title="Permalink to this definition">¶</a></dt>
-<dd><p>Scans either the entire document or a given DOM element for
-mathematics that has changed since the last time it was processed,
-or is new, and typesets the mathematics they contain. The
-<cite>element</cite> is either the DOM <cite>id</cite> of the element to scan, or a
-reference to the DOM element itself. The <cite>callback</cite> is called
-when the processing is complete.</p>
+<dd><p>Scans either the entire document or a given DOM element (or elements if
+it is an array of elements) for mathematics that has changed since the
+last time it was processed, or is new, and typesets the mathematics
+they contain. The <cite>element</cite> is either the DOM <cite>id</cite> of the element to
+scan, a reference to the DOM element itself, or an array of id’s or
+references. The <cite>callback</cite> is called when the processing is complete.</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>element</strong> — the element to be updated</li>
+<li><strong>element</strong> — the element(s) to be updated</li>
<li><strong>callback</strong> — the callback specification</li>
</ul>
</td>
@@ -432,19 +434,20 @@ when the processing is complete.</p>
<dl class="method">
<dt id="Reprocess">
<tt class="descname">Reprocess</tt><big>(</big><span class="optional">[</span><em>element</em><span class="optional">[</span>, <em>callback</em><span class="optional">]</span><span class="optional">]</span><big>)</big><a class="headerlink" href="#Reprocess" title="Permalink to this definition">¶</a></dt>
-<dd><p>Removes any typeset mathematics from the document or DOM
-element, and then processes the mathematics again,
-re-typesetting everything. This may be necessary, for example, if
-the CSS styles have changed and those changes would affect the
-mathematics. The <cite>element</cite> is either the DOM <cite>id</cite> of the element
-to scan, or a reference to the DOM element itself. The <cite>callback</cite>
-is called when the processing is complete.</p>
+<dd><p>Removes any typeset mathematics from the document or DOM element (or
+elements if it is an array of elements), and then processes the
+mathematics again, re-typesetting everything. This may be necessary,
+for example, if the CSS styles have changed and those changes would
+affect the mathematics. The <cite>element</cite> is either the DOM <cite>id</cite> of the
+element to scan, a reference to the DOM element itself, or an array of
+id’s or references. The <cite>callback</cite> is called when the processing is
+complete.</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>element</strong> — the element to be reprocessed</li>
+<li><strong>element</strong> — the element(s) to be reprocessed</li>
<li><strong>callback</strong> — the callback specification</li>
</ul>
</td>
diff --git a/docs/html/options/hub.html b/docs/html/options/hub.html
@@ -210,6 +210,18 @@ yourself by hand, set this value to <tt class="docutils literal"><span class="pr
<dl class="describe">
<dt>
+<tt class="descname">element: []</tt></dt>
+<dd><p>This is a list of DOM element ID’s that are the ones to process for
+mathematics when any of the Hub typesetting calls (Typeset, Process,
+Update, etc.) are called with no element specified, and during
+MathJax’s initial typesetting run when it starts up. This lets you
+restrict the processing to particular containers rather than scanning
+the entire document for mathematics. If none are supplied, the entire
+document is processed.</p>
+</dd></dl>
+
+<dl class="describe">
+<dt>
<tt class="descname">menuSettings: { ... }</tt></dt>
<dd><p>This block contains settings for the mathematics contextual menu
that act as the defaults for the user’s settings in that menu.
diff --git a/docs/html/options/jsMath2jax.html b/docs/html/options/jsMath2jax.html
@@ -68,13 +68,6 @@ section in your <tt class="xref py py-meth docutils literal"><span class="pre">M
<p>would set the <tt class="docutils literal"><span class="pre">preview</span></tt> parameter to <tt class="docutils literal"><span class="pre">"none"</span></tt>.</p>
<dl class="describe">
<dt>
-<tt class="descname">element: null</tt></dt>
-<dd><p>The id name of the element that should be processed by <cite>jsMath2jax</cite>.
-The default is the whole document.</p>
-</dd></dl>
-
-<dl class="describe">
-<dt>
<tt class="descname">preview: "TeX"</tt></dt>
<dd><p>This controls whether <cite>jsMath2jax</cite> inserts <tt class="docutils literal"><span class="pre">MathJax_Preview</span></tt> spans
to make a preview available, and what preview to use, when it
diff --git a/docs/html/options/mml2jax.html b/docs/html/options/mml2jax.html
@@ -68,13 +68,6 @@ set any of these options, include a <tt class="docutils literal"><span class="pr
<p>would set the <tt class="docutils literal"><span class="pre">preview</span></tt> parameter to <tt class="docutils literal"><span class="pre">"none"</span></tt>.</p>
<dl class="describe">
<dt>
-<tt class="descname">element: null</tt></dt>
-<dd><p>The id name of the element that should be processed by <cite>mml2jax</cite>.
-The default is the whole document.</p>
-</dd></dl>
-
-<dl class="describe">
-<dt>
<tt class="descname">preview: "alttext"</tt></dt>
<dd><p>This controls whether <cite>mml2jax</cite> inserts <tt class="docutils literal"><span class="pre">MathJax_Preview</span></tt> spans
to make a preview available, and what preview to use, when it
diff --git a/docs/html/options/tex2jax.html b/docs/html/options/tex2jax.html
@@ -69,13 +69,6 @@ set any of these options, include a <tt class="docutils literal"><span class="pr
preprocessor.</p>
<dl class="describe">
<dt>
-<tt class="descname">element: null</tt></dt>
-<dd><p>The id name of the element that should be processed by <cite>tex2jax</cite>.
-The default is the whole document.</p>
-</dd></dl>
-
-<dl class="describe">
-<dt>
<tt class="descname">inlineMath: [['\(','\)']]</tt></dt>
<dd><p>Array of pairs of strings that are to be used as in-line math
delimters. The first in each pair is the initial delimiter and
diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({objects:{"":{Load:[0,0,1],Preloading:[0,0,1],Log:[17,0,1],Subclass:[37,0,1],Delay:[27,0,1],Init:[37,0,1],getAllJax:[36,0,1],Interest:[28,0,1],Translate:[38,0,1],Config:[36,0,1],addElement:[11,0,1],Styles:[0,0,1],ExecuteHook:[28,0,1],loadTimeout:[0,0,1],Resume:[16,0,1],Update:[36,0,1],loadComplete:[0,0,1],loadHook:[0,0,1],formatError:[36,0,1],call:[16,0,1],getJaxByInputType:[36,0,1],PreProcess:[36,0,1],fileURL:[0,0,1],has:[37,0,1],Signal:[27,0,1],Insert:[36,0,1],addText:[11,0,1],TextNode:[11,0,1],Augment:[37,0,1],loadError:[0,0,1],Clear:[17,0,1],Register:[38,0,1],Remove:[17,0,1],Element:[11,0,1],Queue:[27,0,1],NoInterest:[28,0,1],Set:[17,0,1],getJaxByType:[36,0,1],Push:[16,0,1],Typeset:[36,0,1],Post:[28,0,1],wait:[16,0,1],reset:[27,0,1],Suspend:[16,0,1],executeHooks:[27,0,1],Process:[36,0,1],Text:[49,0,1],setText:[11,0,1],Reprocess:[36,0,1],Startup:[38,0,1],SourceElement:[49,0,1],getJaxFor:[36,0,1],can:[37,0,1],File:[17,0,1],MessageHook:[28,0,1],isJax:[36,0,1],filterText:[17,0,1],isa:[37,0,1],Require:[0,0,1]}},terms:{lvertneqq:45,reprocess:[36,49,47],mathjax_msie_fram:17,four:[53,13],prefix:[11,19,14],asymp:45,blacktriangledown:45,webfont:[6,41,19],whose:[11,7,47,5,30,36,23],biggr:45,under:[40,34],preprocess:[51,36,29,47],slowest:50,worth:7,digit:14,gimel:45,everi:[18,36,14,7],mskip:45,arcco:45,govern:[19,13,7],dotplu:45,affect:[13,34,14,45,36,49,25],isforefox:36,bbfont:[],eqnarrai:45,cmd:21,bigodot:45,ominu:45,red:[45,19,44],categori:53,nparallel:45,showcontext:46,nsubseteqq:45,direct:[41,6,13,40,34],consequ:20,second:[0,13,34,27,30,44,53,48,5,6,40,21,18,10,7,23,3],ngeq:45,even:[0,40,27,30,16,45,2,48,47,39,19,44,7,18,22,51,36,28,53],hide:47,prejax:[51,21],neg:45,weren:13,multlinewidth:24,"new":[29,4,11,12,13,14,17,18,19,24,22,23,25,27,36,10,7,37,28,34,49,53,46,47,48,51],mhtml:1,told:48,limsup:45,elimin:21,abov:[11,45,13,41,14,27,19,53,2,47,5,6,21,30,50,34,7,37],lessapprox:45,blacktriangleright:45,here:[11,28,31,27,30,53,2,47,18,19,38,21,36,49],met:29,lneqq:45,path:[39,0,7,19],noundefin:[39,19,45],interpret:[45,19,34],nrightarrow:45,netowrk:35,forum:[19,4],mbox:45,rceil:45,backprim:45,uproot:45,circleddash:45,mathstrut:45,unix:34,brower:45,thinmathspac:[19,40],unit:14,highli:22,describ:[11,45,13,34,27,19,43,3,29,47,39,6,44,7,30,50,51,36],would:[39,6,9,11,5,13,16,19,20,21,49,24,26,27,30,36,32,33,34,7,37,45,41,42,44,53,46,47,50,51,52,3],bleed:14,vartriangl:45,ltime:45,varlambda:45,call:[0,1,2,45,6,7,9,13,16,17,18,19,20,21,23,24,25,26,27,28,30,33,34,10,36,37,38,5,41,42,43,49,53,46,47,48,51,52],recommend:[19,51,34,50],diretori:34,preview:[5,42,51,26,21],type:[0,1,2,39,8,10,11,5,13,18,19,38,21,23,36,32,35,7,45,40,49,53,47,48,50,51],until:[0,26,28,53,5,30,38,21,7,18,42,36],notin:45,displaymath:[5,7],relat:[0,14],notic:45,warn:[0,13,21,6],eqslantless:45,hold:[0,44,21,33,51,36],unpack:[19,34],must:[0,13,41,19,43,16,45,29,7,17,5,6,50,24,21,33,48,34,40,28,3],fbox:[45,14],join:[18,45],room:24,setup:[22,19,40],work:[11,12,13,34,14,30,45,2,4,47,18,19,40,32,48,22,50,7,37],cc0000:[3,21],tag_nam:34,root:[45,0,29,14,17],overrid:[37,6,10,38,23],mathmenu:[41,3,46,39,20,7,25],give:[28,41,19,44,3,2,18,6,24,25],cirit:7,indic:[0,7,34,30,16,45,29,18,19,28,38,21,49,10,36,23,51],impair:[22,7],hline:45,want:[4,39,5,13,15,17,18,19,21,23,27,30,34,35,7,37,45,41,53,47,50,52],setminu:45,end:[0,40,39,1,50,45,29,4,5,8,18,35,53],quot:[5,41,14,21],hom:45,heartsuit:45,how:[0,1,2,4,45,6,8,5,13,16,17,19,20,21,26,27,28,42,36,32,33,34,7,39,41,44,46,48,51],disappear:[5,42,26],answer:[4,47],verifi:[19,34,4],config:[1,29,39,6,7,8,9,10,5,13,17,18,19,20,21,23,24,25,26,2,30,32,33,35,36,38,45,41,42,53,46,47,50,52,3],varrho:45,updat:[36,34,14,1,53,47,13,7,49],showrender:46,recogn:19,lai:[50,51],diagdown:45,after:[0,41,27,30,16,53,2,46,17,18,19,38,21,47,48,34,51,7,28,25],befor:[0,1,29,4,45,8,13,16,17,18,19,24,21,27,28,30,36,33,7,37,38,5,40,41,43,44,53,47,48,50,51],wrong:40,startuphook:[18,36],parallel:[45,53,29,14],averag:51,alignedat:45,attempt:[0,40,46],third:[53,40],leftarrow:45,receiv:[28,13,30,18,19,38,48,7,37],greasekit:2,maintain:[13,48,4,18,30,21],environ:[5,19,45,24,4],enter:[40,47,45,19,51,7],textnod:11,order:[28,13,34,19,43,16,53,29,7,17,5,6,26,21,30,50,42,36,37,51],oper:[0,5,6,9,14,16,17,18,20,22,24,26,42,33,34,38,28,31,41,30,43,53,46,47,50,52],parentnod:[2,14],over:[11,0,41,14,45,46,47,39,19,21,33,51,7],fall:[45,6,53,34,19],becaus:[18,13,41,30,44,45,2,17,5,19,24,7,51,40,28,53,47],boxtim:45,suspend:[18,16,53,28],textrm:45,appar:[50,53],afil:30,flexibl:[44,53,13],vari:50,smallint:45,fit:[18,46],fix:[13,34,14,7],preferredfont:41,better:[14,46,39,19,32,8,50,7],boxminu:45,drawback:50,upharpoonleft:45,persist:4,comprehens:43,easier:[28,13,34,53,45,40,37],moveleft:45,them:[11,0,13,34,14,39,19,16,45,40,3,5,6,24,7,30,18,51,36,28,53],thei:[0,2,4,45,6,7,9,5,13,14,15,16,17,18,19,20,21,24,25,26,28,29,30,33,34,36,38,39,40,41,42,43,44,53,46,47,48,51,52,3],precapprox:45,safe:[11,2,47],"break":[45,48,53,40,14],mtext:[45,19,14],wedg:45,widetild:45,choic:[50,36,8],dbinom:45,leftharpoondown:45,timeout:[0,14,27],each:[39,7,34,27,28,45,29,48,17,5,19,47,18,51,36,53],debug:17,side:[19,17,24,21,8],mean:[39,13,1,28,15,29,45,2,48,47,5,30,26,21,18,22,42,7],leqq:45,createel:2,resum:[16,53],leqalignno:45,mathopen:45,looparrowleft:45,network:[13,34,14,39,19,7],goe:[45,48,53],iint:45,newli:[11,18,37],crucial:34,ios4:14,content:[1,29,39,8,10,11,13,14,19,44,21,2,36,35,7,37,5,40,43,53,47,50,51],reader:[39,22,7,14],forth:31,impract:34,multilin:45,situat:[7,14],free:[49,4],standard:[18,34,43,45,39,19,22,50,51,7,3],reconfigur:13,lneq:45,angl:45,jsmath2jax:[26,14,25,32],isn:[18,38],mtabl:39,pulicis:28,isa:37,subtl:47,onto:[43,19,53,36,47],mathbb:45,rang:51,mathbf:45,render:[40,14,29,46,5,19,21,22,50,51,52,32],independ:7,yourcolleg:34,restrict:[45,34],hook:[18,0,27,28],unlik:[22,7,38],alreadi:[0,27,47,45,2,4,17,18,30,48,7,37,53],primari:[50,13],tooltop:41,top:[31,34,45,19,50,7],sometim:[7,34],underlin:[45,14],master:48,too:[45,41,14,2,5,19],similarli:[0,36,34],john:30,listen:[18,28,36,27],thickapprox:45,namespac:[19,2,14,27,47],tool:[53,34],tagind:24,gtrless:45,compressor:14,somewhat:48,technic:43,past:[28,13,14,18,48,22],filesmatch:34,provid:[11,0,40,27,1,30,16,45,17,18,19,28,44,47,48,22,51,36,37,53],eqalignno:45,tree:[19,44],iota:45,project:[43,7,4],matter:[18,32],mathtt:45,ldotp:45,modern:[22,6,50,12],mind:[45,19,7,1],manner:50,increment:16,seem:[30,40],rightrightarrow:45,ldot:45,ngeqq:45,latter:[18,44,51,7,25],curvearrowleft:45,simplifi:14,though:[27,45,48,44,21,51],object:[0,29,6,11,12,36,15,16,17,18,20,21,23,25,27,30,33,10,7,37,38,28,31,41,43,44,53,46,47,48,49,51,3],gzip:14,regular:[5,21],letter:[19,34],grave:45,don:[13,14,30,53,2,47,18,6,40,7,50,36],dom:[11,49,53,47,18,48,38,21,36,23],doe:[45,40,34,27,52,49,2,18,30,20,21,7,22,50,10,36,23,51],declar:[40,41,3,46,6,20,33],tfrac:45,unchang:[13,52,47],section:[2,39,6,9,5,13,14,20,21,24,25,26,30,36,32,33,35,7,45,40,41,42,46,50,52],came:34,delaystartupuntil:[36,29,21,7],random:[19,34],lnapprox:45,syntax:[45,37,14],mediawiki:1,isopera:36,outerhtml:14,shownam:30,asynchon:47,involv:[48,7,4],consolid:22,layout:49,firstnam:30,mathchoic:45,ismsi:[36,29],menu:[12,40,41,14,50,29,46,39,20,21,33,8,34,35,49,51],explain:[39,48,13,7,25],configur:[0,29,39,6,7,8,9,10,12,13,14,17,18,19,20,21,22,23,24,25,26,2,30,32,33,34,35,36,38,5,40,41,42,44,45,50,51,52],apach:34,configut:44,reflow:14,theme:[7,1,8],explic:13,rich:22,folder:[19,41,34],compli:19,infti:[45,51],mho:45,report:[40,21,4],circeq:45,subseteq:45,fadeouttim:6,bar:[45,37,27],patch:[7,34],reload:46,bad:14,replacechild:2,neq:45,respond:[28,21,4],dashrightarrow:45,scriptscriptstyl:45,precneqq:45,result:[13,41,27,30,49,53,47,45,19,40,7,50,10,36,23,51],respons:[28,10,14,27],fail:[0,14,30,38,50,25],themselv:[19,36,29,44,31],best:[0,13,34,53,50,51,7],awar:[45,0,53,40],subarrai:45,varinjlim:45,wikipedia:[43,2],circledcirc:45,gneqq:45,awai:[7,34],approach:[30,51,1,47],attribut:[11,14,3,45,42,44,51,7],never:[34,0,7,2,38],extend:[22,51],synchon:18,extens:[0,29,39,6,5,13,14,18,19,24,21,25,26,2,42,36,32,33,7,38,45,31,43,53,46,47,3],preprocessor:[39,13,42,45,40,29,31,5,19,26,21,7,51,36,47,25,32],intop:45,cot:45,cow:37,howev:[13,34,30,29,53,2,4,17,45,19,21,47,50,51,7,37,3,25],configuraiton:[35,7,14,8],against:28,browser:[29,39,6,11,12,5,13,14,19,20,21,22,49,25,2,36,31,32,34,7,45,40,41,43,46,48,50,51,52],com:[7,34],varpsi:45,preccurlyeq:45,foral:45,foobar:37,sai:[16,2,27],innerhtml:[2,47],height:[45,14,46],wider:4,sqsupset:45,speak:[15,51],chrome:[41,36,2,14,50],three:[40,34,27,30,44,53,6,38,48,51],been:[0,2,4,5,13,16,17,18,19,38,23,27,29,30,32,10,7,28,34,53,47,48,50],trigger:[39,50,7,21,33],interest:[18,28,43,4,48],basic:12,tini:45,quickli:[22,50,7,4],underrightarrow:45,regul:53,xxx:45,ani:[0,2,4,45,6,7,9,5,13,16,17,18,19,20,21,49,24,26,27,28,29,30,33,34,36,37,39,40,41,42,53,46,47,48,50,52],embelish:14,emploi:[43,50],hskip:45,tanh:45,servic:[13,34,14,19,35,7],avtiv:[],diamondsuit:45,sourceforg:13,javascipt:19,dashboard:35,suffici:[45,19,24,52,50],"3px":3,succeq:45,canb:24,lightli:50,nexist:45,need:[0,1,2,3,4,5,6,7,8,10,13,14,16,17,18,19,20,21,22,23,24,27,29,30,34,35,36,37,38,39,40,41,43,49,45,47,48,51,53],cong:45,sever:[0,13,34,45,47,39,30,51,23,53],amout:17,incorrectli:[19,13,14],perform:[29,4,6,13,14,16,17,18,38,21,49,27,30,36,7,28,31,43,53,47,48,50],suggest:[6,4],make:[0,4,45,6,13,14,15,16,18,19,21,22,26,42,36,34,7,37,5,40,41,53,46,47,48,50,51,3],format:[12,13,41,43,44,45,39,19,20,21,49,22,50,10,40,23,51],complex:[50,44],split:45,synch:13,lrcorner:45,unsafewindow:2,complet:[0,13,34,27,30,43,16,53,29,48,47,39,19,38,21,7,18,50,36,28,49],longmapsto:45,hand:[31,17,24,21,51,40,32],fairli:[44,13],rais:[45,14],mkern:45,ignorepast:28,unlhd:45,techniqu:[13,2],redefin:[6,10,38,23],kept:18,thu:[13,27,53,18,30,49],inherit:[15,37,10,23,49],client:41,thi:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,39,15,16,17,18,19,24,21,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,20,40,41,42,44,45,46,47,48,49,50,51,52,53],idotsint:45,programm:37,everyth:[39,45,53,36,7],settimeout:[30,27],left:[40,34,31,29,17,45,48,24,21,8,35,25],processclass:5,identifi:[11,19,45,51,28],just:[45,40,34,27,1,30,53,39,19,21,8,22,51,7,28,3],yen:45,mathbin:45,coprod:45,yet:[40,16,53,47,18,48,50],languag:[43,48,51],noscript:5,onload:[31,2,29,30,21,7],errorset:[39,21],easi:[34,32],interfer:[39,7],had:[18,19,13,7],myconfig:[18,30],els:[30,2,47],save:[35,7,3,8],hat:45,jsmath:[12,51,32],sanit:17,applic:[22,19,29,1],loadtimeout:0,quirk:50,preserv:30,assit:39,negativethinmathspac:50,background:[45,3,14],sqsubset:45,specif:[0,7,1,27,28,43,16,53,31,5,30,38,21,47,50,51,36,49],deprec:7,arbitrari:45,zoom:[12,40,14,39,21,33,7],leftrightarrow:45,underli:50,www:[34,2,46],right:[40,41,43,16,53,2,17,45,20,21,8,34,51,7,24,25],old:18,simbl:2,deal:50,autobold:45,surd:[45,14],percentag:[20,41,21],donald:43,successfulli:[0,30],interc:45,dddot:45,bottom:8,subclass:[28,31,23,38,49,10,37],circ:45,exectur:28,overcom:[48,50],condit:[0,29],getjaxfor:[18,36,23],core:[53,29,45,21,51,36,25],plu:[39,28,29],bold:[45,44,24,25],confiogur:19,mathrel:45,colleg:34,repositori:[13,34,14],post:[28,41,29,4,17,18,48,38],"super":[37,14],llless:45,obj:11,nwarrow:45,slightli:[45,8],surround:[19,20,41],unfortun:[19,34],current_theme_templ:1,joomla:1,span:[26,5,42,44,21,51,32],downharpoonright:45,produc:[6,13,18,19,20,21,22,49,24,25,27,30,32,10,7,28,41,23,46,47,50,51],encod:45,contectu:50,rightsquigarrow:45,down:[35,34,21],shortparallel:45,wrap:37,stackrel:45,nsupseteq:45,git:[19,13,34,14],wai:[18,13,34,27,1,30,53,2,17,5,19,51,26,21,47,50,42,7,28,38],checkmark:45,transform:51,ngtr:45,avail:[0,1,5,6,13,18,19,20,21,22,49,26,42,34,7,37,40,41,53,46,47,50,51],width:[40,46,45,19,24,50],reli:[0,13,53,2,47,30,20,50],wordpress:[1,8],editor:8,rightthreetim:45,head:[1,2,47,19,8,50,35,7],form:[40,41,43,17,45,19,24,21,51,7],offer:[13,14,4],forc:[7,41],epsilon:45,hear:[18,28],downdownarrow:45,"true":[45,13,41,27,28,29,46,31,5,20,21,7,9,36,37],vcenter:45,maxmacro:24,reset:[46,27],absens:1,displayalign:21,intern:[0,40,28,43,16,53,45,21,50,10,36,23,51],tell:[34,2,47,19,50,7],moveright:45,retir:13,nnn:34,featur:[12,40,34,4,47,18,30,33,50,37],rfloor:45,sale:20,exist:[45,19,37,34,27],ddot:45,backsim:45,triangleq:45,check:[0,13,34,30,17,45,19,28,37],recevi:34,when:[0,29,39,6,7,8,9,5,13,14,15,16,17,18,19,20,21,22,23,24,26,27,28,30,31,32,33,34,10,36,37,38,45,40,41,42,43,44,53,46,47,48,49,50,51,52],abovewithdelim:45,role:51,test:[11,12,13,34,48,29,2,47,18,19,40,50,36,37],tie:[29,27],smallsmil:45,node:11,mathel:1,intend:[37,21],consit:45,munderov:51,gvertneqq:45,consid:[0,13,14,45,4,5,19,51,36,49,53],omega:45,outdat:4,faster:[50,7,14],furthermor:[53,13,21,7],anywher:7,tex2jax_ignor:[5,14],ignor:[5,28],time:[0,2,4,45,6,11,36,14,17,18,24,21,27,30,33,7,38,28,34,53,47,50,51],push:[27,43,16,53,29,47,30,36],"5kb":24,mathrm:45,doteq:45,emulateie7:50,skip:[5,34],consum:17,webkit:14,skin:1,displayind:21,millisecond:[0,41,27,46,17,6,33,36],decid:[7,46],depend:[27,29,47,30,8,50,7,52],newenviron:45,readabl:43,nearrow:45,varpi:45,certainli:34,vee:45,decis:50,leftarrowtail:45,succnsim:45,sourc:[12,13,41,53,40,2,46,39,20,18,22,34,51,36,49],string:[0,27,28,44,45,17,5,24,21,18,36,49,3],curlyve:45,word:[5,51,7],centerdot:45,dim:45,foo:[37,27],administr:[1,8],level:[19,7,34,31],did:30,item:[41,44,46,45,30,20],preprocesor:45,cooki:[11,29,14],div:[11,45,51,32,47],prevent:[45,26,41,14,42,46,5,19,24,21,7],outlin:14,slower:50,compens:20,sign:[45,13,47,5,19,51,7],cost:[45,19,7,37],pmb:45,rightarrowtail:45,widehat:45,xandi:37,dotsi:45,dotsm:45,appear:[45,31,34,30,46,17,18,19,21,47,8,50,7,49],dotso:45,repli:18,dotsc:45,dotsb:45,current:[0,41,1,28,49,50,8,34,35,7,37],backepsilon:45,ampersand:45,inlinemath:[45,13,47,5,19,7],defici:40,amalg:45,mathsiz:45,gener:[45,7,30,52,29,39,6,32,51,36,49,19],mfrac:[19,51],modif:[53,7],address:[19,34],along:[43,53,17,18,32,10,23],wait:[0,7,34,14,27,28,43,16,53,2,47,18,30,29,38,21,48,36],box:[45,0,14,6],html_head:1,bracevert:45,shift:21,bot:45,queue:[28,31,27,48,15,16,53,29,47,30,43,36],overriden:36,digamma:45,varlimsup:45,macintosh:36,semant:37,succsim:45,extra:[18,45,51,14,21],circumv:34,modul:[0,35,31],prefer:[13,41,46,19,50,34,52],iepro7:2,veebar:45,visibl:[5,42,53,26,47],marker:45,myid:3,mobil:[13,14,7],arrowvert:45,memori:[48,49],bigr:45,visit:19,todai:43,subvers:[19,34],stylesheet:[0,31,27,28,16,29,47,48,21,8,50],handler:[0,31,43,2,29,47,48,51,7],current_skin:1,bigl:45,bigm:45,eqcirc:45,checkout:34,bigg:45,inputjax:[31,15,49,29,38,10,37],capit:15,sitaut:47,peopl:19,bigtriangleup:45,enhanc:[51,14],minscaleadjust:41,visual:[39,22,7],templat:[35,7,1,8],hphantom:45,easiest:[18,19,34,27,30],graphic:34,prepar:[53,7],cap:45,uniqu:3,pmatrix:45,whatev:[45,1,37,53,47,18,23],cal:45,purpos:[30,51,50],getjaxbytyp:36,downharpoonleft:45,subseteqq:45,varprojlim:45,backslash:[45,24,21],topic:[15,12,7],critic:34,sharp:45,occur:[0,40,34,27,30,16,53,2,46,17,18,19,38,21,7,48,36,28,47],eqsim:45,nuber:24,pink:45,alwai:[45,30,53,7,27],multipl:[45,53,13],trianglelefteq:45,write:[28,53,47,19,22,50],fourth:53,mathsf:45,tild:45,xhtml:[19,40],map:51,max:45,clone:34,spot:45,usabl:34,mac:[36,20,41,21],udpat:34,mai:[0,1,2,4,45,6,8,13,15,18,19,20,21,23,28,30,36,34,7,37,5,40,41,49,53,47,48,50,51],data:[11,0,31,41,27,37,18,30,38,49,34,10,36,23],grow:1,goal:22,vartheta:45,preceq:45,explicit:[0,7,21,19],uparrow:45,geramond:45,inform:[0,41,1,28,43,17,39,30,20,21,18,51,7],"switch":[51,13,34,14,32],preced:7,combin:[0,13,14,45,39,19,50,7],gamma:45,lnsim:45,approx:45,showmathmath:20,lsh:45,tex2math:32,still:[18,40,27,1,28,43,53,39,21,33,50],pointer:37,ttf:34,dynam:[0,31,12,53,2,47,19,21,48,22,51,7],entiti:[45,40,14],amssymbol:[39,19,45,13,7],conjunct:13,group:[0,40,4],monitor:4,polici:34,bigstar:45,platform:[22,12,1,19],window:[31,27,6,2,46,17,30,47,36],"05em":45,main:[45,13,34,15,37,53,46,39,19,31,21,7,3,10,36,23,51],mathexampl:47,non:[11,0,16,45,19,51],msam10:19,myinputjax:38,initi:[0,13,48,45,29,46,31,5,19,38,21,7,18,51,36,49,53],safari:[50,36,2,14],half:30,now:[13,34,14,43,29,19,50,7],discuss:[11,34,7,2,4],nor:[6,44],term:[19,13,7,17],name:[0,29,39,6,7,11,5,13,14,17,18,19,24,21,23,25,26,27,28,2,30,34,10,36,37,38,45,40,41,42,44,3,49,50],opera:[50,52,36,2,14],boxdot:45,drop:34,separ:[13,34,53,17,18,19,20,21,7,40,3,25],messagestyl:[6,21,17],sideset:45,ntriangleleft:45,confid:22,varpropto:45,vec:45,varsupsetneqq:45,compil:30,domain:[19,7,34],replac:[0,13,14,40,2,47,19,24,7,51,36,37,38],individu:[49,14,25,47],continu:[0,13,45,18,48,7,53],happen:[40,34,16,53,45,48,51],shown:[45,44,21,46,47],accomplish:[19,7,2,34,50],space:[14,47,45,19,21,50,9,51],intermix:29,internet:[0,14,45,2,46,17,39,30,21,50,51,7,25],formula:[47,21,33,22,50,51],correct:[30,13,2],integr:1,simeq:45,earlier:[19,53,7],migrat:[12,13],ajax:[0,31,15,53,29,18,30,38,36],mime:[40,49,19,38,10,36,23],underleftarrow:45,org:[13,14,1,2,46,47,45,19,32,8,50,35,7],ord:45,care:[45,19,2,25],ntrianglelefteq:45,couldn:30,x00b1:19,synchron:[0,27,12,43,2,53,29,48,47,30,16,36,28],mscarri:40,thing:[45,19,44,47],place:[0,41,6,45,4,47,18,19,28,24,21,34,7,37,53,32],mathop:45,unwis:50,ture:20,typset:14,think:[45,21,47],frequent:[5,18],first:[18,40,34,27,30,51,45,2,48,47,5,19,28,44,21,8,10,7,23,53],origin:[37,45,34,28,16,2,47,18,19,49,10,23],lfloor:45,oni:34,directli:[34,14,53,2,47,45,30,38,8,51],conform:19,onc:[0,34,27,28,45,29,47,39,19,38,32,53],arrai:[29,45,6,9,36,14,16,18,38,21,23,24,25,26,27,28,30,32,50,10,7,5,41,42,44,20,51,52],yourself:[34,19,16,2,45,30,21,7],fast:[13,14,7],open:[12,40,34,46,45,19,8,22,35],predefin:21,size:[20,41,14,3,47,45,24,7],given:[11,0,37,14,1,28,16,45,44,3,17,18,30,38,21,49,27,51,36,23,53],ifmodul:34,evail:53,leftrightharpoon:45,circl:45,white:3,conveni:[19,37,21],hub:[0,29,39,6,7,9,5,13,15,17,18,19,20,21,23,24,25,26,2,30,32,33,36,38,45,31,41,42,49,53,46,47,50,51,52],especi:51,programat:51,copi:[13,34,2,4,19,40,7,22,36,38],specifi:[29,45,6,9,11,13,14,16,18,19,20,21,24,27,28,30,36,33,7,5,41,44,53,46,48,50,51,52,3],lhd:45,enclos:[3,51,41,21],quad:45,than:[0,29,39,6,8,9,5,13,14,16,18,19,38,21,22,49,25,27,28,36,34,10,7,37,45,40,41,43,53,47,48,50,51,3],serv:[19,14],wide:[22,51,34],underbrac:45,were:[18,13,49,47],posit:[16,41,14],seri:[53,44],pre:[39,13,34,5,6,40,7],delic:20,lnot:45,doublecup:45,nleftrightarrow:45,argument:[28,27,53,30,37,25],dash:[3,41],properli:[11,0,13,34,14,19,49,53,2,47,6,40,30,36,37],engin:[22,12],squar:[45,44,14],npreceq:45,note:[0,2,45,6,8,36,19,44,21,49,24,28,30,34,7,38,5,41,53,46,47,50,51,52,3],x2260:19,take:[11,0,13,27,1,30,53,29,4,47,45,6,24,48,7],properti:[11,0,31,37,27,28,16,30,38,49,10,36,23],noth:[19,27,30],channel:[18,43],updownarrow:45,begin:[18,34,45,29,47,5,24,50,51,7,53],sure:[45,13,34,14,28,53,4,47,5,19,50,7],windowset:46,normal:[39,27,45,2,5,19,21,51,3],buffer:24,compress:[7,14],beta:[45,50,7],pair:[11,0,27,44,3,5,24,18,10,36,23,25],fileurl:0,beth:45,hotfix:7,latex:[12,43,45,5,19,21,22,51,7],renam:13,textarea:5,later:[28,40,41,27,16,53,45,30,7,36],drive:34,typeset:[0,29,5,14,17,18,20,21,22,49,26,2,30,33,36,31,41,42,43,53,46,47,48,51],badg:4,sigma:45,mathfrak:45,showmathmenu:41,show:[45,34,19,4,47,39,6,44,21,30,35,46,25],autoreset:27,approxeq:45,unprocess:[36,49,47],concurr:29,permiss:[19,34],hack:50,corner:[31,21,17],xml:[22,43],insruct:1,onli:[0,1,2,4,45,6,13,14,39,19,44,21,22,49,28,30,36,34,10,7,5,40,41,43,3,47,50],explicitli:[45,13,14,30,5,19,21,7,37],activ:[13,34,27,43,4,47,48,40,50,51],state:53,inlinedelimit:45,otim:45,black:45,offici:7,geq:45,mypic:[5,42,26,44],nearli:[39,45,7,25],variou:[0,41,1,28,15,3,17,18,6,20,10,7,51,25],get:[11,12,40,41,14,27,30,29,53,2,17,45,19,28,20,21,47,50,34,7,37],cannot:45,ncong:45,downarrow:45,requir:[0,13,27,45,2,39,30,38,7,18,22,51,36,23,53],prime:45,lceil:45,mathpunct:45,enspac:45,intermitt:[31,17],shortmid:45,retypeset:47,where:[0,29,4,45,6,11,13,17,18,19,24,23,27,30,36,34,10,7,39,31,41,49,3,47,48,51],wiki:[19,51,7,2,1],lozeng:45,obejct:16,ismac:[36,29],concern:[51,36],infinit:24,detect:[14,27],parent:[11,37],enumer:45,label:[46,25],enough:[53,44],between:[45,7,14,27,30,53,46,18,19,50,51,36,49],maltes:45,"import":[0,34,14,15,53,39,48,18,7],across:[43,50],longleftrightarrow:45,vdot:45,screen:[0,14,47,53,17,39,22,7,23],negmedspac:45,come:[13,34,53,2,39,30,40,50,51,7],leftleftarrow:45,manu:46,timout:0,pertain:19,audienc:50,inconsist:13,overbrac:45,mani:[45,7,14,48,53,5,30,36,3],among:7,color:[45,3,44,14,21],operatornam:45,period:[0,31,34],colon:[45,3],autmat:[],cancel:27,typic:[5,45,10,7,34],"70kb":7,bigcirc:45,msrow:40,damag:19,needlessli:30,myserv:7,skew:45,mark:[0,40,45,5,19,32,51,3],succapprox:45,fade:6,arcsin:45,resolut:22,processenviron:5,supprot:14,breve:45,texfont:6,blacktriangl:45,those:[45,6,36,16,18,19,44,21,22,49,27,28,30,10,7,38,39,40,34,23,53,47,51,3],"case":[45,13,41,27,30,37,53,2,47,18,19,44,21,49,34,51,7,23,3,25],kappa:45,oldstyl:45,addtext:11,invok:50,invoc:7,margin:24,tbinom:45,advantag:[50,53,13,7,1],barwedg:45,leadsto:45,mlongdiv:40,worri:[18,51],destin:36,updatemath:47,bigwedg:45,develop:[13,34,43,4,40,7],author:[13,17,38,21,33,22,51],media:[3,7,34],postjax:[51,21],same:[39,13,34,14,28,45,8,26,5,19,24,18,48,42,7,23,53],html:[1,29,45,6,7,9,11,12,13,14,39,15,18,19,20,21,23,25,26,2,42,31,32,34,35,36,5,40,41,43,44,3,46,47,48,50,51,52],pad:[11,3],knuth:43,mathvari:51,document:[0,2,45,12,13,15,19,21,22,23,26,42,36,32,7,5,40,34,43,47,50,51],finish:[43,48,53,2,47],vvdash:45,nest:[40,14,31],availablefont:[6,7,41],longleftarrow:45,capabl:[15,22,50],formaterror:36,improv:[13,14,4,21,50,7],extern:[0,31,48,53,18,30,36],submenu:[21,46,8],appropri:[45,18,38,32,10,51],macro:[14,45,19,24,21,7,25],markup:[45,0,51,40,43],leftharpoonup:45,overwithdelim:45,without:[0,13,41,45,18,30,20,7,51,40],model:[12,31,34,15,29,45,50,51,37],altertn:50,bigotim:45,stixfont:6,mml2jax:[40,42,39,19,21,51,25],loaderror:0,rest:[0,40,53,47,19,22,51],flavor:[39,7],speed:[50,51,13,14,7],versu:53,mathzoom:[39,3,33,25],nleqq:45,except:[39,19,48],littl:[0,28],blog:[19,51,7,1],treatment:45,yuicompressor:14,earli:[7,14],hover:[46,21,33],around:[45,7],read:[13,34,14,44,18,19,40,7],outermost:44,boldsymbol:45,messsag:17,getjaxbyinputtyp:36,moo:37,world:[22,30,7],lasterror:36,mod:45,sum_:51,blackberri:14,cdot:45,integ:36,server:[13,41,14,2,39,19,34,7],either:[0,13,34,1,28,15,44,3,2,18,19,24,7,33,50,36,52],output:[2,45,9,12,13,14,18,19,20,21,23,25,36,31,32,7,37,38,39,40,41,43,49,3,46,47,50,51,52],rollov:14,manag:[11,31,34,1,30,43,29,17,19,50,51,49],lesssim:45,searrow:45,sqcup:45,constitut:15,pod:45,slice:27,definit:[0,41,14,3,46,39,20,33,22,24],shoveright:45,inputid:49,dashleftarrow:45,mathcal:45,variuou:18,complic:[44,40,52,50],refer:[12,34,19,49,2,47,18,6,28,38,30,48,36,37],power:[53,4],inspect:36,broken:51,thinspac:45,fulli:[19,53,40],regexp:5,"throw":[23,10,38,2],trianglerighteq:45,acc:[],assocait:47,underwai:53,ddddot:45,act:[45,43,53,18,30,24,21,51],industri:43,processor:[45,40,41,43,53,29,46,51,39,19,20,3,50,9,7,52,24,25],hookrightarrow:45,nobreakspac:45,routin:[11,0,48,30,38,10,36,23],nsupseteqq:45,effici:[37,47],elementari:40,lessdot:45,triangledown:45,bbb:45,rightharpoondown:45,mathbackground:45,your:[0,1,2,4,45,6,7,8,9,12,13,14,39,19,24,21,22,26,30,32,33,50,34,35,36,5,40,41,42,43,44,53,46,47,48,20,52],sqsupseteq:45,log:[45,19,34,17],area:[24,17],fontwarn:[6,21,25],lor:45,strict:[50,34],compliant:[13,14],interfac:[34,1,19,8,22,35],lot:[18,24,34],machin:[43,34],lambda:45,buggi:45,categor:25,longer:[28,13,34,17],pull:34,mathml:[12,40,14,43,49,45,2,51,39,19,20,10,52,8,22,50,9,7,23,35,25],bullet:45,possibl:[0,40,34,14,27,30,53,17,39,6,21,50,51,7,37,3],"default":[0,29,39,6,7,9,5,13,17,19,20,21,23,24,25,26,27,42,32,33,34,10,36,38,45,41,46,50,51,52],processescap:[5,45,13,7],buildrel:45,sepecifi:34,notag:45,embed:40,expect:[45,50,53,7,21],taylor:19,creat:[0,29,4,11,17,18,38,23,27,30,10,37,28,31,34,43,49,53,46,48,51,3],certain:[18,28,48],leftrightsquigarrow:45,risingdotseq:45,varliminf:45,file:[0,1,2,45,6,7,8,10,13,14,16,17,18,19,38,21,23,25,27,28,29,30,32,35,36,39,34,43,44,53,48,49,50,51,52,3],outputjax:[31,15,49,29,38,23],fill:[50,52],again:[45,0,36,49,47],iiiint:45,googl:4,pmod:45,reduct:50,valid:[30,13,50],you:[1,2,3,4,39,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,32,34,35,36,37,38,5,40,41,42,44,45,46,47,48,50,51,52,53],trash:49,wthin:7,sequenc:[12,7,34,16,45,29,18,48,36],symbol:[45,19],dashv:45,track:[51,4],menuset:[39,21,33],reduc:[45,7],mathcolor:45,lbrace:45,directori:[0,41,14,48,43,49,29,17,39,19,38,21,18,34,10,7,23],descript:[26,42,2,5,6,31,21],lbrack:45,scroll:35,calle:37,potenti:53,escap:24,dst:36,negthickspac:45,represent:51,all:[0,1,29,45,6,7,12,13,14,39,17,18,19,38,21,22,25,26,27,28,2,30,31,36,37,5,40,34,42,43,53,48,50,51],consider:7,illustr:47,dollar:[45,13,47,5,19,7],abil:[50,51,13,34,14],follow:[39,13,41,14,27,30,15,44,45,29,47,5,19,38,18,34,51,7,37,3,25],alt:[2,21],disk:[39,19,7,34],children:40,scr:45,articl:43,init:37,program:[31,1,48,15,49,53,29,19,22,51,37],smile:45,introduc:7,programmat:32,multlin:[45,24],vert:45,far:[0,28,34,17],renewcommand:45,prooblem:45,"1px":[11,45,3],verb:45,mechan:[28,27,16,53,29,18,48,37],loadcomplet:[0,36,38],veri:8,strang:40,list:[1,29,45,6,8,9,35,36,18,20,21,23,24,26,27,42,33,34,10,7,5,41,49,53,46,47,51,52],"_html":50,emul:50,adjust:[41,2,47,20,8,35,7],displaylin:45,small:[41,14,17,45,24,51],preceed:[5,21],dimens:14,getalljax:[36,47],lll:45,tex:[1,2,45,6,7,8,9,10,12,13,14,39,18,19,24,21,22,25,26,31,32,34,35,36,38,5,40,41,43,53,47,50,51],zero:16,design:[40,2,4,39,22,35],pass:[0,13,14,27,28,16,53,29,46,18,30,51,36,37,25],overlin:45,further:[16,53,38,51],what:[0,4,45,6,12,36,14,19,20,21,22,26,27,42,33,34,7,5,40,41,46,47,50,51],sub:31,sum:[45,27],ast:45,abl:[13,41,27,1,19,2,47,18,6,21,8,22,34,35,7],delet:41,version:[12,13,34,14,47,29,2,4,31,39,19,38,7,33,49,10,36,23],sup:45,method:[11,0,13,37,27,28,16,53,2,17,18,30,38,7,48,10,36,23,47,49],hasn:[0,10,13,23,17],full:[0,14,39,15,2,47,5,30,21,22,7],exectu:27,geqslant:45,modular:[22,40],ggg:45,ineffici:[37,21],modifi:[12,13,1,47,45,17,39,19,38,7,18,36,23],valu:[0,29,45,6,9,11,14,16,18,20,21,24,25,26,27,30,33,36,37,5,40,41,42,44,53,46,47,51,52,3],search:[22,12,36,4],sender:18,prior:[45,21],amount:[6,24,27],action:[0,7,27,28,31,16,45,2,17,18,30,29,38,43,33,48,51,36,47,53],mathjax_wikipedia:2,mml_htmlormml:[13,1,2,39,19,8,50,35,7],magnitud:50,llap:45,via:[0,1,29,39,6,13,14,17,18,19,38,49,25,27,2,33,34,7,37,40,41,53,51],shorthand:47,filenam:[30,13,2,7],href:[45,44,14],inappropri:18,emptyset:45,famili:[45,0,3],decrement:16,establish:39,select:[40,34,46,39,20,50,36],proceed:[53,44],x41:45,distinct:15,ctrl:21,regist:[0,7,28,43,29,18,48,38,10,36,23,51],two:[18,48,44,45,39,19,24,21,3,50,7,53,25],offseti:41,taken:[18,45,53,50,47],imath:45,basi:[50,7,52],more:[39,6,8,10,13,14,16,19,20,21,22,27,30,36,32,34,35,7,37,38,28,41,43,44,53,47,48,50,51,52,3],flat:45,diamond:45,desir:[39,37,2,34],henc:34,ital:[0,21],flag:21,aleph:45,particular:[11,0,7,34,27,30,43,16,3,45,19,28,48,50,51,36,37],known:53,upsilon:45,mathml3:40,cach:[18,7],showmathmenumsi:[39,20,14],none:[28,26,41,27,42,5,30,21,51,7],eta:45,mmlorhtml:[39,50,52,21,25],det:45,dev:4,histori:[18,28,29,43],remain:[39,43],paragraph:[45,6,51,47,19],caveat:[19,34],def:[45,24,37],deg:45,scan:36,myspan:44,challeng:39,registr:38,share:[19,7,34,4],accept:[30,27,47],succneqq:45,minimum:[36,41,14],unreli:13,explor:[0,14,45,2,46,17,39,30,21,50,51,7,25],phrase:[45,19],mathinput:47,huge:45,cours:[53,13,40,7],newlin:[45,14,17],awkward:37,secur:[34,2],rather:[0,29,45,6,9,13,14,16,18,19,38,21,22,49,25,27,7,37,5,40,34,53,47,48,50,51,3],anoth:[28,34,16,53,17,18,48,10,47,51,25],comfort:34,csc:45,snippet:[11,12,26,42,4,5,6,44,21,36],ddagger:45,stix:[41,14,43,45,6,34,51,7],simpl:[50,44,21,17],css:[0,2,45,6,9,12,13,14,19,20,21,23,25,36,31,32,33,34,7,39,40,41,43,49,3,46,47,50,51,52],unabl:6,resourc:14,referenc:6,iphon:14,variant:43,reflect:[29,47],vdash:45,mstack:40,impliedbi:45,associ:[51,41,27,49,30,20,34,10,36,23,38],curlywedg:45,mytim:30,github:[13,34],footer:7,confus:13,ambigu:15,caus:[0,40,34,53,30,49,45,46,17,5,19,31,24,21,7,18,51,36,28,38,47],callback:[0,31,27,28,15,16,53,29,47,18,30,38,43,48,36,49],firefox3:41,merror:3,unrhd:45,help:[12,13,34,4,19,46,50,7],soon:[7,2,21,47],trade:[50,7],through:[45,13,34,14,28,53,46,18,48,40,50,51,7,37,25],hierarchi:[7,34],paramet:[0,29,45,11,13,14,16,17,19,24,21,23,25,26,27,28,30,36,10,7,37,38,39,42,49,47],style:[11,0,41,14,12,43,44,45,29,46,17,5,6,20,21,33,51,36,49,3],arial:45,x221a:40,processupdatetim:36,x221e:51,late:[43,2],isreadi:[31,29],pend:16,amsmathaddit:53,mathplay:[50,2,14,46,21],might:[0,13,34,30,53,4,18,19,24,7,51,40],alter:[5,47],good:[53,2,4],"return":[11,0,40,37,27,28,16,53,17,18,30,38,47,48,10,36,23,49],textstyl:45,hslash:45,getelementbyid:47,rlap:45,funciton:38,mathscr:45,instruct:[44,19,13,2,1],bigcup:45,easili:[22,51],iff:45,x2212:[19,51],found:[0,19,4,30,21,10],unicod:[45,6,40],x2211:51,button:34,subsystem:29,originaltext:49,weight:[44,37],hard:[34,14,4,39,19,7],realli:[30,21],nless:45,connect:[39,30,51,7],beyond:4,orient:[15,37,31,29],nleq:45,looparrowright:45,shortcom:48,skiptag:5,asynchorn:[53,47],print:[22,3,34],occurr:48,msie:[36,20,52],foreground:3,assist:7,safari3:41,advanc:[15,12,22,7],offsetx:41,symbian:14,mml:[31,52,39,19,10,49,51],reason:[0,40,30,53,2,46,17,45,19,24,50,36,38],base:[13,41,1,48,15,29,2,31,6,50,38,49,22,34,7,37],typeet:47,sbe:29,put:[0,13,34,48,45,19,7,25],mathr:45,asn:51,ispc:[36,29],succnapprox:45,stanard:45,drupal:1,msbm10:19,showprocessingmessag:[21,25],perhap:[30,7],bumpeq:45,elementjax:[31,15,29,38,10,49],stixgener:45,getelementsbytagnam:2,assign:[5,30],major:[22,50,7,2],dont:51,boxplu:45,feel:4,exchang:43,lastnam:30,number:[0,1,39,6,13,14,17,19,44,21,49,24,27,30,36,10,7,38,31,34,23,53,50],fadeoutstep:6,done:[16,53,7,29,51],construct:[53,51],blank:[28,27,47],stabl:[7,34],miss:[45,27],differ:[45,7,34,27,30,53,47,18,19,48,50,51,36,37],script:[0,1,29,45,7,8,10,11,13,14,39,18,19,38,21,23,2,32,35,36,5,34,49,53,47,50,51],interact:[22,19,51,7,49],smoother:6,least:[50,51,36,7],statement:[53,27],illeg:[44,7,14],store:[11,28,13,41,14,27,49,53,47,30,31,32,7,10,36,23,51],option:[39,6,8,9,12,5,13,19,20,21,24,25,26,42,36,32,33,7,37,38,45,41,44,46,51,52],nleftarrow:45,triangleleft:45,ntrianglerighteq:45,selector:[3,21,17],tex2jax_process:5,part:[39,40,34,27,48,45,8,2,5,19,24,18,22,50,51,7,37,53],pars:[45,14],binom:45,cosh:45,kind:51,aaa:24,prebuilt:19,whenev:[28,40,34],remot:34,remov:[28,7,14,47,49,17,5,21,51,36,23],dtd:19,bridg:[13,49],arrang:27,ffff88:3,comput:[34,36,41],nleqslant:45,img:[26,3,2,5,42,44],preovid:45,packag:[43,7,34,32],expir:11,"null":[11,0,26,41,14,27,28,37,2,17,5,6,31,38,21,47,42,10,36,23,49],built:[12,13,2,50],equival:[11,27,53,47,39,30,44],lim:45,self:[19,40,14],ell:45,also:[2,4,39,11,5,13,15,17,18,19,20,21,49,27,30,34,7,37,45,40,41,43,46,47,48,51],brack:45,build:19,brace:45,distribut:[19,35,13,34,7],index:[19,34,1],addel:11,reach:7,react:28,most:[18,31,34,14,1,43,29,3,2,39,19,38,27,50,7,37],plan:19,rho:45,alpha:45,rhd:45,vardelta:45,componet:7,clear:[28,41,27,29,17,18],tpl:1,exp:45,starup:21,usual:[27,30,53,45,6,38,21,51,7],leftroot:45,cdata:14,nshortparallel:45,carefulli:[44,47],cdn:[13,34,14,1,2,47,45,19,32,8,50,35,7],finv:45,particularli:[39,50,34],rightleftarrow:45,font:[0,45,6,12,13,14,17,19,44,21,22,24,34,7,20,41,43,3,46,47,48,51],find:[36,4,47,6,32,8,50,51,7],preremoveclass:21,execut:[0,27,16,53,29,18,30,51,7],pretti:34,solut:[19,51,34,4],delayedx:27,"public":34,queu:[16,53,7,27,28],factor:[20,41,14,21],noerror:[39,19,45],tagsid:[24,25],precnsim:45,express:[18,28,53,5,24,21],strut:45,nativ:[40,15,2,39,22,50,51,52],mainten:13,greasemonkei:[7,2],restart:[5,16,53,7,34],ie9:[50,34,14],ie8:[50,14],ie7:50,ie6:41,vmatrix:45,common:[12,13,1,19,43,44,45,39,6,40,7,36,38],set:[0,29,39,6,7,9,11,5,13,14,17,18,19,20,21,49,24,25,26,27,28,2,30,32,33,34,36,37,45,31,41,42,43,44,53,46,47,48,51,52,3],overrightarrow:45,startup:[12,7,14,47,2,53,29,31,18,38,21,36],see:[0,29,4,39,6,7,8,10,5,13,14,16,18,19,20,21,25,26,27,28,30,32,33,34,35,36,45,40,41,42,43,53,46,47,48,50,51,3],sec:45,arg:45,ams_hml:7,disadvantag:50,langl:45,inconveni:13,someth:[45,34,4,47,5,19,21],particip:4,won:[53,7,34,14],subscript:[45,14],experi:21,altern:[45,0,51,37,30],numer:[36,40],complement:45,javascript:[0,1,2,45,6,8,12,13,15,18,19,20,21,22,49,24,25,27,30,33,35,7,37,39,31,41,43,44,53,46,47,48,50,51,3],isol:14,mailbox:[18,43],bmatrix:45,consumpt:14,distinguish:10,longrightarrow:45,errat:7,classnam:2,popul:29,closur:[30,27,47],last:[0,34,27,16,3,45,36,25],delimit:[45,13,14,5,19,51,7],hyperlink:51,event:[0,14,43,2,47,18,48,21,51],nvdash:45,context:[5,46,21,27],overset:45,hbar:45,whole:[26,48,47,5,42,36],load:[0,1,2,45,7,10,12,13,14,16,17,18,19,38,21,22,23,27,28,29,30,32,35,36,39,31,34,43,53,47,48,50,51],markdown:51,simpli:[39,13,34,27,42,16,45,47,5,30,26,21,7,22,36,38,32],point:[45,16,7,19],instanti:37,schedul:30,usemathmlspac:9,header:[7,34,1,8],suppli:[36,49,27],simplu:38,mistak:44,zeta:45,laod:[7,38],gneq:45,devic:[13,14,7],due:13,empti:[31,41,27,53,29,21,51],"_htmlormml":50,dur:36,strategi:50,invis:34,fire:[29,7,2,30],imag:[13,41,14,42,44,2,5,6,26,22,34,7],coordin:[16,53,51],understand:[39,51],demand:39,urcorn:45,sqcap:45,blacksquar:45,look:[11,45,40,41,27,1,28,3,4,17,5,19,47,8,34,51,36,25],solid:[11,45,3],pitchfork:45,lvert:45,"while":[11,0,13,34,19,52,45,2,18,6,40,21,48,50,51,7,28,53],blacktriangleleft:45,nprec:45,behavior:[13,34,21,7],circlearrowright:45,bookmarklet:7,everyon:18,loop:[24,49],pack:14,subsect:38,measuredangl:45,readi:[39,18,38,29,31],jpg:[5,42,26,44],biguplu:45,itself:[45,13,34,27,28,16,53,29,31,18,3,40,21,7,49,51,36,37,38,25],rightarrow:45,xleftarrow:45,shorten:17,shorter:14,redisplai:17,unexpectedli:[45,19],conflict:[51,14],upuparrow:45,optim:[50,14],domin:43,alert:[18,30,53,27],moment:[19,10,34],hander:21,temporari:7,user:[2,4,45,6,12,17,18,19,20,21,22,27,32,33,34,7,39,40,41,46,47,50,51],robust:[18,43],stack:24,recent:[22,2],lower:[31,14,29,17,45,21],task:45,older:[7,34],entri:[43,16,3,14],searchabl:22,person:30,textit:45,expens:50,normals:45,scriptsiz:45,fallingdotseq:45,explan:19,rvert:45,obscur:[14,17],mathinn:45,amp:[45,14],regardless:47,cup:45,blacklozeng:45,ffeeee:45,notifi:18,input:[2,45,8,9,35,13,14,18,19,38,21,23,24,25,36,31,32,10,7,37,39,40,43,49,53,47,50,51],subsequ:[45,38],oslash:45,trueli:47,march:12,konqueror:[50,36],big:[45,34,25],moodl:1,tomathml:[39,49],game:45,insert:[26,27,2,5,42,38,21,8,35,36,23,51],bit:[20,37],diagup:45,onchang:47,semi:3,varkappa:45,signal:[28,7,27,48,15,29,31,18,30,38,43,36],altough:30,resolv:14,collect:[30,53,49,3,27],"boolean":36,popular:[19,32,1],swarrow:45,scrip:13,often:[45,19,51,3],lastest:4,creation:[10,29],some:[1,2,45,6,13,15,16,18,19,20,21,22,23,25,27,30,36,34,10,7,37,38,39,40,41,49,53,47,50,51,52],back:[6,34,49],emph:45,global:[15,50,31,27,47],urgent:7,sampl:[34,48,3,29,47,18,19,21,50],instal:[12,13,41,14,19,50,45,6,8,22,34,7],scale:[22,20,41,14,21],delimt:5,substitut:24,mathemat:[0,2,39,6,8,10,5,7,14,18,19,20,21,22,23,24,26,42,32,33,34,35,36,38,45,40,41,43,49,53,46,47,50,51],larg:[45,0,13,7],temprorari:7,slash:[],prod:45,reproduc:47,sqsubseteq:45,tex2jax:[39,13,14,47,45,2,31,5,19,40,21,51,7,25],cgi:0,garamond:45,previou:[30,53,28,27,17],run:[0,2,5,6,9,36,16,18,19,20,24,26,27,29,42,34,7,28,40,41,30,53,47,48,50,51,52],doteqdot:45,odot:45,step:[6,51,29,1,19],hookleftarrow:45,varsubsetneq:45,impor:34,impos:34,ngeqslant:45,reappear:17,materi:[14,47],dialog:14,rangl:45,succcurlyeq:45,block:[13,41,14,19,29,2,45,6,20,21,51,7,38],file3:53,file2:[0,53],file1:[0,53],file4:53,bmod:45,within:[0,13,34,14,27,19,15,45,40,29,7,47,5,6,24,32,30,48,51,36,37],prec:45,notat:[43,45,19,22,51,7],isjax:36,announc:48,triangl:45,question:[19,38,4],submit:4,custom:[45,14,17,39,19,22,50],adjac:14,perp:45,includ:[0,1,29,45,6,7,9,13,14,39,15,18,19,20,21,22,24,25,26,27,2,30,31,32,33,34,10,36,38,5,40,41,42,44,53,46,47,50,51,52,3],suit:[6,13,40,7,19],nativemml:[40,52,46,39,20,50,51,23,25],overleftrightarrow:45,ulcorn:45,doctyp:[19,40,50],poster:28,atop:45,loadhook:[0,36,30],serif:[45,0,3],link:[13,34,14,1,19,15,6,48,7],translat:[51,10,38,23,14],delta:45,line:[45,13,34,14,1,29,2,5,19,26,7,50,51,40,25],consist:[45,44,53,40,50],rmoustach:45,qquad:45,divideontim:45,geqq:45,similar:[48,34,27],enlarg:33,constant:[18,24],doesn:[18,41,27,49,45,2,39,21,34,7,37],repres:[11,26,19,3,17,5,6,44,21,22,42,23,51],mathdiv:[11,30,53,47],opera10:41,guarante:[0,53,47,16],constortium:22,phantom:45,bigoplu:45,iiint:45,titl:[19,47],sequenti:[48,53,29],invalid:[45,44],llcorner:45,toaudibl:49,bracket:[45,44,21],shoveleft:45,xrightarrow:45,department:34,supseteq:45,nice:2,delayclear:41,msup:[19,51],alttext:42,varsubsetneqq:45,eval:27,newcommand:45,svn:[19,13,34],rightharpoonup:45,land:45,mimetyp:[49,10,38,23],svg:[51,14],supseteqq:45,liminf:45,depth:45,dot:45,hello:30,prototyp:37,code:[0,2,4,39,8,11,12,5,13,16,18,19,20,21,26,27,28,29,30,36,7,45,31,42,43,44,53,47,48,3],partial:45,queri:51,tiddlywiki:1,edu:34,privat:[48,38,34],elsewher:47,send:[18,28,7],becam:43,sens:51,sent:[18,28,36,43],actiontyp:41,unzip:34,gnsim:45,xxxxxxxx:[19,34],mous:[51,46,41,14,33],tri:[45,0,13,41],ischrom:36,mathit:45,forefox:2,geograph:7,fewer:39,"try":[34,4,18,19,38,37],userscript:2,maction:[41,14],pleas:[44,4],impli:[45,40],smaller:[39,0],fortun:18,natur:[22,19,45,34,51],varupsilon:45,download:[0,13,34,14,6,19,21,51,7],fullnam:30,hspace:45,click:[41,46,39,20,21,33,8,34,51,7],append:[11,34],compat:[43,50,7,14,21],appendchild:[11,2],turn:[11,39,13,27,28,5,20,40],access:[45,34,14,1,30,49,53,46,39,19,28,22,7,37],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],can:[0,2,4,39,6,7,11,5,13,14,16,17,18,19,20,21,22,23,25,27,28,29,30,31,32,34,10,36,37,38,45,40,41,43,53,47,48,50,51,3],vargamma:45,varsigma:45,leq:45,let:[13,34,44,2,46,19,40,50,36,52],sinh:45,becom:[13,34,27,53,4,18,40,37],sinc:[0,45,13,14,39,16,18,19,20,21,24,27,36,7,37,28,40,53,47,48,50,51,3],tex4ht:51,rtime:45,convert:[12,40,27,45,2,17,5,32,22,51,23],convers:45,larger:[39,19,51,7],technolog:[39,22,7,4],zscale:21,circledast:45,chang:[13,41,14,1,47,2,46,17,19,20,7,34,51,36,49,24],honor:34,chanc:[5,18,28,19],firefox:[34,14,2,50,36,52],rgroup:45,appli:[45,34,7,37],iskonqueror:36,lessgtr:45,api:[15,12,22,19],smallmatrix:45,cloud:[13,7],from:[0,1,29,45,7,10,12,13,14,17,18,19,24,21,23,26,28,2,30,32,34,35,36,37,38,5,31,41,42,49,53,46,47,50,51],zip:[19,34,14],commun:[18,12,4,19],chi:45,doubl:[39,7,24,21,33],upgrad:[6,34,4,12],varphi:45,next:[45,48,49,47],implic:34,few:[45,19,34,32],msqrt:[19,51],bowti:45,panel:45,preformat:14,src:[39,13,1,42,44,45,2,47,5,19,26,32,7,8,50,35,36,53],nsubseteq:45,doublebarwedg:45,projlim:45,"4ac":19,rare:53,versionatleast:36,account:11,alik:2,retriev:11,augment:[37,10,38,23],aperson:30,thin:24,assum:47,control:[39,26,41,19,45,3,7,46,50,5,6,20,21,33,42,34,9,36,52,24],tau:45,lesseqgtr:45,tar:34,process:[0,2,39,7,11,12,5,13,14,16,17,18,19,24,21,23,25,26,29,30,32,10,36,38,45,40,42,49,53,47,50,51,52],dfrac:45,newmath:47,high:[22,50,51],tag:[1,29,45,8,13,14,18,19,44,21,23,24,25,2,42,36,32,10,7,5,40,34,49,47,51],tan:45,prece:30,delai:[0,7,41,27,28,46,17,39,21,33,18,36],gcd:45,pure:40,getelementsbytagnamen:2,subdirectori:[34,10,23,49],instead:[45,13,34,14,30,16,53,47,18,19,51,7],class4:37,class2:37,sin:45,sim:45,class1:37,simplesup:37,frac:45,overridden:[41,23,17,38,49,10,37],mspace:[45,19,40,14],anothermethod:37,frak:45,filtertext:17,redund:[37,21],essenti:[39,45,51,7,37],light:[45,37],correspond:[36,41,32,7],element:[29,39,6,11,5,36,14,18,19,44,23,26,28,42,40,10,7,37,45,31,41,49,53,47,48,51,3],issu:[0,40,4,17,21,51,7],unaccept:50,allow:[1,2,45,13,14,17,18,19,44,21,22,24,30,33,34,7,37,28,40,41,43,53,46,20,3],fallback:[34,41],mjx:11,fastest:50,nonumb:[],move:[34,13,41],nsucc:45,comma:[3,2,45,21,7,25],dagger:45,mathjax_tooltip:41,movabl:[35,1],chosen:50,coth:45,varxi:45,therefor:45,pixel:41,multimap:45,crash:21,greater:45,handl:[0,13,14,48,43,45,40,2,31,18,6,20,7,53,36,52,38],supsetneq:45,nokia:14,innermost:44,dai:11,maxbuff:24,front:[39,14],successor:32,gggtr:45,sourceel:[18,49,23,47],anyth:[18,25,4],edit:[7,1,8],smallfrown:45,mode:[45,41,14,5,19,32,50,34,51],varomega:45,"2em":45,genfrac:45,subset:45,delaypost:41,nointerest:28,meta:50,"static":37,our:[13,34,14,4,19,35],meth:38,acut:45,special:[45,40,30,3,5,19,21,7,48,22,50,51,36],out:[0,13,41,53,18,6,20,50,34,51],variabl:[31,27,15,2,29,47,45,30,37],lesseqqgtr:45,matrix:45,stub:38,rel:[0,20,41,14],moveabl:[35,1],circlearrowleft:45,ref:36,math:[29,39,7,11,12,5,13,14,17,18,19,20,21,22,26,2,42,32,33,34,10,36,38,45,40,41,43,46,47,48,50,51],negthinspac:45,nsucceq:45,insid:[14,1],workflow:40,manipul:47,eqslantgtr:45,releas:[19,7,2,34],afterward:30,indent:[24,21],could:[0,13,30,15,45,4,47,18,19,40,7,51,36,49,53],ask:[4,47,19,24,51,7],succ:45,keep:[13,34,1,43,47,45,19,50,51,7],gtreqqless:45,length:[2,27],outsid:[5,50],"0em":21,scriptstyl:45,softwar:[22,19,51],rbrace:45,blogger:1,rbrack:45,qualiti:[22,50,51],spadesuit:45,date:[19,13,34,14,7],uplu:45,clubsuit:45,bigsqcup:45,suffic:19,"long":[45,19,53,14,46],start:[0,13,34,27,12,44,45,29,48,51,18,19,38,21,8,35,7,28,53],unknown:40,system:[34,1,19,4,45,6,22,50],messag:[0,13,34,43,19,15,45,29,48,17,39,6,31,38,21,18,36,28],attach:[18,28,48],termin:5,"final":[13,30,45,19,44,22,51],rsh:45,supset:45,"1em":40,gtreqless:45,hdashlin:45,exactli:50,blind:51,ipad:14,gtrdot:45,subsetneq:45,structur:[0,7,27,19,43,47,18,30,31,36,25],charact:[45,40,41,14,3,5,6,24,21,51],htaccess:34,seriou:51,disrtibut:13,bet:34,exhibit:34,deliveri:[19,14],biggl:45,biggm:45,rrightarrow:45,unkown:36,have:[0,1,29,4,45,6,13,14,39,18,19,20,21,49,25,27,28,2,30,36,34,7,37,5,40,41,53,47,48,50,51],tabl:40,close:[40,14,19,4,39,6,25],nsim:45,border:[11,45,3],min:45,mid:45,which:[1,29,39,7,10,5,13,14,17,18,19,24,21,23,25,26,27,28,2,30,31,32,33,34,35,36,37,45,40,41,42,44,53,47,49,50,51,3],hbox:45,mit:45,singl:[0,13,14,27,48,15,45,47,5,19,31,3,22,7,53],declaremathoper:45,mathjax_preview:[26,3,5,42,21,51],x22d6:45,unless:[19,14,27,50],who:[18,28,4],eight:50,leftthreetim:45,comparison:[53,36],"class":[37,45,31,14,27,28,15,16,5,38,21,49,10,23,51,32],underset:45,placement:14,url:[0,13,34,14,2,46,39,19,7],gather:45,request:[0,14,28,45,29,18,30,50,7,53],face:[34,4,6,24,41,25],inde:[2,25],movablelimit:14,nmid:45,determin:[7,41,1,29,45,20,21,36],flux:53,occasion:7,fact:[28,13,38],atopwithdelim:45,backsimeq:45,mathjax_messag:17,text:[1,29,39,6,8,11,5,13,14,17,18,19,20,21,22,49,24,26,2,30,32,35,7,45,41,42,44,53,47,50,51],verbos:[43,30,21],perfom:48,perfor:50,bring:51,woth:40,curlyeqsucc:45,lgroup:45,locat:[0,13,34,6,29,47,5,19,26,21,7,18,42,36,23,51,32],jax:[29,39,9,13,14,15,18,38,21,23,24,25,2,36,32,10,7,37,20,31,41,43,49,3,47,50,51,52],vartriangleright:45,forev:2,should:[2,39,8,10,5,13,16,19,24,21,23,26,27,28,30,36,32,35,7,38,45,40,34,42,44,53,47,50,52,3],imagefont:[6,41],vartriangleleft:45,suppos:[30,13,47],"5px":11,triangleright:45,"5pt":19,local:[34,27,19,53,2,47,6,21,7],hope:[6,13],precsim:45,overleftarrow:45,fontwarns:3,increas:[13,14],ignoreclass:5,leqslant:45,smash:45,enabl:[45,13,1,5,19,8,35,7],organ:51,frown:45,stuff:36,she:50,contain:[0,1,2,39,6,11,5,36,15,16,17,18,19,38,21,49,26,27,28,30,34,7,45,31,41,42,53,47,51,3],view:[40,41,15,2,19,32,50,22,34,7],attibut:3,coooki:11,frame:17,apolog:13,temporarili:17,substack:45,issafari:36,mathord:45,statu:[0,34,30],error:[0,13,45,2,4,39,19,40,21,10,36,23,38],jmath:45,pattern:[5,21],thumb:53,gtrsim:45,favor:13,written:[19,8],quickest:19,theta:45,neither:[6,44],equiv:[45,50],omicron:45,nshortmid:45,kei:[11,0,27,28,16,18,21,36],entir:[36,7,47],closebox:6,ker:45,addit:[0,13,14,27,19,16,45,3,7,47,39,6,40,21,30,18,10,36,23,53,49],skipstartuptypeset:21,plugin:[1,46,21,8,22,50,51],admin:[35,8],nabla:45,equal:[53,36,37],gnapprox:45,etc:[45,53,7,21,47],instanc:[11,7,49,53,38,36,37],equat:[39,26,41,14,42,45,47,5,19,24,21,50,22,34,51,49],futher:50,class3:37,eth:45,limiti:34,lmoustach:45,html5:[50,13,14,7],comment:[14,3,39,19,21,7],varnoth:45,arriv:[18,48],solv:[7,2],arguement:30,respect:[20,41,27],quit:47,showfontmenu:46,"55em":45,quotat:3,compos:40,compon:[0,29,45,13,39,15,18,19,22,23,25,36,40,10,7,37,28,31,3,46,48,51],treat:[45,19],immedi:[0,16,53,29,47,18,7],smallsetminu:45,both:[0,13,14,30,43,53,29,39,19,40,21,7,8,35,36,37],alignat:45,varsupsetneq:45,otf:[34,14],psi:45,togeth:[13,27,53,39,40,36],injlim:45,present:[28,40,4,6,21,7],twoheadrightarrow:45,multi:45,iscallback:27,plain:45,align:[45,40,21],contextu:[12,40,41,46,39,20,21,33,51,49],studentdisplai:47,defin:[45,13,41,33,19,29,53,2,7,46,39,6,20,38,21,30,3,36,37,24,25],glossari:[43,12],layer:[14,1],almost:45,curvearrowright:45,site:[13,34,1,39,19,21,22,35,7],archiv:[19,34],substanti:[13,7],revis:34,halt:48,welcom:4,displaystyl:[45,47],parti:18,cross:34,sqrt:[45,19,51],getx:37,extensiondir:38,oint:45,android:14,cssid:[45,14],difficult:[30,40,48],phi:45,http:[13,34,1,2,46,47,45,19,32,8,50,35,7],lleftarrow:45,"8em":[45,24],effect:[16,53,2],mrow:[19,51,40],student:47,php:[1,8],trake:4,executehook:[28,27],off:[45,14,39,48,20,50,7],center:[45,21],well:[18,34,27,30,3,4,47,39,19,38,21,48,50,7],exampl:[0,2,4,45,6,7,9,11,13,14,16,18,19,20,21,23,24,25,26,27,28,30,31,32,33,34,10,36,37,5,40,41,42,44,53,46,47,48,49,50,51,52,3],command:[40,34,27,43,16,53,29,47,45,21,7,36],choos:[45,19,50],undefin:[45,19,27,30],setx:37,subsetneqq:45,sibl:14,latest:[13,34,1,2,47,45,19,32,8,50,35,7],curlyeqprec:45,paus:34,less:[45,34,5,19,51,36],natiov:20,obtain:[13,34,47,39,19,21,51,7,23],mistaken:51,mathclos:45,mathoutput:47,simultan:[53,29],web:[12,13,41,14,1,19,29,45,2,47,18,6,32,48,22,34,51,7,28,53,49],current_them:1,smith:30,textbf:45,cdotp:45,add:[39,13,14,1,16,45,5,6,38,21,49,50,37,3],other:[0,1,29,45,7,13,14,39,16,17,18,19,20,21,22,49,27,28,30,32,34,36,37,38,5,40,41,43,53,47,48,50,51,52],match:[5,28,41],webpag:32,piec:14,ntriangleright:45,punctuat:14,know:[28,30,2,18,19,10,7,23,51],cfrac:45,press:21,recurs:[36,14],loss:7,nofont:6,like:[2,45,14,16,17,18,19,22,25,27,28,30,32,10,7,5,40,34,43,53,47,48,50,51,3],lost:30,messagehook:[18,28,36],necessari:[22,19,36,49,7],page:[1,29,45,6,7,8,11,12,13,14,39,15,17,18,19,20,21,22,49,26,28,2,30,32,34,35,36,5,40,41,42,53,46,47,48,50,51],captur:43,settext:11,linux:36,bigve:45,"export":49,superclass:37,proper:[28,36],home:0,librari:[15,53,31,34],glyph:[45,43],kern:45,leak:49,avoid:[13,14,45,44,21,51,40],tooltip:41,leav:[11,24,52,47],doublecap:45,supsetneqq:45,preload:[0,19],twoheadleftarrow:45,daleth:45,upharpoonright:45,journal:43,usag:12,host:[13,7],sphericalangl:45,although:[15,28,34,52],offset:41,simpler:17,varepsilon:45,about:[18,13,41,14,27,19,45,7,4,47,39,6,20,21,30,48,34,51,36,28],ams_html:[45,13,47,39,32,7],actual:[11,0,40,27,16,45,47,18,30,21,7,10,36,23,53],column:24,mathajx:13,mod_head:34,mapsto:45,constructor:37,fals:[39,41,14,28,45,2,46,5,20,21,9,36,37,25],disabl:[20,13,41],eqalign:45,own:[13,34,14,19,15,53,4,45,6,48,50,10,7,23,51,25],amsmath:[45,13,53,39,19,24,7],circledr:45,reprocessor:40,automat:[45,16,53,17,5,19,38,50,51,7,37],bigtriangledown:45,guard:21,vphantom:45,merg:[11,36],dcocument:36,transfer:[19,34],support:[12,13,41,14,19,29,45,2,4,31,39,6,20,7,22,50,51,40,52],much:[18,43,7,50,48],bigcap:45,tracker:[19,4],arg1:30,"var":[11,27,53,2,47,18,30,37],arg2:30,"function":[0,27,28,43,2,45,29,48,47,18,30,16,51,36,37,53],propto:45,unexpect:[20,21],precnapprox:45,studentansw:47,bodi:[0,13,47,19,10,7,23],gain:[50,46],inlin:[5,19,13],bug:[11,13,34,14,4,17,19,21,51,7],count:2,made:[34,53,4,48,51,49,25],bbbk:45,whether:[45,26,41,42,2,46,47,5,30,20,21,7,9,36,52],wish:[13,30,3,2,4,45,19,50,36],displai:[45,6,11,12,14,17,18,19,24,21,22,49,26,32,33,7,5,40,34,23,46,47,51],troubl:19,underleftrightarrow:45,asynchron:[0,31,27,28,43,16,53,18,30,48,36],gtrapprox:45,below:[1,45,6,9,11,36,19,44,21,23,24,26,42,33,50,34,10,7,5,41,49,46,48,20,51,52],limit:[11,0,40,45,24,7],otherwis:[0,7,27,45,17,39,19,31,8,50,36,37],problem:[13,34,14,30,2,4,45,19,50,51,7],x03c0:51,"int":[11,45,30],dure:[14,27,18,38,36,49],novemb:13,implement:[11,0,13,15,45,39,30,40,18,50,51,37,38],nolimit:45,inf:45,rightleftharpoon:45,probabl:[18,30,7,1],oplu:45,helpurl:46,immateri:53,percent:[20,41],detail:[0,39,6,7,8,12,5,13,14,16,18,19,20,21,26,27,28,42,32,33,34,35,36,45,40,41,53,46,47,48,50,51],arctan:45,book:43,futur:[0,4,17,18,48,50,49],branch:[7,34],varieti:51,downlaod:[22,34,14],removeaft:6,mehtod:38,repeat:[34,1],star:45,liter:5,thicksim:45,msgroup:40,stai:7,sphinx:1,scientif:43,reliabl:[50,13,2,7],rule:[45,6,9,53,21],mathjax_mathml:2,portion:47,eot:34},objtypes:{"0":"py:method"},titles:["The MathJax.Ajax Object","Using MathJax in popular web platforms","Loading MathJax Dynamically","CSS Style Objects","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 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","The NativeMML output processor","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","Describing HTML snippets","MathJax TeX and LaTeX Support","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","Using Queues"],objnames:{"0":"Python method"},filenames:["api/ajax","platforms/index","dynamic","CSS-styles","community","options/tex2jax","options/FontWarnings","configuration","platforms/wordpress","options/MathML","api/inputjax","api/html","index","upgrade","whats-new","api/index","api/queue","api/message","signals","start","options/NativeMML","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","HTML-snippets","tex","options/MathMenu","typeset","synchronize","api/elementjax","output","model","options/MMLorHTML","queues"]})
-\ No newline at end of file
+Search.setIndex({objects:{"":{reset:[26,0,1],Preloading:[0,0,1],Log:[16,0,1],Subclass:[37,0,1],Delay:[26,0,1],Init:[37,0,1],getAllJax:[30,0,1],Interest:[39,0,1],Translate:[38,0,1],Config:[30,0,1],addElement:[9,0,1],Reprocess:[30,0,1],Styles:[0,0,1],ExecuteHook:[39,0,1],loadTimeout:[0,0,1],Resume:[15,0,1],Update:[30,0,1],fileURL:[0,0,1],loadHook:[0,0,1],formatError:[30,0,1],call:[15,0,1],getJaxByInputType:[30,0,1],PreProcess:[30,0,1],Post:[39,0,1],has:[37,0,1],Clear:[16,0,1],Insert:[30,0,1],Register:[38,0,1],TextNode:[9,0,1],Augment:[37,0,1],Signal:[26,0,1],addText:[9,0,1],Remove:[16,0,1],Element:[9,0,1],Queue:[26,0,1],NoInterest:[39,0,1],Suspend:[15,0,1],getJaxByType:[30,0,1],Push:[15,0,1],Typeset:[30,0,1],loadComplete:[0,0,1],wait:[15,0,1],Load:[0,0,1],Set:[16,0,1],executeHooks:[26,0,1],Process:[30,0,1],Text:[49,0,1],setText:[9,0,1],loadError:[0,0,1],Startup:[38,0,1],SourceElement:[49,0,1],getJaxFor:[30,0,1],can:[37,0,1],File:[16,0,1],MessageHook:[39,0,1],isJax:[30,0,1],filterText:[16,0,1],isa:[37,0,1],Require:[0,0,1]}},terms:{lvertneqq:28,reprocess:[30,49,47],mathjax_msie_fram:16,four:[45,11],prefix:[9,18,12],asymp:28,blacktriangledown:28,webfont:[5,34,18],whose:[9,36,47,4,29,30,22],biggr:28,under:[31,41],preprocess:[51,30,27,47],slowest:50,worth:36,digit:12,gimel:28,everi:[17,30,36,12],mskip:28,arcco:28,govern:[11,36,18],dotplu:28,affect:[11,41,12,28,30,49,24],isforefox:30,bbfont:[],eqnarrai:28,cmd:20,bigodot:28,ominu:28,red:[28,18,44],categori:45,nparallel:28,showcontext:46,nsubseteqq:28,direct:[34,5,11,41,31],consequ:19,second:[0,11,41,26,29,44,45,48,4,5,31,20,17,35,36,22,53],ngeq:28,even:[44,0,30,13,26,39,15,45,2,28,17,18,31,29,48,21,51,36,47],hide:47,prejax:[51,20],neg:28,weren:11,multlinewidth:23,"new":[27,3,36,9,10,11,12,16,17,18,23,21,22,24,26,35,30,37,39,41,49,45,46,47,48,51],mhtml:1,told:48,limsup:28,elimin:20,abov:[9,28,11,41,12,26,18,45,2,47,4,5,20,29,50,34,36,37],lessapprox:28,blacktriangleright:28,here:[9,39,40,26,29,45,2,47,17,18,38,20,30,49],met:27,lneqq:28,path:[13,0,36,18],noundefin:[13,18,28],interpret:[28,18,41],nrightarrow:28,netowrk:8,forum:[18,3],mbox:28,rceil:28,backprim:28,uproot:28,circleddash:28,mathstrut:28,unix:41,brower:28,thinmathspac:[18,31],unit:12,highli:21,describ:[9,28,11,41,26,18,43,53,27,47,13,5,30,44,29,50,51,36],would:[13,5,36,7,9,11,15,18,19,20,49,23,25,26,28,29,32,33,34,30,37,4,41,42,44,45,46,47,50,51,52,53],bleed:12,vartriangl:28,ltime:28,varlambda:28,call:[0,1,2,4,5,7,11,15,16,17,18,23,20,22,24,25,26,28,29,30,33,34,35,36,37,38,39,41,42,43,49,45,46,47,48,19,51,52],recommend:[18,51,41,50],diretori:41,preview:[4,42,51,25,20],type:[0,1,2,13,36,6,8,9,4,11,17,18,38,20,22,32,35,30,28,31,49,45,47,48,50,51],until:[0,25,39,45,4,29,30,38,20,17,42,36],notin:28,displaymath:[4,36],relat:[0,12],notic:28,warn:[0,11,20,5],eqslantless:28,hold:[0,44,20,33,51,30],unpack:[18,41],must:[0,11,41,18,43,15,28,31,27,16,4,5,50,23,20,33,48,34,36,39,53],fbox:[28,12],join:[17,28],room:23,setup:[21,18,31],work:[9,10,11,41,12,29,28,2,3,47,17,18,31,32,48,21,50,36,37],cc0000:[53,20],tag_nam:41,root:[28,0,27,12,16],overrid:[37,5,35,38,22],mathmenu:[34,53,46,13,19,36,24],give:[39,34,18,44,53,2,17,5,23,24],cirit:36,indic:[0,30,41,39,15,28,27,17,18,38,20,29,49,35,36,22,51],impair:[21,36],hline:28,want:[3,13,11,14,16,17,18,20,22,26,28,29,34,8,36,37,4,41,45,47,50,52],setminu:28,end:[0,31,13,1,50,45,27,3,28,4,6,17,8],quot:[4,34,12,20],hom:28,heartsuit:28,how:[0,1,2,3,4,5,36,6,11,13,15,16,18,19,20,25,26,42,32,33,34,30,39,41,44,28,46,48,51],disappear:[4,42,25],answer:[3,47],verifi:[18,41,3],config:[1,27,4,5,6,7,8,11,13,16,17,18,23,20,22,24,25,2,28,29,30,32,33,35,36,38,19,34,42,45,46,47,50,52,53],varrho:28,updat:[11,41,12,1,45,47,30,20,36,49],showrender:46,recogn:18,lai:[50,51],diagdown:28,after:[0,41,26,39,15,45,2,46,16,17,18,38,20,29,48,34,51,36,47,24],befor:[0,1,27,3,4,36,6,11,15,16,17,18,23,20,26,28,29,33,30,37,38,39,31,34,43,44,45,47,48,50,51],wrong:31,startuphook:[17,30],parallel:[28,45,27,12],averag:51,alignedat:28,attempt:[0,31,46],third:[45,31],leftarrow:28,receiv:[39,11,18,17,29,38,48,36,37],greasekit:2,maintain:[11,48,3,17,29,20],environ:[4,18,28,23,3],enter:[31,47,28,18,51,36],textnod:9,order:[39,11,41,18,43,15,45,27,16,4,5,30,25,20,29,50,42,36,37,51],oper:[0,4,5,7,12,15,16,17,19,21,23,25,29,33,34,38,39,40,41,42,43,45,46,47,50,52],parentnod:[2,12],over:[9,0,34,12,28,46,47,13,18,20,33,51,36],fall:[28,5,45,41,18],becaus:[17,11,34,39,44,45,31,2,28,16,4,18,23,29,51,36,47],boxtim:28,suspend:[17,15,45,39],textrm:28,appar:[50,45],afil:29,flexibl:[44,45,11],vari:50,smallint:28,fit:[17,46],fix:[11,36,41,12],preferredfont:34,better:[12,46,13,18,32,6,50,36],boxminu:28,drawback:50,upharpoonleft:28,persist:3,comprehens:43,easier:[39,11,41,45,28,31,37],moveleft:28,them:[9,0,11,41,12,13,18,15,45,31,28,4,5,30,23,29,17,51,36,39,53],thei:[0,2,3,4,5,7,11,12,13,14,15,16,17,18,19,20,23,24,25,27,28,29,30,33,34,36,38,39,31,41,42,43,44,45,46,47,48,51,52,53],precapprox:28,safe:[9,2,47],"break":[28,48,45,31,12],mtext:[28,18,12],wedg:28,widetild:28,choic:[50,30,6],dbinom:28,leftharpoondown:28,timeout:[0,12,26],each:[17,30,41,13,26,39,45,27,28,16,4,18,47,48,51,36],debug:16,side:[18,16,23,20,6],mean:[17,11,13,1,39,14,27,28,2,47,4,29,25,20,48,21,42,36],leqq:28,createel:2,resum:[15,45],leqalignno:28,mathopen:28,looparrowleft:28,network:[11,41,12,13,18,36],goe:[28,48,45],iint:28,newli:[9,17,37],crucial:41,ios4:12,content:[1,27,13,36,6,8,9,11,12,18,44,20,2,35,30,37,4,31,43,45,47,50,51],reader:[21,13,36,12],forth:40,impract:41,multilin:28,situat:[36,12],free:[49,3],standard:[13,41,43,28,17,18,21,50,51,36,53],reconfigur:11,lneq:28,angl:28,jsmath2jax:[25,12,24,32],isn:[17,38],mtabl:13,pulicis:39,isa:37,subtl:47,onto:[43,18,45,30,47],mathbb:28,rang:51,mathbf:28,render:[31,12,27,46,4,18,20,21,50,51,52,32],independ:36,yourcolleg:41,restrict:[28,41,20],hook:[17,0,26,39],unlik:[21,36,38],alreadi:[0,26,28,45,2,3,16,17,29,47,48,36,37],primari:[50,11],tooltop:34,top:[40,41,28,18,50,36],sometim:[36,41],underlin:[28,12],master:48,too:[28,34,12,2,4,18],similarli:[0,30,41],john:29,listen:[17,39,30,26],thickapprox:28,namespac:[18,2,12,26,47],tool:[45,41],tagind:23,gtrless:28,compressor:12,somewhat:48,technic:43,past:[39,11,12,17,48,21],filesmatch:41,provid:[9,0,31,26,1,39,15,45,28,16,17,18,44,29,48,21,51,30,37,47],eqalignno:28,tree:[18,44],iota:28,project:[43,36,3],matter:[17,32],mathtt:28,ldotp:28,close:[31,12,18,3,13,5,24],modern:[21,5,50,10],mind:[28,18,36,1],manner:50,increment:15,seem:[29,31],rightrightarrow:28,ldot:28,ngeqq:28,latter:[17,44,51,36,24],curvearrowleft:28,simplifi:12,though:[26,28,48,44,20,51],object:[0,27,5,9,10,30,14,15,16,17,19,20,22,24,26,29,33,35,36,37,38,39,40,34,43,44,45,46,47,48,49,51,53],gzip:12,regular:[4,20],letter:[18,41],grave:28,don:[11,12,29,45,2,47,17,5,30,31,50,36],dom:[9,49,45,47,17,48,38,20,30,22],doe:[28,30,41,26,52,49,31,2,17,29,19,20,21,50,35,36,22,51],declar:[31,34,53,46,5,19,33],tfrac:28,unchang:[11,52,47],section:[2,13,5,36,7,4,11,12,19,20,23,24,25,29,32,33,8,30,28,31,34,42,46,50,52],came:41,delaystartupuntil:[30,36,27,20],random:[18,41],lnapprox:28,syntax:[28,37,12],mediawiki:1,isopera:30,outerhtml:12,shownam:29,asynchon:47,involv:[48,36,3],consolid:21,layout:49,firstnam:29,mathchoic:28,ismsi:[30,27],menu:[10,31,41,12,50,27,46,13,19,20,33,6,34,8,49,51],explain:[13,11,36,24,48],configur:[0,2,4,5,6,7,8,10,11,12,13,16,17,18,23,20,21,22,24,25,27,29,30,32,33,34,35,36,38,19,31,41,42,44,28,50,51,52],apach:41,configut:44,theme:[36,1,6],explic:11,rich:21,folder:[34,18,41],compli:18,infti:[28,51],mho:28,report:[31,20,3],circeq:28,subseteq:28,fadeouttim:5,bar:[28,37,26],patch:[36,41],reload:46,bad:12,replacechild:2,neq:28,respond:[39,20,3],dashrightarrow:28,scriptscriptstyl:28,precneqq:28,result:[11,34,26,29,49,45,47,28,18,30,31,50,35,36,22,51],respons:[39,35,12,26],fail:[0,12,29,38,50,24],themselv:[18,30,40,27,44],best:[0,11,41,45,50,51,36],awar:[28,0,45,31],subarrai:28,varinjlim:28,wikipedia:[43,2],circledcirc:28,gneqq:28,awai:[36,41],approach:[29,51,1,47],attribut:[9,12,53,28,42,44,51,36],never:[0,38,36,2,41],extend:[21,51],synchon:17,extens:[0,27,13,5,36,11,12,17,18,23,20,24,25,2,28,42,32,33,30,38,4,40,43,45,46,47,53],preprocessor:[13,11,42,28,31,27,40,4,18,30,25,20,47,51,36,24,32],intop:28,cot:28,cow:37,howev:[11,41,29,27,45,2,3,16,28,18,20,47,50,51,36,37,53,24],configuraiton:[8,36,12,6],against:39,browser:[27,13,5,36,9,10,11,12,18,19,20,21,49,24,2,40,32,34,30,4,31,41,43,28,46,48,50,51,52],com:[36,41],varpsi:28,preccurlyeq:28,foral:28,foobar:37,sai:[15,2,26],innerhtml:[2,47],height:[28,12,46],wider:3,sqsupset:28,speak:[14,51],chrome:[34,30,2,12,50],three:[31,41,26,29,44,45,5,38,48,51],been:[0,2,3,4,11,15,16,17,18,38,22,26,27,29,32,35,36,39,41,45,47,48,50],trigger:[13,50,36,20,33],interest:[17,39,43,3,48],basic:10,tini:28,quickli:[21,50,36,3],underrightarrow:28,regul:45,xxx:28,ani:[0,2,3,4,5,7,11,13,15,16,17,18,19,20,49,23,25,26,27,28,29,30,33,34,36,37,39,31,41,42,45,46,47,48,50,52],embelish:12,emploi:[43,50],hskip:28,tanh:28,servic:[11,41,12,18,8,36],avtiv:[],diamondsuit:28,sourceforg:11,javascipt:18,dashboard:8,suffici:[28,18,23,52,50],"3px":53,succeq:28,canb:23,lightli:50,nexist:28,cong:28,sever:[0,11,41,45,28,13,29,51,47,22],amout:16,incorrectli:[18,11,12],perform:[27,3,5,36,11,12,15,16,17,38,20,49,26,29,30,39,40,43,45,47,48,50],suggest:[5,3],make:[0,3,28,5,36,11,12,14,15,17,18,20,21,25,42,34,30,37,4,31,41,45,46,47,48,50,51,53],format:[10,11,34,43,44,28,13,18,19,20,49,21,50,35,31,22,51],complex:[50,44],split:28,synch:11,lrcorner:28,unsafewindow:2,complet:[0,11,41,13,26,39,43,15,45,27,47,17,18,30,38,20,29,48,50,36,49],longmapsto:28,hand:[40,16,23,20,51,31,32],fairli:[44,11],rais:[28,12],mkern:28,ignorepast:39,unlhd:28,techniqu:[11,2],redefin:[5,35,38,22],kept:17,thu:[11,26,45,17,29,49],inherit:[14,37,35,22,49],client:34,thi:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53],idotsint:28,programm:37,everyth:[30,13,45,36,28],settimeout:[29,26],left:[40,41,27,16,28,48,23,20,6,8,31,24],processclass:4,identifi:[9,18,28,51,39],just:[39,31,41,26,1,29,45,28,13,18,20,6,21,51,36,53],yen:28,mathbin:28,coprod:28,yet:[31,15,45,47,17,48,50],languag:[43,48,51],noscript:4,onload:[40,2,27,29,20,36],errorset:[13,20],easi:[41,32],interfer:[13,36],had:[17,11,36,18],myconfig:[17,29],els:[29,2,47],save:[8,36,53,6],hat:28,jsmath:[10,51,32],sanit:16,applic:[21,18,27,1],loadtimeout:0,quirk:50,preserv:29,assit:13,negativethinmathspac:50,background:[28,53,12],sqsubset:28,specif:[0,40,26,1,39,43,15,45,47,4,29,30,38,20,50,51,36,49],deprec:36,arbitrari:28,zoom:[10,31,12,13,20,33,36],leftrightarrow:28,underli:50,www:[41,2,46],right:[31,41,43,15,45,2,16,28,19,20,6,34,51,36,23,24],old:17,simbl:2,deal:50,autobold:28,surd:[28,12],percentag:[19,34,20],donald:43,successfulli:[0,29],interc:28,dddot:28,bottom:6,subclass:[39,40,22,38,49,35,37],circ:28,exectur:39,overcom:[48,50],condit:[0,27],getjaxfor:[17,30,22],core:[45,27,28,20,51,30,24],plu:[13,39,27],bold:[28,44,23,24],confiogur:18,mathrel:28,colleg:41,repositori:[11,41,12],post:[39,34,27,3,16,17,48,38],"super":[37,12],llless:28,obj:9,nwarrow:28,slightli:[28,6],surround:[18,19,34],unfortun:[18,41],current_theme_templ:1,joomla:1,span:[25,4,42,44,20,51,32],downharpoonright:28,produc:[5,11,17,18,19,20,21,49,23,24,26,29,32,35,36,39,34,22,46,47,50,51],encod:28,contectu:50,rightsquigarrow:28,down:[8,41,20],shortparallel:28,wrap:37,often:[28,18,51,53],nsupseteq:28,git:[18,11,41,12],wai:[17,11,41,26,1,39,45,2,16,4,18,51,25,20,29,50,42,36,47,38],checkmark:28,transform:51,ngtr:28,avail:[0,1,4,5,11,17,18,19,20,21,49,25,42,34,36,37,31,41,45,46,47,50,51],width:[31,46,28,18,23,50],reli:[0,11,45,2,47,29,19,50],wordpress:[1,6],editor:6,rightthreetim:28,head:[1,2,47,18,6,50,8,36],form:[31,34,43,16,28,18,23,20,51,36],offer:[11,12,3],forc:[36,34],epsilon:28,hear:[17,39],downdownarrow:28,"true":[39,11,34,26,28,27,46,40,4,30,19,20,7,36,37],vcenter:28,maxmacro:23,reset:[46,26],absens:1,displayalign:20,intern:[0,31,39,43,15,45,28,20,50,35,30,22,51],tell:[41,2,47,18,50,36],moveright:28,retir:11,nnn:41,featur:[10,31,41,3,47,17,29,33,50,37],rfloor:28,sale:19,exist:[37,18,28,41,26],ddot:28,backsim:28,triangleq:28,check:[0,11,41,39,16,28,18,29,37],recevi:41,when:[0,27,4,5,6,7,11,12,13,14,15,16,17,18,23,20,21,22,25,26,39,28,29,30,31,32,33,34,35,36,37,38,19,40,41,42,43,44,45,46,47,48,49,50,51,52],abovewithdelim:28,role:51,test:[9,10,11,41,48,27,2,47,17,18,31,50,30,37],tie:[27,26],smallsmil:28,node:9,mathel:1,intend:[37,20],consit:28,munderov:51,gvertneqq:28,consid:[0,11,12,45,3,28,4,18,51,30,49],omega:28,outdat:3,faster:[50,36,12],furthermor:[11,45,36,20],anywher:36,tex2jax_ignor:[4,12],ignor:[4,39],time:[0,2,3,28,5,9,36,12,16,17,23,20,26,29,33,30,38,39,41,45,47,50,51],push:[26,43,15,45,27,47,29,30],"5kb":23,mathrm:28,doteq:28,emulateie7:50,skip:[4,41],consum:16,webkit:12,skin:1,displayind:20,millisecond:[0,34,26,46,16,5,33,30],decid:[36,46],depend:[26,27,47,29,6,50,36,52],newenviron:28,readabl:43,nearrow:28,varpi:28,certainli:41,vee:28,decis:50,leftarrowtail:28,succnsim:28,sourc:[10,11,41,13,45,31,2,46,17,19,21,34,51,30,49],string:[0,26,39,44,28,16,4,23,20,17,30,49,53],curlyve:28,word:[4,51,36],centerdot:28,dim:28,foo:[37,26],administr:[1,6],level:[18,36,41,40],did:29,item:[34,44,46,28,29,19],preprocesor:28,cooki:[9,27,12],div:[9,28,51,32,47],prevent:[28,25,34,12,42,46,4,18,23,20,36],outlin:12,slower:50,compens:19,sign:[28,11,47,4,18,51,36],cost:[28,18,36,37],pmb:28,rightarrowtail:28,histori:[17,39,27,43],xandi:37,dotsi:28,dotsm:28,appear:[28,40,41,29,46,16,17,18,20,47,6,50,36,49],dotso:28,repli:17,dotsc:28,dotsb:28,current:[0,41,1,39,49,50,6,34,8,36,37],backepsilon:28,ampersand:28,inlinemath:[28,11,47,4,18,36],defici:31,amalg:28,mathsiz:28,gener:[28,30,29,52,27,13,5,32,51,36,49,18],mfrac:[18,51],modif:[45,36],address:[18,41],along:[43,45,16,17,32,35,22],wait:[0,30,41,12,26,39,43,15,45,2,47,17,29,27,38,20,48,36],box:[28,0,12,5],html_head:1,bracevert:28,shift:20,bot:28,queue:[39,40,26,48,14,15,45,27,47,29,43,30],overriden:30,digamma:28,varlimsup:28,macintosh:30,semant:37,succsim:28,extra:[17,28,51,12,20],circumv:41,modul:[0,8,40],prefer:[11,34,46,18,50,41,52],iepro7:2,veebar:28,visibl:[4,42,45,25,47],marker:28,myid:53,mobil:[11,36,12],arrowvert:28,memori:[48,49],bigr:28,visit:18,todai:43,subvers:[18,41],stylesheet:[0,40,26,39,15,27,47,48,20,6,50],handler:[0,40,43,2,27,47,48,51,36],current_skin:1,bigl:28,bigm:28,eqcirc:28,checkout:41,bigg:28,inputjax:[40,14,49,27,38,35,37],capit:14,sitaut:47,peopl:18,bigtriangleup:28,enhanc:[51,12],minscaleadjust:34,visual:[21,13,36],templat:[8,36,1,6],hphantom:28,easiest:[17,18,41,26,29],graphic:41,prepar:[45,36],cap:28,uniqu:53,pmatrix:28,whatev:[28,1,22,45,47,17,37],cal:28,purpos:[29,51,50],getjaxbytyp:30,downharpoonleft:28,subseteqq:28,varprojlim:28,backslash:[28,23,20],topic:[14,10,36],critic:41,sharp:28,occur:[0,30,41,26,39,15,45,31,2,46,16,17,18,38,20,29,48,36,47],eqsim:28,nuber:23,pink:28,alwai:[28,29,45,36,26],multipl:[28,45,11],trianglelefteq:28,write:[39,45,47,18,21,50],fourth:45,mathsf:28,tild:28,xhtml:[18,31],map:51,max:28,clone:41,spot:28,usabl:41,mac:[30,19,34,20],udpat:41,mai:[0,1,2,3,4,5,36,6,11,14,17,18,19,20,22,28,29,34,30,37,39,31,41,49,45,47,48,50,51],data:[9,0,40,41,26,37,17,29,38,49,34,35,30,22],grow:1,goal:21,vartheta:28,preceq:28,explicit:[0,36,20,18],uparrow:28,geramond:28,inform:[0,34,13,1,39,43,16,17,29,19,20,51,36],"switch":[51,11,41,12,32],preced:36,combin:[0,11,12,28,13,18,50,36],gamma:28,lnsim:28,approx:28,showmathmath:19,lsh:28,tex2math:32,still:[39,31,26,1,43,45,17,20,33,50,13],pointer:37,ttf:41,dynam:[0,40,10,45,2,47,18,20,48,21,51,36],entiti:[28,31,12],amssymbol:[13,11,28,36,18],conjunct:11,group:[0,31,3],monitor:3,polici:41,bigstar:28,platform:[21,10,1,18],window:[40,26,5,2,46,16,29,47,30],"05em":28,main:[28,11,41,14,37,45,46,13,18,30,40,20,53,35,36,22,51],mathexampl:47,non:[9,0,15,28,18,51],msam10:18,myinputjax:38,initi:[0,11,48,45,27,46,28,4,18,30,40,20,17,51,36,49,38],safari:[50,30,2,12],half:29,now:[11,41,12,43,27,18,50,36],discuss:[9,41,36,2,3],nor:[5,44],term:[11,36,18,16],name:[0,27,4,5,36,9,11,12,13,16,17,18,23,20,22,24,26,2,29,34,35,30,37,38,39,31,41,44,28,49,50,53],opera:[50,52,30,2,12],boxdot:28,drop:41,separ:[11,41,45,31,16,17,18,19,20,36,53,24],messagestyl:[5,20,16],sideset:28,ntriangleleft:28,confid:21,varpropto:28,vec:28,varsupsetneqq:28,compil:29,domain:[18,36,41],replac:[0,11,12,31,2,47,18,30,23,51,36,37,38],individu:[49,12,24,47],continu:[0,11,45,28,17,48,36],happen:[31,41,15,45,28,48,51],shown:[28,44,20,46,47],accomplish:[18,36,2,41,50],space:[12,47,28,18,20,50,7,51],intermix:27,internet:[0,12,28,2,46,16,13,29,20,50,51,36,24],formula:[47,20,33,21,50,51],correct:[29,11,2],integr:1,simeq:28,earlier:[18,45,36],migrat:[10,11],ajax:[0,40,14,45,27,17,29,38,30],mime:[31,49,18,38,35,30,22],underleftarrow:28,org:[11,12,1,2,46,47,28,18,32,6,50,8,36],ord:28,care:[28,18,2,24],ntrianglelefteq:28,couldn:29,x00b1:18,synchron:[0,26,10,43,15,45,2,47,29,27,48,30,39],mscarri:31,thing:[28,18,44,47],place:[0,41,18,37,45,3,28,17,5,23,20,47,34,36,39,32],mathop:28,unwis:50,ture:19,typset:12,think:[28,20,47],frequent:[4,17],first:[17,31,41,26,39,45,2,48,28,4,18,44,20,29,6,35,36,22,51,47],origin:[37,39,41,15,28,2,47,17,18,49,35,22],lfloor:28,oni:41,directli:[41,12,45,2,47,28,29,38,6,51],conform:18,onc:[0,41,26,39,45,27,28,13,18,38,32,47],arrai:[27,4,5,7,36,12,15,17,23,20,22,24,25,26,29,32,50,35,30,38,39,34,42,44,28,19,51,52],yourself:[41,18,15,2,28,29,20,36],fast:[11,36,12],open:[10,31,41,46,28,18,6,21,8],predefin:20,size:[34,12,53,47,28,19,36,23],given:[9,0,37,12,1,39,15,45,44,28,16,17,29,38,20,49,26,51,30,22,53],ifmodul:41,evail:45,referenec:30,leftrightharpoon:28,circl:28,white:53,conveni:[18,37,20],hub:[0,27,4,5,7,11,14,16,17,18,19,20,22,23,24,25,2,28,29,30,32,33,36,38,13,40,34,42,49,45,46,47,50,51,52],especi:51,programat:51,copi:[11,41,31,2,3,18,30,38,21,36],specifi:[27,4,5,36,7,9,11,12,15,17,18,19,20,23,26,28,29,33,30,39,34,44,45,46,48,50,51,52,53],lhd:28,enclos:[53,51,34,20],quad:28,than:[0,27,4,5,36,6,7,11,12,13,15,17,18,38,20,21,49,24,26,28,34,35,30,37,39,31,41,43,45,47,48,50,51,53],serv:[18,12],wide:[21,51,41],underbrac:28,were:[17,11,49,47],posit:[15,34,12],seri:[45,44],pre:[13,11,41,4,5,31,36],delic:19,lnot:28,doublecup:28,nleftrightarrow:28,argument:[39,26,45,29,37,24],dash:[53,34],properli:[9,0,11,41,12,18,49,45,2,47,5,31,29,30,37],engin:[21,10],squar:[28,44,12],npreceq:28,note:[0,2,28,5,6,36,18,44,20,49,23,39,29,34,30,38,4,41,45,46,47,50,51,52,53],x2260:18,take:[9,0,11,26,1,29,45,27,3,47,28,5,23,48,36],properti:[9,0,40,37,26,39,15,29,38,49,35,30,22],noth:[18,26,29],channel:[17,43],updownarrow:28,begin:[17,41,47,45,27,28,4,23,50,51,36],sure:[39,11,41,12,47,45,3,28,4,18,50,36],windowset:46,normal:[13,26,28,2,4,18,20,51,53],buffer:23,compress:[36,12],beta:[28,50,36],pair:[9,0,26,44,53,4,23,17,35,30,22,24],fileurl:0,beth:28,hotfix:36,latex:[10,43,28,4,18,20,21,51,36],renam:11,textarea:4,later:[39,30,34,26,15,45,28,29,31,36],drive:41,typeset:[0,27,4,12,16,17,19,20,21,49,25,2,29,33,30,40,34,42,43,45,46,47,48,51],badg:3,sigma:28,mathfrak:28,showmathmenu:34,show:[28,41,46,5,3,47,13,29,44,20,8,18,24],autoreset:26,approxeq:28,unprocess:[30,49,47],concurr:27,permiss:[18,41],hack:50,corner:[40,20,16],xml:[21,43],insruct:1,onli:[0,1,2,3,13,5,36,11,12,18,44,20,21,49,39,29,34,35,30,4,31,41,43,28,47,50,53],explicitli:[28,11,12,29,4,18,20,36,37],activ:[11,41,26,43,3,47,48,31,50,51],state:45,inlinedelimit:28,otim:28,black:28,offici:36,geq:28,mypic:[4,42,25,44],nearli:[13,28,36,24],variou:[0,34,1,39,14,53,16,17,5,19,35,36,51,24],get:[9,10,31,41,12,26,39,27,45,2,16,28,18,19,20,29,50,34,36,37,47],cannot:28,ncong:28,downarrow:28,requir:[0,11,13,26,45,2,28,17,29,30,38,21,51,36,22],prime:28,lceil:28,mathpunct:28,enspac:28,intermitt:[40,16],shortmid:28,retypeset:47,where:[0,27,3,13,5,36,9,11,16,17,18,23,22,26,29,34,35,30,28,40,41,49,53,47,48,51],wiki:[18,51,36,2,1],lozeng:28,obejct:15,ismac:[30,27],concern:[51,30],infinit:23,detect:[12,26],parent:[9,37],enumer:28,label:[46,24],enough:[45,44],between:[28,30,12,26,29,45,46,17,18,50,51,36,49],maltes:28,"import":[0,41,12,13,14,45,17,48,36],across:[43,50],longleftrightarrow:28,vdot:28,screen:[0,12,47,45,16,13,21,36,22],negmedspac:28,come:[11,41,45,2,13,29,31,50,51,36],leftleftarrow:28,manu:46,timout:0,pertain:18,audienc:50,inconsist:11,overbrac:28,mani:[28,30,12,48,45,4,29,36,53],among:36,color:[28,53,44,12,20],operatornam:28,period:[0,40,41],colon:[28,53],autmat:[],cancel:26,typic:[4,28,35,36,41],"70kb":36,bigcirc:28,msrow:31,damag:18,needlessli:29,myserv:36,skew:28,mark:[0,31,28,4,18,32,51,53],succapprox:28,fade:5,arcsin:28,resolut:21,processenviron:4,supprot:12,breve:28,texfont:5,blacktriangl:28,those:[13,5,36,15,17,18,44,20,21,49,26,28,29,35,30,38,39,31,41,22,45,47,51,53],"case":[28,11,41,26,29,37,45,2,47,17,18,44,20,49,34,51,36,22,53,24],kappa:28,oldstyl:28,addtext:9,invok:50,invoc:36,margin:23,tbinom:28,advantag:[11,45,36,1,50],barwedg:28,leadsto:28,mlongdiv:31,worri:[17,51],destin:30,updatemath:47,bigwedg:28,develop:[11,41,43,3,31,36],author:[11,16,38,20,33,21,51],media:[53,36,41],postjax:[51,20],same:[17,11,41,12,13,39,45,25,28,4,18,23,6,48,42,36,22],html:[1,27,4,5,7,9,10,11,12,14,17,18,19,20,22,24,25,2,42,30,31,32,34,8,36,13,40,41,43,44,28,46,47,48,50,51,52,53],pad:[9,53],knuth:43,mathvari:51,document:[0,11,41,43,10,14,28,2,47,4,18,30,31,20,21,50,51,36,22,32],finish:[43,48,45,2,47],vvdash:28,nest:[40,31,12],availablefont:[5,36,34],longleftarrow:28,capabl:[14,21,50],formaterror:30,improv:[11,12,3,20,50,36],extern:[0,40,48,45,17,29,30],submenu:[20,46,6],appropri:[28,17,38,32,35,51],macro:[12,28,18,23,20,36,24],markup:[43,0,28,31,51],leftharpoonup:28,overwithdelim:28,without:[0,11,34,28,31,17,29,19,51,36],model:[10,40,41,14,27,28,50,51,37],altertn:50,bigotim:28,stixfont:5,mml2jax:[31,42,13,18,20,51,24],loaderror:0,rest:[0,31,45,47,18,21,51],flavor:[13,36],speed:[11,51,36,12,50],versu:45,mathzoom:[13,53,33,24],nleqq:28,except:[13,18,48],littl:[0,39],blog:[18,51,36,1],treatment:28,yuicompressor:12,earli:[36,12],hover:[46,20,33],around:[28,36],read:[11,41,12,44,17,18,31,36],outermost:44,boldsymbol:28,messsag:16,getjaxbyinputtyp:30,moo:37,world:[21,29,36],lasterror:30,mod:28,sum_:51,blackberri:12,cdot:28,integ:30,server:[11,41,12,2,13,18,34,36],either:[0,11,41,1,39,14,44,53,2,17,18,30,23,33,50,36,52],output:[2,13,36,7,10,11,12,17,18,19,20,22,24,40,32,30,37,38,28,31,34,43,49,53,46,47,50,51,52],rollov:12,manag:[9,40,41,1,29,43,27,16,18,50,51,49],lesssim:28,searrow:28,sqcup:28,constitut:14,pod:28,slice:26,definit:[0,34,12,53,46,13,19,33,21,23],shoveright:28,inputid:49,dashleftarrow:28,mathcal:28,variuou:17,complic:[44,31,52,50],refer:[39,41,18,10,2,47,17,5,38,29,48,30,37,49],power:[45,3],inspect:30,broken:51,thinspac:28,fulli:[18,45,31],regexp:4,"throw":[22,35,38,2],trianglerighteq:28,acc:[],assocait:47,underwai:45,ddddot:28,act:[28,43,45,17,29,23,20,51],industri:43,processor:[28,31,34,43,45,27,46,51,13,18,19,53,50,7,36,52,23,24],hookrightarrow:28,nobreakspac:28,routin:[9,0,48,29,38,35,30,22],nsupseteqq:28,effici:[37,47],elementari:31,lessdot:28,triangledown:28,bbb:28,rightharpoondown:28,mathbackground:28,your:[0,1,2,3,4,5,6,7,10,11,12,13,18,23,20,21,25,28,29,30,32,33,34,8,36,19,31,41,42,43,44,45,46,47,48,50,52],sqsupseteq:28,log:[28,18,41,16],area:[23,16],fontwarn:[5,20,24],lor:28,strict:[50,41],compliant:[11,12],interfac:[41,1,18,6,21,8],lot:[17,23,41],machin:[43,41],lambda:28,buggi:28,categor:24,longer:[39,11,41,16],pull:41,mathml:[10,31,12,43,49,28,2,51,13,18,19,52,6,21,50,7,36,22,35,24,8],bullet:28,possibl:[0,31,41,12,26,29,45,16,13,5,20,50,51,36,37,53],"default":[0,27,4,5,36,7,11,13,16,18,23,20,22,24,25,26,42,32,33,34,35,30,38,19,41,28,46,50,51,52],processescap:[4,11,28,36],buildrel:28,sepecifi:41,notag:28,embed:31,expect:[28,50,45,36,20],taylor:18,creat:[0,27,3,9,16,17,38,22,26,29,35,37,39,40,41,43,49,45,46,48,51,53],certain:[17,39,48],leftrightsquigarrow:28,risingdotseq:28,varliminf:28,file:[0,1,27,13,5,6,8,11,12,15,16,17,18,38,20,22,24,26,2,28,29,30,32,35,36,39,41,43,44,45,48,49,50,51,52,53],outputjax:[40,14,49,27,38,22],fill:[50,52],again:[28,0,30,49,47],iiiint:28,googl:3,pmod:28,reduct:50,valid:[29,11,50],you:[1,2,3,4,5,6,7,11,12,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,34,8,36,37,38,13,31,41,42,44,45,46,47,48,50,51,52,53],trash:49,wthin:36,sequenc:[10,30,41,15,28,27,17,48,36],symbol:[28,18],dashv:28,track:[51,3],menuset:[13,20,33],reduc:[28,36],mathcolor:28,lbrace:28,directori:[0,41,12,13,48,43,49,27,16,17,18,38,20,34,35,36,22],descript:[25,42,2,4,5,40,20],lbrack:28,scroll:8,calle:37,potenti:45,escap:23,dst:30,negthickspac:28,represent:51,all:[0,1,27,4,5,10,11,12,13,16,17,18,38,20,21,24,25,26,2,28,29,30,31,36,37,39,40,41,42,43,45,48,50,51],consider:36,illustr:47,dollar:[28,11,47,4,18,36],abil:[50,51,11,41,12],follow:[17,11,41,12,26,29,14,44,28,27,47,4,18,38,13,34,51,36,37,53,24],alt:[2,20],disk:[13,18,36,41],children:31,scr:28,articl:43,matrix:28,init:37,program:[40,1,48,14,49,45,27,18,21,51,37],smile:28,introduc:36,programmat:32,multlin:[28,23],vert:28,far:[0,39,41,16],renewcommand:28,prooblem:28,"1px":[9,28,53],verb:28,mechan:[39,26,15,45,27,17,48,37],loadcomplet:[0,30,38],veri:6,strang:31,list:[1,27,4,5,6,7,8,36,17,23,20,22,25,26,28,42,33,34,35,30,19,41,49,45,46,47,51,52],"_html":50,emul:50,adjust:[34,2,47,19,6,8,36],displaylin:28,small:[34,12,16,28,23,51],preceed:[4,20],dimens:12,getalljax:[30,47],lll:28,tex:[1,2,4,5,6,7,8,10,11,12,17,18,23,20,21,24,25,28,30,31,32,34,35,36,38,13,40,41,43,45,47,50,51],zero:15,design:[31,2,3,13,21,8],pass:[0,11,12,26,39,15,45,27,46,17,29,51,30,37,24],overlin:28,further:[15,45,38,51],what:[0,3,28,5,10,36,12,18,19,20,21,25,26,42,33,34,30,4,31,41,46,47,50,51],sub:40,sum:[28,26],ast:28,abl:[11,41,26,1,18,2,47,17,5,20,6,21,34,8,36],delet:34,version:[10,11,41,12,27,2,3,47,13,18,30,40,33,49,35,36,22,38],sup:28,method:[9,0,11,37,26,39,15,45,2,16,17,29,30,38,47,48,35,36,22,49],hasn:[0,35,11,22,16],full:[0,12,13,14,2,47,4,29,20,21,36],exectu:26,geqslant:28,modular:[21,31],ggg:28,ineffici:[37,20],modifi:[10,11,13,1,47,28,16,17,18,30,38,36,22],valu:[0,27,4,5,7,9,12,15,17,19,20,23,24,25,26,29,33,30,37,28,31,34,42,44,45,46,47,51,52,53],search:[21,10,30,3],sender:17,prior:[28,20],amount:[5,23,26],action:[0,40,26,39,30,15,45,2,28,16,17,29,27,38,43,33,48,51,36,47],mathjax_wikipedia:2,mml_htmlormml:[11,1,2,13,18,6,50,8,36],magnitud:50,llap:28,via:[0,1,27,13,5,11,12,16,17,18,38,49,24,26,2,33,34,36,37,31,41,45,51],shorthand:47,filenam:[11,36,2,29],href:[28,44,12],inappropri:17,emptyset:28,famili:[28,0,53],decrement:15,establish:13,select:[31,41,46,13,19,50,30],proceed:[45,44],x41:28,distinct:14,ctrl:20,regist:[0,30,39,43,27,17,48,38,35,36,22,51],two:[13,48,44,45,28,17,18,23,20,50,36,53,24],offseti:34,taken:[17,28,45,50,47],imath:28,basi:[50,36,52],more:[13,5,36,6,8,11,12,15,18,19,20,21,26,29,32,34,35,30,37,38,39,41,43,44,45,47,48,50,51,52,53],flat:28,diamond:28,desir:[37,41,2,13],henc:41,ital:[0,20],flag:20,aleph:28,particular:[9,0,30,41,26,39,43,15,53,28,18,20,29,48,50,51,36,37],known:45,upsilon:28,mathml3:31,cach:[17,36],showmathmenumsi:[13,19,12],none:[39,25,34,26,42,4,29,20,51,36],eta:28,mmlorhtml:[13,50,52,20,24],det:28,dev:3,widehat:28,remain:[13,43],paragraph:[28,5,51,47,18],caveat:[18,41],def:[28,23,37],deg:28,scan:[30,20],myspan:44,challeng:13,registr:38,share:[18,36,41,3],accept:[29,26,47],succneqq:28,minimum:[30,34,12],unreli:11,explor:[0,12,28,2,46,16,13,29,20,50,51,36,24],phrase:[28,18],mathinput:47,huge:28,cours:[11,45,36,31],newlin:[28,12,16],awkward:37,secur:[41,2],rather:[0,27,28,5,7,11,12,15,17,18,38,20,21,49,24,26,36,37,4,31,41,45,47,48,50,51,53],anoth:[39,41,15,45,16,17,48,35,47,51,24],comfort:41,csc:28,snippet:[9,10,25,42,3,4,5,44,20,30],ddagger:28,stix:[34,12,43,28,5,41,51,36],simpl:[50,44,20,16],css:[0,2,13,5,36,7,10,11,12,18,19,20,22,24,40,32,33,34,30,28,31,41,43,49,53,46,47,50,51,52],unabl:5,resourc:12,referenc:5,iphon:12,variant:43,reflect:[27,47],vdash:28,mstack:31,impliedbi:28,associ:[51,41,26,49,29,19,34,35,30,22,38],curlywedg:28,mytim:29,github:[11,41],footer:36,confus:11,ambigu:14,caus:[0,40,41,46,39,49,45,31,28,16,4,18,30,23,20,29,17,51,36,47,38],callback:[0,40,26,39,14,15,45,27,47,17,29,38,43,48,30,49],firefox3:34,merror:53,unrhd:28,help:[10,11,41,3,18,46,50,36],soon:[36,2,20,47],trade:[50,36],through:[39,11,41,12,45,46,28,17,48,31,50,51,36,37,24],hierarchi:[36,41],paramet:[0,27,13,36,9,11,12,15,16,18,23,20,22,24,25,26,29,35,30,37,38,39,42,49,28,47],style:[9,0,34,12,10,43,44,28,27,46,16,4,5,19,20,33,51,30,49,53],arial:28,x221a:31,processupdatetim:30,x221e:51,late:[43,2],isreadi:[40,27],pend:15,amsmathaddit:45,mathplay:[50,2,12,46,20],might:[0,11,41,29,45,31,3,17,18,23,51,36],alter:[4,47],good:[45,2,3],"return":[9,0,31,37,26,39,15,45,16,17,29,38,47,48,35,30,22,49],textstyl:28,hslash:28,getelementbyid:47,rlap:28,funciton:38,mathscr:28,instruct:[44,18,11,2,1],bigcup:28,easili:[21,51],iff:28,x2212:[18,51],found:[0,18,3,29,20,35],unicod:[28,5,31],x2211:51,button:41,subsystem:27,originaltext:49,weight:[44,37],hard:[41,12,3,13,18,36],realli:[29,20],nless:28,connect:[13,29,51,36],beyond:3,orient:[14,37,40,27],nleq:28,looparrowright:28,shortcom:48,skiptag:4,asynchorn:[45,47],print:[21,53,41],occurr:48,msie:[30,19,52],foreground:53,assist:36,safari3:34,advanc:[14,10,36,21],offsetx:34,symbian:12,mml:[40,52,13,18,35,49,51],reason:[0,31,29,45,2,46,16,28,18,23,50,30,38],base:[11,41,1,48,14,27,2,50,5,40,49,21,34,36,37,38],typeet:47,sbe:27,put:[0,11,41,48,28,18,36,24],mathr:28,asn:51,ispc:[30,27],succnapprox:28,stanard:28,drupal:1,msbm10:18,showprocessingmessag:[20,24],perhap:[29,36],bumpeq:28,elementjax:[40,14,27,38,35,49],stixgener:28,getelementsbytagnam:2,assign:[4,29],major:[21,50,36,2],dont:51,boxplu:28,feel:3,exchang:43,lastnam:29,number:[0,1,13,5,36,11,12,16,18,44,20,49,23,26,29,35,30,38,40,41,22,45,50],fadeoutstep:5,done:[15,45,36,27,51],construct:[45,51],blank:[39,26,47],stabl:[36,41],miss:[28,26],differ:[28,30,41,26,29,45,47,17,18,48,50,51,36,37],script:[0,1,27,4,36,6,8,9,11,12,17,18,38,20,22,2,28,32,35,30,13,41,49,45,47,50,51],interact:[21,18,51,36,49],smoother:5,least:[50,30,36,51],statement:[45,26],illeg:[44,36,12],store:[9,39,11,34,12,26,49,45,47,29,30,40,32,35,36,22,51],option:[13,5,36,6,7,10,11,18,44,20,23,24,25,42,32,33,30,37,38,4,34,28,46,19,51,52],nleftarrow:28,triangleleft:28,ntrianglerighteq:28,selector:[53,20,16],tex2jax_process:4,part:[17,31,41,13,26,48,45,2,28,4,18,23,6,21,50,51,36,37],pars:[28,12],binom:28,cosh:28,kind:51,aaa:23,prebuilt:18,whenev:[39,31,41],remot:41,remov:[39,30,12,47,49,16,4,20,51,36,22],dtd:18,bridg:[11,49],arrang:26,ffff88:53,comput:[34,30,41],nleqslant:28,img:[25,53,2,4,42,44],preovid:28,packag:[43,36,41,32],expir:9,"null":[9,0,40,34,12,26,39,37,2,16,5,38,20,47,49,35,30,22],built:[10,11,2,50],equival:[9,26,45,47,13,29,44],lim:28,self:[18,31,12],ell:28,also:[2,3,13,9,4,11,14,16,17,18,19,20,49,26,29,34,36,37,28,31,41,43,46,47,48,51],brack:28,build:18,brace:28,distribut:[11,8,36,41,18],index:[18,41,1],addel:9,reach:36,react:39,most:[13,40,41,12,1,43,27,53,2,17,18,38,26,50,36,37],plan:18,rho:28,alpha:28,rhd:28,vardelta:28,componet:36,clear:[39,34,26,27,16,17],tpl:1,exp:28,starup:20,usual:[26,29,45,28,5,38,20,51,36],leftroot:28,cdata:12,nshortparallel:28,carefulli:[44,47],cdn:[11,41,12,1,2,47,28,18,32,6,50,8,36],finv:28,particularli:[13,50,41],rightleftarrow:28,font:[0,28,5,10,11,12,16,18,44,20,21,23,34,36,19,41,43,53,46,47,48,51],find:[36,3,47,5,32,6,50,51,30],preremoveclass:20,execut:[0,26,15,45,27,17,29,51,36],pretti:41,solut:[18,51,41,3],delayedx:26,"public":41,queu:[15,45,36,26,39],factor:[19,34,12,20],noerror:[13,18,28],tagsid:[23,24],precnsim:28,express:[17,39,45,4,23,20],strut:28,nativ:[31,14,2,13,21,50,51,52],mainten:11,greasemonkei:[36,2],restart:[4,15,45,36,41],ie9:[50,41,12],ie8:[50,12],ie7:50,ie6:34,vmatrix:28,common:[10,11,1,18,43,44,28,31,13,5,30,38,36],set:[0,27,4,5,7,9,11,12,13,16,17,18,19,20,49,23,24,25,26,2,28,29,30,32,33,34,36,37,39,40,41,42,43,44,45,46,47,48,51,52,53],overrightarrow:28,startup:[10,40,12,27,45,2,47,17,30,38,20,36],see:[0,27,3,4,5,6,8,11,12,13,15,17,18,19,20,24,25,26,28,29,30,32,33,34,35,36,39,31,41,42,43,45,46,47,48,50,51,53],sec:28,arg:28,ams_hml:36,disadvantag:50,langl:28,inconveni:11,someth:[28,41,3,47,4,18,20],particip:3,won:[45,36,41,12],subscript:[28,12],experi:20,altern:[28,0,51,37,29],numer:[30,31],complement:28,javascript:[0,1,2,13,5,6,10,11,14,17,18,23,20,21,49,24,26,28,29,33,8,36,37,19,40,34,43,44,45,46,47,48,50,51,53],isol:12,mailbox:[17,43],bmatrix:28,consumpt:12,distinguish:35,longrightarrow:28,errat:36,classnam:2,popul:27,closur:[29,26,47],last:[0,41,26,15,53,28,30,24],delimit:[28,11,12,4,18,51,36],hyperlink:51,event:[0,12,43,2,47,17,48,20,51],nvdash:28,context:[4,46,20,26],overset:28,hbar:28,whole:[48,30,47],load:[0,1,27,13,8,10,11,12,15,16,17,18,38,20,21,22,26,2,28,29,30,32,35,36,39,40,41,43,45,47,48,50,51],markdown:51,simpli:[13,11,41,26,42,15,28,47,4,29,30,25,20,21,36,38,32],point:[28,15,36,18],instanti:37,schedul:29,usemathmlspac:7,header:[36,41,1,6],suppli:[30,49,20,26],simplu:38,mistak:44,zeta:28,laod:[36,38],gneq:28,devic:[11,36,12],due:11,empti:[40,34,26,45,27,20,51],"_htmlormml":50,dur:30,strategi:50,invis:41,fire:[27,36,2,29],imag:[11,41,12,42,44,2,4,5,25,21,34,36],coordin:[15,45,51],understand:[13,51],demand:13,urcorn:28,sqcap:28,blacksquar:28,look:[9,39,31,41,26,1,47,28,3,16,4,18,6,34,51,30,53,24],solid:[9,28,53],pitchfork:28,lvert:28,"while":[9,0,11,41,18,52,45,2,28,17,5,31,20,48,50,51,36,39],blacktriangleleft:28,nprec:28,behavior:[11,36,41,20],circlearrowright:28,bookmarklet:36,everyon:17,loop:[23,49],pack:12,subsect:38,measuredangl:28,readi:[17,13,40,27,38],jpg:[4,42,25,44],biguplu:28,itself:[39,11,41,26,15,45,31,27,28,17,53,30,40,20,49,51,36,37,38,24],rightarrow:28,xleftarrow:28,shorten:16,shorter:12,redisplai:16,unexpectedli:[28,18],conflict:[51,12],upuparrow:28,optim:[50,12],domin:43,alert:[17,29,45,26],moment:[18,35,41],hander:20,temporari:36,user:[2,3,13,5,10,16,17,18,19,20,21,26,32,33,34,36,28,31,41,46,47,50,51],robust:[17,43],stack:23,recent:[21,2],lower:[40,12,27,16,28,20],task:28,older:[36,41],entri:[43,15,53,12],searchabl:21,person:29,textit:28,expens:50,normals:28,scriptsiz:28,fallingdotseq:28,explan:18,rvert:28,obscur:[12,16],mathinn:28,amp:[28,12],regardless:47,cup:28,blacklozeng:28,ffeeee:28,notifi:17,input:[2,13,36,6,7,35,11,12,17,18,23,20,22,24,40,32,8,30,37,38,28,31,43,49,45,47,50,51],subsequ:[28,38],oslash:28,trueli:47,march:10,konqueror:[50,30],big:[28,41,24],moodl:1,tomathml:[13,49],game:28,insert:[25,26,2,4,42,38,20,6,8,30,22,51],bit:[19,37],diagup:28,onchang:47,semi:53,varkappa:28,signal:[39,40,26,48,14,27,17,29,30,38,43,36],altough:29,resolv:12,collect:[29,45,49,53,26],"boolean":30,popular:[18,32,1],swarrow:28,scrip:11,stackrel:28,lastest:3,creation:[35,27],some:[1,2,13,5,36,11,14,15,17,18,19,20,21,22,24,26,29,34,35,30,37,38,28,31,41,49,45,47,50,51,52],back:[5,41,49],emph:28,global:[14,50,40,26,47],urgent:36,sampl:[41,48,53,27,47,17,18,20,50],instal:[10,11,41,12,18,50,28,5,6,21,34,36],scale:[21,19,34,12,20],delimt:4,substitut:23,mathemat:[0,2,4,5,6,35,36,12,17,18,19,20,21,22,23,25,28,42,32,33,34,8,30,38,13,31,41,43,49,45,46,47,50,51],larg:[28,0,36,11],temprorari:36,slash:[],prod:28,reproduc:47,sqsubseteq:28,tex2jax:[13,11,12,28,31,2,47,4,18,40,20,51,36,24],cgi:0,garamond:28,previou:[29,39,45,26,16],run:[0,2,4,5,7,36,15,17,18,19,20,23,25,26,27,29,34,30,39,31,41,42,45,47,48,50,51,52],doteqdot:28,odot:28,step:[5,51,27,1,18],hookleftarrow:28,varsubsetneq:28,impor:41,impos:41,ngeqslant:28,reappear:16,materi:[12,47],dialog:12,rangl:28,succcurlyeq:28,block:[11,34,12,18,27,2,28,5,19,20,51,36,38],file3:45,file2:[0,45],file1:[0,45],file4:45,bmod:28,within:[0,11,41,12,26,18,14,28,31,27,47,4,5,30,23,32,29,48,51,36,37],prec:28,notat:[43,28,18,21,51,36],isjax:30,announc:48,triangl:28,question:[18,38,3],submit:3,custom:[13,12,16,28,18,21,50],adjac:12,perp:28,includ:[0,1,27,4,5,7,11,12,13,14,17,18,23,20,21,24,25,26,2,28,29,30,31,32,33,34,35,36,38,19,40,41,42,44,45,46,47,50,51,52,53],suit:[5,36,11,31,18],nativemml:[31,52,46,13,19,50,51,22,24],overleftrightarrow:28,ulcorn:28,doctyp:[18,31,50],poster:39,atop:28,loadhook:[0,30,29],serif:[28,0,53],link:[11,41,12,1,18,14,5,48,36],translat:[51,35,38,22,12],delta:28,line:[28,11,41,12,1,27,31,2,4,18,25,50,51,36,24],consist:[28,44,45,31,50],rmoustach:28,qquad:28,divideontim:28,geqq:28,similar:[48,41,26],enlarg:33,constant:[17,23],doesn:[13,41,26,49,28,2,17,20,34,36,37],repres:[9,25,18,53,16,4,5,44,20,21,42,22,51],mathdiv:[9,29,45,47],opera10:34,guarante:[0,45,47,15],constortium:21,phantom:28,bigoplu:28,iiint:28,titl:[18,47],sequenti:[48,45,27],invalid:[28,44],llcorner:28,toaudibl:49,bracket:[28,44,20],shoveleft:28,xrightarrow:28,department:41,supseteq:28,nice:2,delayclear:34,msup:[18,51],alttext:42,varsubsetneqq:28,eval:26,newcommand:28,svn:[18,11,41],rightharpoonup:28,land:28,mimetyp:[49,35,38,22],svg:[51,12],supseteqq:28,liminf:28,depth:28,dot:28,hello:29,prototyp:37,code:[0,2,3,4,36,6,9,10,11,13,15,17,18,19,20,25,26,27,28,29,30,39,40,42,43,44,45,47,48,53],partial:28,queri:51,tiddlywiki:1,edu:41,privat:[48,38,41],elsewher:47,send:[17,39,36],becam:43,sens:51,sent:[17,39,30,43],actiontyp:34,unzip:41,gnsim:28,xxxxxxxx:[18,41],mous:[51,46,34,12,33],tri:[28,0,11,34],ischrom:30,mathit:28,forefox:2,geograph:36,fewer:13,"try":[41,3,17,18,38,37],userscript:2,maction:[34,12],pleas:[44,3],impli:[28,31],smaller:[13,0],fortun:17,natur:[21,18,28,41,51],varupsilon:28,download:[0,11,41,12,5,18,20,51,36],fullnam:29,hspace:28,click:[41,46,13,19,20,33,6,34,51,36],append:[9,41],compat:[43,50,36,12,20],appendchild:[9,2],turn:[9,39,11,13,26,4,19,31],access:[39,41,12,1,29,49,45,46,28,13,18,21,36,37],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],can:[0,2,3,4,5,9,11,12,13,15,16,17,18,19,20,21,22,24,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,43,45,47,48,50,51,53],vargamma:28,varsigma:28,leq:28,let:[11,41,44,2,46,18,31,20,50,30,52],sinh:28,becom:[11,41,26,45,3,17,31,37],sinc:[0,28,36,11,12,13,15,17,18,19,20,23,26,30,37,39,31,45,47,48,50,51,53],tex4ht:51,rtime:28,convert:[10,31,26,28,2,16,4,32,21,51,22],convers:28,larger:[13,18,51,36],technolog:[21,13,36,3],zscale:20,circledast:28,chang:[11,41,12,1,47,2,46,16,18,30,19,34,51,36,49,23],honor:41,chanc:[4,17,39,18],firefox:[41,12,2,50,30,52],rgroup:28,appli:[28,37,36,41],iskonqueror:30,lessgtr:28,api:[14,10,21,18],smallmatrix:28,cloud:[11,36],from:[0,1,27,4,8,10,11,12,16,17,18,23,20,22,25,2,28,29,30,32,34,35,36,37,38,39,40,41,42,49,45,46,47,50,51],zip:[18,41,12],commun:[17,10,3,18],chi:28,doubl:[13,23,36,20,33],upgrad:[5,41,3,10],varphi:28,next:[28,48,49,47],implic:41,few:[28,18,41,32],msqrt:[18,51],bowti:28,panel:28,preformat:12,src:[13,11,1,42,44,45,2,28,4,18,30,25,32,47,6,50,8,36],nsubseteq:28,doublebarwedg:28,projlim:28,"4ac":18,rare:45,versionatleast:30,account:9,alik:2,retriev:9,augment:[37,35,38,22],aperson:29,thin:23,assum:47,control:[13,25,41,18,28,53,46,50,4,5,30,19,20,33,42,34,7,36,52,23],tau:28,lesseqgtr:28,tar:41,process:[0,2,4,9,10,11,12,15,16,17,18,23,20,22,24,25,27,28,29,30,32,35,36,38,13,31,42,49,45,47,50,51,52],dfrac:28,newmath:47,high:[21,50,51],tag:[1,27,28,36,6,11,12,17,18,44,20,22,23,24,2,42,32,35,30,4,31,41,49,47,51],tan:28,prece:29,delai:[0,30,34,13,26,39,46,16,17,20,33,36],gcd:28,pure:31,getelementsbytagnamen:2,subdirectori:[41,35,22,49],instead:[28,11,41,12,29,15,45,47,17,18,51,36],class4:37,class2:37,sin:28,sim:28,class1:37,simplesup:37,frac:28,overridden:[34,22,16,38,49,35,37],mspace:[28,18,31,12],anothermethod:37,frak:28,filtertext:16,redund:[37,20],essenti:[13,28,51,36,37],light:[28,37],correspond:[30,36,34,32],element:[27,13,5,9,4,36,12,17,18,44,20,22,39,31,35,30,37,28,40,34,49,45,47,48,51,53],issu:[0,31,3,16,20,51,36],unaccept:50,allow:[1,2,28,11,12,16,17,18,44,20,21,23,29,33,34,36,37,39,31,41,43,45,46,19,53],fallback:[34,41],mjx:9,fastest:50,nonumb:[],move:[34,11,41],nsucc:28,comma:[53,2,28,20,36,24],dagger:28,mathjax_tooltip:34,movabl:[8,1],chosen:50,coth:28,varxi:28,therefor:28,pixel:34,multimap:28,crash:20,greater:28,handl:[0,11,12,28,43,45,31,2,40,17,5,30,19,48,36,52,38],supsetneq:28,nokia:12,innermost:44,dai:9,maxbuff:23,front:[13,12],successor:32,gggtr:28,sourceel:[17,49,22,47],anyth:[17,24,3],edit:[36,1,6],smallfrown:28,mode:[28,41,12,4,18,32,50,34,51],varomega:28,"2em":28,genfrac:28,subset:28,delaypost:34,nointerest:39,meta:50,"static":37,our:[11,41,12,3,18,8],meth:38,acut:28,special:[28,30,29,53,4,18,31,20,48,21,50,51,36],out:[0,11,41,45,17,5,19,50,34,51],variabl:[40,26,14,2,27,47,28,29,37],lesseqqgtr:28,reflow:12,stub:38,rel:[0,19,34,12],moveabl:[8,1],circlearrowleft:28,ref:30,math:[27,13,36,9,10,11,12,16,17,18,19,20,21,25,2,42,32,33,34,35,30,38,4,31,41,43,28,46,47,48,50,51],negthinspac:28,nsucceq:28,insid:[12,1],workflow:31,manipul:47,eqslantgtr:28,releas:[18,36,2,41],afterward:29,indent:[23,20],could:[0,11,29,14,45,3,28,17,18,30,31,47,51,36,49],ask:[3,47,18,23,51,36],succ:28,keep:[11,41,1,43,47,28,18,50,51,36],gtreqqless:28,length:[2,26],outsid:[4,50],"0em":20,scriptstyl:28,softwar:[21,18,51],rbrace:28,blogger:1,rbrack:28,qualiti:[21,50,51],spadesuit:28,date:[11,36,41,12,18],uplu:28,clubsuit:28,bigsqcup:28,suffic:18,"long":[28,18,45,12,46],start:[0,11,41,26,10,44,45,27,48,28,17,18,38,20,6,8,36,39,51],unknown:31,system:[41,1,18,3,28,5,21,50],messag:[0,11,41,43,13,18,14,28,27,16,17,5,40,20,48,30,39,38],attach:[17,39,48],termin:4,"final":[11,29,28,18,44,21,51],rsh:28,supset:28,"1em":31,gtreqless:28,hdashlin:28,exactli:50,blind:51,ipad:12,gtrdot:28,subsetneq:28,structur:[0,40,26,29,43,47,17,18,30,36,24],charact:[28,31,34,12,53,4,5,23,20,51],htaccess:41,seriou:51,disrtibut:11,bet:41,exhibit:41,deliveri:[18,12],biggl:28,biggm:28,rrightarrow:28,unkown:30,have:[0,1,27,3,4,5,36,11,12,13,17,18,19,20,49,24,26,2,28,29,34,30,37,39,31,41,45,47,48,50,51],tabl:31,need:[0,1,2,3,4,5,6,8,11,12,15,16,17,18,19,20,21,22,23,26,27,28,29,30,34,35,36,37,38,13,31,41,43,49,45,47,48,51,53],nsim:28,border:[9,28,53],min:28,mid:28,which:[1,27,4,8,11,12,13,16,17,18,23,20,22,24,25,26,2,28,29,30,31,32,33,34,35,36,37,39,40,41,42,44,45,47,49,50,51,53],hbox:28,mit:28,singl:[0,11,12,26,47,14,45,28,4,18,40,48,21,36,53],declaremathoper:28,mathjax_preview:[25,53,4,42,20,51],x22d6:28,unless:[18,12,26,50],who:[17,39,3],eight:50,leftthreetim:28,comparison:[45,30],"class":[37,39,40,12,26,14,15,28,4,38,20,49,35,22,51,32],underset:28,placement:12,url:[0,11,41,12,2,46,13,18,36],gather:28,request:[0,12,39,45,27,28,17,29,50,36],face:[34,3,5,23,41,24],inde:[2,24],movablelimit:12,nmid:28,determin:[36,34,1,27,28,19,20,30],flux:45,occasion:36,fact:[39,11,38],atopwithdelim:28,backsimeq:28,mathjax_messag:16,text:[1,27,4,5,6,9,11,12,16,17,18,19,20,21,49,23,25,2,28,29,32,8,36,13,34,42,44,45,47,50,51],verbos:[43,29,20],perfom:48,perfor:50,bring:51,woth:31,curlyeqsucc:28,lgroup:28,locat:[0,11,41,18,27,47,4,5,30,25,20,17,42,36,22,51,32],jax:[2,13,36,7,11,12,14,17,23,20,22,24,27,32,35,30,37,38,19,40,34,43,49,53,47,50,51,52],vartriangleright:28,forev:2,should:[2,13,36,6,8,4,11,15,18,23,20,22,26,28,29,32,35,30,38,39,31,41,44,45,47,50,52,53],imagefont:[5,34],vartriangleleft:28,suppos:[29,11,47],"5px":9,triangleright:28,"5pt":18,local:[41,26,18,45,2,47,5,20,36],hope:[5,11],precsim:28,overleftarrow:28,fontwarns:53,increas:[11,12],ignoreclass:4,leqslant:28,smash:28,enabl:[28,11,1,4,18,6,8,36],organ:51,frown:28,stuff:30,she:50,contain:[0,1,2,4,5,9,36,13,14,15,16,17,18,38,20,49,25,26,28,29,34,30,39,40,41,42,45,47,51,53],view:[31,41,14,2,18,32,50,21,34,36],attibut:53,coooki:9,frame:16,apolog:11,temporarili:16,substack:28,issafari:30,mathord:28,statu:[0,41,29],error:[0,11,28,31,2,3,13,18,38,20,35,30,22],jmath:28,pattern:[4,20],thumb:45,gtrsim:28,favor:11,written:[18,6],quickest:18,theta:28,neither:[5,44],equiv:[28,50],omicron:28,nshortmid:28,kei:[9,0,26,39,15,17,20,30],entir:[30,36,20,47],closebox:5,ker:28,addit:[0,11,12,26,18,15,45,28,13,17,5,30,31,20,29,49,35,36,22,53,47],skipstartuptypeset:20,plugin:[1,46,20,6,21,50,51],admin:[8,6],nabla:28,equal:[45,30,37],gnapprox:28,etc:[28,45,36,20,47],instanc:[9,30,49,45,38,36,37],equat:[13,25,41,12,42,28,47,4,18,23,20,50,21,34,51,49],futher:50,class3:37,eth:28,limiti:41,lmoustach:28,html5:[11,36,12,50],comment:[12,53,13,18,20,36],varnoth:28,arriv:[17,48],solv:[36,2],arguement:29,respect:[19,34,26],quit:47,showfontmenu:46,"55em":28,quotat:53,compos:31,compon:[0,27,13,36,11,14,17,18,21,22,24,40,35,30,37,39,31,28,46,48,51,53],treat:[28,18],immedi:[0,15,45,27,47,17,36],smallsetminu:28,both:[0,11,12,29,43,45,27,13,18,30,31,20,6,8,36,37],alignat:28,varsupsetneq:28,otf:[41,12],psi:28,togeth:[11,26,45,13,31,30],injlim:28,present:[39,31,3,5,20,36],twoheadrightarrow:28,multi:28,iscallback:26,plain:28,align:[28,31,20],contextu:[10,31,34,46,13,19,20,33,51,49],studentdisplai:47,defin:[28,11,34,33,18,27,45,2,46,13,5,30,19,38,20,29,53,36,37,23,24],glossari:[43,10],layer:[12,1],almost:28,curvearrowright:28,site:[11,41,1,13,18,20,21,8,36],archiv:[18,41],substanti:[11,36],revis:41,halt:48,welcom:3,displaystyl:[28,47],parti:17,cross:41,sqrt:[28,18,51],getx:37,extensiondir:38,oint:28,android:12,cssid:[28,12],difficult:[29,31,48],phi:28,http:[11,41,1,2,46,47,28,18,32,6,50,8,36],lleftarrow:28,"8em":[28,23],effect:[15,45,2],mrow:[18,51,31],student:47,php:[1,6],trake:3,executehook:[39,26],off:[28,12,13,48,19,50,36],center:[28,20],well:[13,41,26,29,53,3,47,17,18,38,20,48,50,36],exampl:[0,2,3,4,5,7,9,11,12,15,17,18,23,20,22,24,25,26,39,28,29,30,31,32,33,34,35,36,37,19,40,41,42,44,45,46,47,48,49,50,51,52,53],command:[30,41,26,43,15,45,27,47,28,31,20,36],choos:[28,18,50],undefin:[28,18,26,29],setx:37,subsetneqq:28,sibl:12,latest:[11,41,1,2,47,28,18,32,6,50,8,36],curlyeqprec:28,paus:41,less:[28,41,4,18,51,30],natiov:19,obtain:[11,41,47,13,18,20,51,36,22],mistaken:51,mathclos:28,mathoutput:47,simultan:[45,27],web:[10,11,41,12,1,18,27,45,2,28,17,5,32,47,48,21,34,51,36,39,49],current_them:1,smith:29,textbf:28,cdotp:28,add:[13,11,12,1,15,28,4,5,38,20,49,50,37,53],other:[0,1,27,4,36,11,12,13,15,16,17,18,19,20,21,49,26,28,29,32,34,30,37,38,39,31,41,43,45,47,48,50,51,52],match:[4,39,34],webpag:32,piec:12,ntriangleright:28,punctuat:12,know:[39,29,2,17,18,35,36,22,51],cfrac:28,press:20,recurs:[30,12],loss:36,nofont:5,like:[2,28,4,12,15,16,17,18,21,24,26,29,32,35,36,39,31,41,43,45,47,48,50,51,53],lost:29,messagehook:[17,39,30],necessari:[21,18,30,36,49],page:[1,27,4,5,6,9,10,11,12,13,14,16,17,18,19,20,21,49,25,2,28,29,30,32,34,8,36,39,31,41,42,45,46,47,48,50,51],captur:43,settext:9,linux:30,bigve:28,"export":49,superclass:37,proper:[39,30],home:0,librari:[14,45,40,41],glyph:[43,28],kern:28,leak:49,avoid:[11,12,28,44,20,51,31],tooltip:34,leav:[9,23,52,47],doublecap:28,supsetneqq:28,preload:[0,18],twoheadleftarrow:28,daleth:28,upharpoonright:28,journal:43,usag:10,host:[11,36],sphericalangl:28,although:[14,39,41,52],offset:34,simpler:16,varepsilon:28,about:[39,11,41,12,26,18,28,3,13,17,5,30,19,20,29,48,34,51,36,47],ams_html:[28,11,47,13,32,36],actual:[9,0,30,26,47,15,45,28,17,29,31,20,35,36,22],column:23,mathajx:11,mod_head:41,mapsto:28,constructor:37,fals:[39,34,12,13,28,2,46,4,19,20,7,30,37,24],disabl:[19,11,34],eqalign:28,own:[11,41,12,18,14,45,3,28,5,48,50,35,36,22,51,24],amsmath:[28,11,45,13,18,23,36],circledr:28,reprocessor:31,automat:[28,15,45,16,4,18,38,50,51,36,37],bigtriangledown:28,guard:20,vphantom:28,merg:[9,30],dcocument:30,transfer:[18,41],support:[10,11,34,12,18,27,28,31,2,3,40,13,5,19,21,50,51,36,52],much:[17,43,36,50,48],bigcap:28,tracker:[18,3],arg1:29,"var":[9,26,45,2,47,17,29,37],arg2:29,"function":[0,26,39,43,15,45,2,28,17,29,27,47,48,51,30,37],propto:28,unexpect:[19,20],precnapprox:28,studentansw:47,bodi:[0,11,47,18,35,36,22],gain:[50,46],inlin:[4,18,11],bug:[9,11,41,12,3,16,18,20,51,36],count:2,made:[41,45,3,48,51,49,24],bbbk:28,whether:[28,25,34,42,2,46,47,4,29,30,19,20,7,36,52],wish:[11,29,53,2,3,28,18,50,30],displai:[28,5,9,10,12,16,17,18,23,20,21,49,25,32,33,36,4,31,41,22,46,47,51],troubl:18,underleftrightarrow:28,asynchron:[0,40,26,39,43,15,45,17,29,48,30],gtrapprox:28,below:[1,28,5,7,9,36,18,23,20,22,25,42,33,50,34,35,30,4,41,44,46,48,49,19,51,52],limit:[9,0,31,28,23,36],otherwis:[0,40,26,28,16,13,18,30,6,50,36,37],problem:[11,41,12,29,2,3,28,18,50,51,36],x03c0:51,"int":[9,29,28],dure:[12,26,17,38,20,30,49],novemb:11,implement:[9,0,11,13,14,28,17,29,38,50,51,31,37],nolimit:28,inf:28,rightleftharpoon:28,probabl:[17,29,36,1],oplu:28,helpurl:46,immateri:45,percent:[19,34],detail:[0,4,5,36,6,10,11,12,13,15,17,18,19,20,25,26,28,42,32,33,34,8,30,39,31,41,45,46,47,48,50,51],arctan:28,book:43,futur:[0,3,16,17,48,50,49],branch:[36,41],varieti:51,downlaod:[21,41,12],removeaft:5,mehtod:38,repeat:[41,1],star:28,liter:4,thicksim:28,msgroup:31,stai:36,sphinx:1,scientif:43,reliabl:[11,36,2,50],rule:[28,5,45,7,20],mathjax_mathml:2,portion:47,eot:41},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","Using MathJax in Movable Type","The MathJax.HTML Object","MathJax Documentation","Migrating from MathJax v1.0 to v1.1","What’s New in MathJax v1.1","Common Configurations","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","Configuration Objects","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax Startup Sequence","MathJax TeX and LaTeX Support","Using Callbacks","The MathJax.Hub Object","MathJax MathML Support","Converting to MathJax from jsMath","The MathZoom extension","The HTML-CSS output processor","The MathJax.InputJax Class","Loading and Configuring MathJax","The MathJax Object-Oriented Programming Model","The Base Jax Class","The MathJax.Callback.Signal Class","The MathJax variable","Installing and Testing MathJax","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","platforms/movable-type","api/html","index","upgrade","whats-new","config-files","api/index","api/queue","api/message","signals","start","options/NativeMML","options/hub","mathjax","api/outputjax","options/TeX","options/index","options/jsMath2jax","api/callback","startup","tex","callbacks","api/hub","mathml","jsMath","options/MathZoom","options/HTML-CSS","api/inputjax","configuration","api/object","api/jax","api/signal","api/variable","installation","options/mml2jax","glossary","HTML-snippets","queues","options/MathMenu","typeset","synchronize","api/elementjax","output","model","options/MMLorHTML","CSS-styles"]})
+\ No newline at end of file
diff --git a/docs/source/api/hub.rst b/docs/source/api/hub.rst
@@ -187,24 +187,26 @@ Methods
.. Method:: Typeset([element[,callback]])
- Calls the preprocessors on the given element, and then typesets
- any math elements within the element. If no `element` is
- provided, the whole document is processed. The `element` is
- either the DOM `id` of the element, or a reference to the DOM
- element itself. The `callback` is called when the process is
- complete. See the :ref:`Modifying Math <typeset-math>` section
- for details of how to use this method properly.
+ Calls the preprocessors on the given element (or elements if it is an
+ array of elements), and then typesets any math elements within the
+ element. If no `element` is provided, the whole document is processed.
+ The `element` is either the DOM `id` of the element, a reference to
+ the DOM element itself, or an array of id's or refereneces. The
+ `callback` is called when the process is complete. See the
+ :ref:`Modifying Math <typeset-math>` section for details of how to use
+ this method properly.
:Parameters:
- - **element** --- the element whose math is to be typeset
+ - **element** --- the element(s) whose math is to be typeset
- **callback** --- the callback specification
:Returns: the callback object
.. method:: PreProcess([element[,callback]])
- Calls the loaded preprocessors on the entire document, or on the
- given DOM element. The `element` is either the DOM `id` of the
- element, or a reference to the DOM element itself. The `callback`
+ Calls the loaded preprocessors on the entire document, or on the given
+ DOM element (or elements, if it is an array of elements). The
+ `element` is either the DOM `id` of the element, a reference to the
+ DOM element itself, or an array of id's or references. The `callback`
is called when the processing is complete.
:Parameters:
@@ -214,43 +216,44 @@ Methods
.. method:: Process([element[,callback]])
- Scans either the entire document or a given DOM `element` for
- MathJax ``<script>`` tags and processes the math those tags
- contain. The `element` is either the DOM `id` of the element to
- scan, or a reference to the DOM element itself. The `callback` is
- called when the processing is complete.
+ Scans either the entire document or a given DOM `element` (or array of
+ elements) for MathJax ``<script>`` tags and processes the math those
+ tags contain. The `element` is either the DOM `id` of the element to
+ scan, a reference to the DOM element itself, or an array of id's or
+ references. The `callback` is called when the processing is complete.
:Parameters:
- - **element** --- the element to be processed
+ - **element** --- the element(s) to be processed
- **callback** --- the callback specification
:Returns: the callback object
.. method:: Update([element[,callback]])
- Scans either the entire document or a given DOM element for
- mathematics that has changed since the last time it was processed,
- or is new, and typesets the mathematics they contain. The
- `element` is either the DOM `id` of the element to scan, or a
- reference to the DOM element itself. The `callback` is called
- when the processing is complete.
+ Scans either the entire document or a given DOM element (or elements if
+ it is an array of elements) for mathematics that has changed since the
+ last time it was processed, or is new, and typesets the mathematics
+ they contain. The `element` is either the DOM `id` of the element to
+ scan, a reference to the DOM element itself, or an array of id's or
+ references. The `callback` is called when the processing is complete.
:Parameters:
- - **element** --- the element to be updated
+ - **element** --- the element(s) to be updated
- **callback** --- the callback specification
:Returns: the callback object
.. method:: Reprocess([element[,callback]])
- Removes any typeset mathematics from the document or DOM
- element, and then processes the mathematics again,
- re-typesetting everything. This may be necessary, for example, if
- the CSS styles have changed and those changes would affect the
- mathematics. The `element` is either the DOM `id` of the element
- to scan, or a reference to the DOM element itself. The `callback`
- is called when the processing is complete.
+ Removes any typeset mathematics from the document or DOM element (or
+ elements if it is an array of elements), and then processes the
+ mathematics again, re-typesetting everything. This may be necessary,
+ for example, if the CSS styles have changed and those changes would
+ affect the mathematics. The `element` is either the DOM `id` of the
+ element to scan, a reference to the DOM element itself, or an array of
+ id's or references. The `callback` is called when the processing is
+ complete.
:Parameters:
- - **element** --- the element to be reprocessed
+ - **element** --- the element(s) to be reprocessed
- **callback** --- the callback specification
:Returns: the callback object
diff --git a/docs/source/options/hub.rst b/docs/source/options/hub.rst
@@ -145,6 +145,16 @@ behavior of MathJax. They are given with their default values.
which case you will need to call :meth:`MathJax.Hub.Typeset()`
yourself by hand, set this value to ``true``.
+.. describe:: element: []
+
+ This is a list of DOM element ID's that are the ones to process for
+ mathematics when any of the Hub typesetting calls (Typeset, Process,
+ Update, etc.) are called with no element specified, and during
+ MathJax's initial typesetting run when it starts up. This lets you
+ restrict the processing to particular containers rather than scanning
+ the entire document for mathematics. If none are supplied, the entire
+ document is processed.
+
.. describe:: menuSettings: { ... }
This block contains settings for the mathematics contextual menu
diff --git a/docs/source/options/jsMath2jax.rst b/docs/source/options/jsMath2jax.rst
@@ -20,12 +20,6 @@ section in your :meth:`MathJax.Hub.Config()` call. For example
would set the ``preview`` parameter to ``"none"``.
-
-.. describe:: element: null
-
- The id name of the element that should be processed by `jsMath2jax`.
- The default is the whole document.
-
.. describe:: preview: "TeX"
This controls whether `jsMath2jax` inserts ``MathJax_Preview`` spans
diff --git a/docs/source/options/mml2jax.rst b/docs/source/options/mml2jax.rst
@@ -20,11 +20,6 @@ set any of these options, include a ``mml2jax`` section in your
would set the ``preview`` parameter to ``"none"``.
-.. describe:: element: null
-
- The id name of the element that should be processed by `mml2jax`.
- The default is the whole document.
-
.. describe:: preview: "alttext"
This controls whether `mml2jax` inserts ``MathJax_Preview`` spans
diff --git a/docs/source/options/tex2jax.rst b/docs/source/options/tex2jax.rst
@@ -22,11 +22,6 @@ would set the ``inlineMath`` delimiters for the `tex2jax`
preprocessor.
-.. describe:: element: null
-
- The id name of the element that should be processed by `tex2jax`.
- The default is the whole document.
-
.. describe:: inlineMath: [['\\\(','\\\)']]
Array of pairs of strings that are to be used as in-line math