commit 4d61d199cae64843dedf1f2153c372c4b191d185
parent db3c5e7abad71beed69c3cec24f737462330f274
Author: Davide P. Cervone <dpvc@union.edu>
Date: Sun, 26 Feb 2012 07:21:19 -0500
Incorporate Ivan's edits, fix the zipball name that he changed, and update SVG description to list the browsers that it doesn't support
Diffstat:
13 files changed, 113 insertions(+), 103 deletions(-)
diff --git a/docs/html/_sources/configuration.txt b/docs/html/_sources/configuration.txt
@@ -326,17 +326,12 @@ Using in-line configuration options
===================================
The second way to configure MathJax is through `in-line configuration`,
-which puts the configuration options within the web page itself. This
-process was changed in version 1.1 to make it compatible with HTML5.
-Earlier versions of MathJax had in-line configuration included within the
-content of the ``<script>`` tag that loads ``MathJax.js``, but HTML5 makes
-it illegal to have content for a script with a ``src`` attribute.
-
-MathJax solves this problem by using separate ``<script>`` tags to
-perform the configuration for and loading of MathJax. Because MathJax
-starts its configuration process as soon as it is loaded, the
-configuration script must come **before** the script tag that loads
-``MathJax.js`` itself. You do this by including a ``<script>`` with
+which puts the configuration options within the web page itself. The use
+of in-line configuration with MathJax requires two separate ``<script>``
+tags: one for specifying the configuration settings and one for loading of
+MathJax. Because MathJax starts its configuration process as soon as it is
+loaded, the configuration script must come **before** the script tag that
+loads ``MathJax.js`` itself. You do this by including a ``<script>`` with
``type="text/x-mathjax-config"`` whose content will be run when
MathJax performs its configuration. Generally, this script will
include a :meth:`MathJax.Hub.Config()` call to perform MathJax
diff --git a/docs/html/_sources/installation.txt b/docs/html/_sources/installation.txt
@@ -96,20 +96,20 @@ to get a list of the available branches. There are separate branches
for the main releases, but with ``-latest`` appended. These contain
all the patches for that particular release. You can check out one of
the branches just as you would a tagged copy. For example, the branch
-for the ``v1.1`` tagged release is ``v1.1-latest``. To get this
+for the ``v2.0`` tagged release is ``v2.0-latest``. To get this
release, use
.. code-block:: sh
cd MathJax
- git checkout v1.1-latest
+ git checkout v2.0-latest
and to update it when changes occur, use
.. code-block:: sh
cd MathJax
- git pull origin v1.1-latest
+ git pull origin v2.0-latest
.. _getting-mathjax-svn:
diff --git a/docs/html/_sources/output.txt b/docs/html/_sources/output.txt
@@ -43,25 +43,29 @@ more math is processed. MathJax version 2.0 includes a number of
optimizations to improve the display performance in IE, and it is now
more comparable to other browsers. The HTML-CSS output uses web-based
fonts so that users don't have to have math fonts installed on their
-computers; but this does introduce some printing issues in some
-browsers.
-
-The **SVG output processor** is new in MathJax version 2.0, and it uses
-`Scalable Vector Graphics` to render the mathematics on the page. SVG
-is supported in all the major browsers and most mobile devices; note,
-however, that Internet Explorer prior to IE9 does not support SVG, and
-IE9 only does in "IE9 standards mode", not its emulation modes for
-earlier versions. The SVG output mode is high quality and slightly
-faster than HTML-CSS, and it does not suffer from some of the
+computers, which introduces some printing issues in certain browsers.
+
+The **SVG output processor** is new in MathJax version 2.0, and it
+uses `Scalable Vector Graphics` to render the mathematics on the page.
+SVG is supported in all the major browsers and most mobile devices;
+note, however, that Internet Explorer prior to IE9 does not support
+SVG, and IE9 only does in "IE9 standards mode", not its emulation
+modes for earlier versions. The SVG output mode is high quality and
+slightly faster than HTML-CSS, and it does not suffer from some of the
font-related issues that HTML-CSS does, so prints well in all
browsers. This format also works well in some ebook readers (e.g.,
-iBooks). The disadvantage of this mode is that it does not take
-advantage of STIX fonts, and so only has access to the characters in
-the web-based fonts, and it variable-width tables become fixed size
-once they are typeset, and don't rescale if the window size changes
-(for example). Since equation numbers are handled through
+iBooks). The disadvantages of this mode are the following: first,
+Internet Explorer only supports SVG in IE9 and later versions (and
+then only in IE9 standards mode or above), and some versions of the
+Android Internet browser don't have SVG enabled. Second, it does not
+take advantage of STIX fonts, and so only has access to the characters
+in the web-based fonts, and third, its variable-width tables become
+fixed size once they are typeset, and don't rescale if the window size
+changes (for example). Since equation numbers are handled through
variable-width tables, that means equation numbers may not stay at the
-edge of the window if it is resized.
+edge of the window if it is resized. For these reasons it is probably
+best not to force the use of SVG output unless you have some control
+over the browsers that are used to view your documents.
The **NativeMML output processor** uses the browser's internal MathML
support (if any) to render the mathematics. Currently, Firefox has
@@ -73,12 +77,12 @@ don't recommend using the NativeMML output processor with Opera.
Safari has some support for MathML since version 5.1, but the quality
is not as high as either Firefox's implementation or IE with MathPlayer.
Chrome, Konqueror, and most other browsers don't support MathML
-natively, but may in the future, since MathML is part of the HTML5
-specification.
+natively, but this may change in the future, since MathML is part of
+the HTML5 specification.
The advantage of the NativeMML output Processor is its speed, since
native MathML support is much faster than using complicated HTML and
-CSS to lay out mathematics, as the HTML-CSS output processor does.
+CSS to typeset mathematics, as the HTML-CSS output processor does.
The disadvantage is that you are dependent on the browser's MathML
implementation for your rendering, and these vary in quality of output
and completeness of implementation. MathJax relies on features that
diff --git a/docs/html/_sources/start.txt b/docs/html/_sources/start.txt
@@ -5,13 +5,14 @@ Getting Started
***************
MathJax allows you to include mathematics in your web pages, either
-using TeX and LaTeX notation, MathML, or AsciiMath notation, and you
-can even use all three in the same document.
+using LaTeX, MathML, or AsciiMath notation, and the mathematics
+will be processed using javascript to produce HTML, SVG or MathML
+equations for viewing in any modern browser.
There are two ways to access MathJax: the easiest way is to use the
copy of MathJax available from our distributed network service at
``cdn.mathjax.org``, but you can also download and install a copy of
-MathJax on your own server, or use it locally on your own hard disk
+MathJax on your own server, or use it locally on your hard disk
(with no need for network access). All three of these are described
below, with links to more detailed explanations. This page gives the
quickest and easiest ways to get MathJax up and running on your web
@@ -105,14 +106,14 @@ hard disk.
Obtaining and Installing MathJax
--------------------------------
-The easiest way to set up MathJax is to obtain the v1.1 archive from
+The easiest way to set up MathJax is to obtain the v2.0 archive from
the `MathJax download page <http://www.mathjax.org/download/>`_ (you
should obtain a file named something like
-``mathjax-MathJax-v1.1-X-XXXXXXXX.zip``, where the X's are
-random-looking letters and numbers). This archive includes both the
-MathJax code and the MathJax webfonts, so it is the only file you
-need. Note that this is different from v1.0 and earlier releases,
-which had the fonts separate from the rest of the code.
+``mathjax-MathJax-v2.0-X-XXXXXXXX.zip`` where the X's are random
+looking numbers and letters). This archive includes both the MathJax
+code and the MathJax webfonts, so it is the only file you need. Note
+that this is different from v1.0 and earlier releases, which had the
+fonts separate from the rest of the code.
Unpack the archive and place the resulting MathJax folder onto your
web server at a convenient location where you can include it into your
diff --git a/docs/html/_sources/tex.txt b/docs/html/_sources/tex.txt
@@ -281,7 +281,8 @@ Autmatic Equation Numering
==========================
New in MathJax v2.0 is the ability to have equations be numbered
-automatically. This is off by default, so that pages don't change
+automatically. This functionality is turned off by default, so
+that pages don't change
when you update from v1.1 to v2.0, but it is easy to configure MathJax
to produce automatic equation numbers by adding:
diff --git a/docs/html/configuration.html b/docs/html/configuration.html
@@ -326,16 +326,12 @@ location of your configuration file.</p>
<div class="section" id="using-in-line-configuration-options">
<span id="inline-config"></span><h2>Using in-line configuration options<a class="headerlink" href="#using-in-line-configuration-options" title="Permalink to this headline">¶</a></h2>
<p>The second way to configure MathJax is through <cite>in-line configuration</cite>,
-which puts the configuration options within the web page itself. This
-process was changed in version 1.1 to make it compatible with HTML5.
-Earlier versions of MathJax had in-line configuration included within the
-content of the <tt class="docutils literal"><span class="pre"><script></span></tt> tag that loads <tt class="docutils literal"><span class="pre">MathJax.js</span></tt>, but HTML5 makes
-it illegal to have content for a script with a <tt class="docutils literal"><span class="pre">src</span></tt> attribute.</p>
-<p>MathJax solves this problem by using separate <tt class="docutils literal"><span class="pre"><script></span></tt> tags to
-perform the configuration for and loading of MathJax. Because MathJax
-starts its configuration process as soon as it is loaded, the
-configuration script must come <strong>before</strong> the script tag that loads
-<tt class="docutils literal"><span class="pre">MathJax.js</span></tt> itself. You do this by including a <tt class="docutils literal"><span class="pre"><script></span></tt> with
+which puts the configuration options within the web page itself. The use
+of in-line configuration with MathJax requires two separate <tt class="docutils literal"><span class="pre"><script></span></tt>
+tags: one for specifying the configuration settings and one for loading of
+MathJax. Because MathJax starts its configuration process as soon as it is
+loaded, the configuration script must come <strong>before</strong> the script tag that
+loads <tt class="docutils literal"><span class="pre">MathJax.js</span></tt> itself. You do this by including a <tt class="docutils literal"><span class="pre"><script></span></tt> with
<tt class="docutils literal"><span class="pre">type="text/x-mathjax-config"</span></tt> whose content will be run when
MathJax performs its configuration. Generally, this script will
include a <tt class="xref py py-meth docutils literal"><span class="pre">MathJax.Hub.Config()</span></tt> call to perform MathJax
diff --git a/docs/html/installation.html b/docs/html/installation.html
@@ -118,15 +118,15 @@ git branch
for the main releases, but with <tt class="docutils literal"><span class="pre">-latest</span></tt> appended. These contain
all the patches for that particular release. You can check out one of
the branches just as you would a tagged copy. For example, the branch
-for the <tt class="docutils literal"><span class="pre">v1.1</span></tt> tagged release is <tt class="docutils literal"><span class="pre">v1.1-latest</span></tt>. To get this
+for the <tt class="docutils literal"><span class="pre">v2.0</span></tt> tagged release is <tt class="docutils literal"><span class="pre">v2.0-latest</span></tt>. To get this
release, use</p>
<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>MathJax
-git checkout v1.1-latest
+git checkout v2.0-latest
</pre></div>
</div>
<p>and to update it when changes occur, use</p>
<div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>MathJax
-git pull origin v1.1-latest
+git pull origin v2.0-latest
</pre></div>
</div>
</div>
diff --git a/docs/html/output.html b/docs/html/output.html
@@ -85,24 +85,28 @@ more math is processed. MathJax version 2.0 includes a number of
optimizations to improve the display performance in IE, and it is now
more comparable to other browsers. The HTML-CSS output uses web-based
fonts so that users don’t have to have math fonts installed on their
-computers; but this does introduce some printing issues in some
-browsers.</p>
-<p>The <strong>SVG output processor</strong> is new in MathJax version 2.0, and it uses
-<cite>Scalable Vector Graphics</cite> to render the mathematics on the page. SVG
-is supported in all the major browsers and most mobile devices; note,
-however, that Internet Explorer prior to IE9 does not support SVG, and
-IE9 only does in “IE9 standards mode”, not its emulation modes for
-earlier versions. The SVG output mode is high quality and slightly
-faster than HTML-CSS, and it does not suffer from some of the
+computers, which introduces some printing issues in certain browsers.</p>
+<p>The <strong>SVG output processor</strong> is new in MathJax version 2.0, and it
+uses <cite>Scalable Vector Graphics</cite> to render the mathematics on the page.
+SVG is supported in all the major browsers and most mobile devices;
+note, however, that Internet Explorer prior to IE9 does not support
+SVG, and IE9 only does in “IE9 standards mode”, not its emulation
+modes for earlier versions. The SVG output mode is high quality and
+slightly faster than HTML-CSS, and it does not suffer from some of the
font-related issues that HTML-CSS does, so prints well in all
browsers. This format also works well in some ebook readers (e.g.,
-iBooks). The disadvantage of this mode is that it does not take
-advantage of STIX fonts, and so only has access to the characters in
-the web-based fonts, and it variable-width tables become fixed size
-once they are typeset, and don’t rescale if the window size changes
-(for example). Since equation numbers are handled through
+iBooks). The disadvantages of this mode are the following: first,
+Internet Explorer only supports SVG in IE9 and later versions (and
+then only in IE9 standards mode or above), and some versions of the
+Android Internet browser don’t have SVG enabled. Second, it does not
+take advantage of STIX fonts, and so only has access to the characters
+in the web-based fonts, and third, its variable-width tables become
+fixed size once they are typeset, and don’t rescale if the window size
+changes (for example). Since equation numbers are handled through
variable-width tables, that means equation numbers may not stay at the
-edge of the window if it is resized.</p>
+edge of the window if it is resized. For these reasons it is probably
+best not to force the use of SVG output unless you have some control
+over the browsers that are used to view your documents.</p>
<p>The <strong>NativeMML output processor</strong> uses the browser’s internal MathML
support (if any) to render the mathematics. Currently, Firefox has
native support for MathML, and IE has the <a class="reference external" href="http://www.dessci.com/en/products/mathplayer/">MathPlayer plugin</a> for rendering
@@ -112,11 +116,11 @@ don’t recommend using the NativeMML output processor with Opera.
Safari has some support for MathML since version 5.1, but the quality
is not as high as either Firefox’s implementation or IE with MathPlayer.
Chrome, Konqueror, and most other browsers don’t support MathML
-natively, but may in the future, since MathML is part of the HTML5
-specification.</p>
+natively, but this may change in the future, since MathML is part of
+the HTML5 specification.</p>
<p>The advantage of the NativeMML output Processor is its speed, since
native MathML support is much faster than using complicated HTML and
-CSS to lay out mathematics, as the HTML-CSS output processor does.
+CSS to typeset mathematics, as the HTML-CSS output processor does.
The disadvantage is that you are dependent on the browser’s MathML
implementation for your rendering, and these vary in quality of output
and completeness of implementation. MathJax relies on features that
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:[21,0,1],ExecuteHooks:[31,0,1],setScript:[13,0,1],Subclass:[43,0,1],Delay:[31,0,1],Add:[31,0,1],getAllJax:[42,0,1],getScript:[13,0,1],Interest:[32,0,1],preProcess:[27,0,1],loadComplete:[0,0,1],Translate:[44,0,1],Config:[42,0,1],addElement:[13,0,1],Reprocess:[42,0,1],Styles:[0,0,1],ExecuteHook:[32,0,1],loadTimeout:[0,0,1],Resume:[19,0,1],Update:[42,0,1],preTranslate:[27,0,1],setRenderer:[42,0,1],formatError:[42,0,1],call:[19,0,1],postTranslate:[27,0,1],getJaxByInputType:[42,0,1],PreProcess:[42,0,1],Post:[32,0,1],has:[43,0,1],Signal:[31,0,1],Set:[21,0,1],Insert:[42,0,1],Execute:[31,0,1],addText:[13,0,1],TextNode:[13,0,1],Augment:[43,0,1],needsUpdate:[50,0,1],Clear:[21,0,1],Register:[44,0,1],Zoom:[27,0,1],Remove:[21,0,1],Element:[13,0,1],Queue:[31,0,1],NoInterest:[32,0,1],Rerender:[42,0,1],getJaxByType:[42,0,1],Push:[19,0,1],Typeset:[42,0,1],fileURL:[0,0,1],wait:[19,0,1],reset:[31,0,1],loadError:[0,0,1],getJaxFor:[42,0,1],getJaxFromMath:[27,0,1],LoadHook:[0,0,1],Process:[42,0,1],Hooks:[31,0,1],MessageHook:[32,0,1],Startup:[44,0,1],Init:[43,0,1],Suspend:[19,0,1],SourceElement:[50,0,1],can:[43,0,1],File:[21,0,1],Text:[50,0,1],isJax:[42,0,1],filterText:[21,0,1],isa:[43,0,1],Require:[0,0,1]}},terms:{linebreak:[56,15,47,29],represent:[57,50,53],lspace:51,reprocess:[42,50,53],mathjax_msie_fram:21,yellow:51,four:[51,1,16],prefix:[13,23,27,20],asymp:51,thinspac:51,webfont:[6,47,23],whose:[13,8,53,5,48,36,42,27],under:[51,46,40],preprocess:[33,53,44,57,42,27],asciimath2jax:[17,45,23,36,57,55],worth:8,digit:20,gimel:51,everi:[51,15,8,20,22,28,42],risk:23,mskip:51,arcco:51,govern:[23,16,8],dotplu:51,affect:[15,16,40,20,51,42,55],eqnarrai:51,cmd:25,bigodot:51,c6h5:51,ominu:51,fontweight:15,vector:[49,56,57],math:[3,5,7,8,13,14,15,16,45,20,21,22,23,12,25,26,27,29,30,17,33,35,36,38,39,40,11,42,51,46,47,49,52,53,54,56,57],nparallel:51,showcontext:52,nsubseteqq:51,direct:[6,16,47,40],blacktriangledown:51,second:[0,15,16,40,31,48,59,54,5,6,36,24,25,8,22,11,46,27,1],ngeq:51,blue:39,hide:53,prejax:[57,25],neg:[51,15],menclos:[51,15],"new":[33,4,51,13,14,15,16,20,21,22,23,28,26,27,55,31,42,11,8,43,32,40,50,1,52,53,54,56,57,58],net:23,mhtml:2,told:[51,54,3],limsup:51,elimin:25,behavior:[15,16,47,25,40,8,29],lessapprox:51,never:[0,8,40,44],here:[13,51,37,47,31,48,50,1,3,53,22,23,44,25,39,12,42,32],updiagonalstrik:51,met:33,lneqq:51,formaturl:28,path:[45,0,8,29,23],noundefin:[45,23,15,51],interpret:[5,23,51,40,17],nrightarrow:51,embelish:15,forum:[23,4],bookmarklet:8,rceil:51,lengthen:15,linearli:[56,15],circleddash:51,mathstrut:51,unix:40,brower:[51,17],thinmathspac:46,unit:[51,15,20,29],highli:26,describ:[13,51,16,40,31,23,49,59,33,53,45,6,24,8,48,57,42,27],would:[5,6,7,8,10,12,13,15,16,17,45,19,23,28,25,50,29,30,31,34,35,36,38,39,40,42,43,51,47,48,24,59,52,53,56,57,58,1],afterward:48,readi:[22,37,51,33,45,44,11],ltime:51,varlambda:51,call:[0,2,3,51,6,7,8,10,15,16,19,21,22,23,28,25,27,29,30,31,32,34,35,36,39,40,11,42,43,44,5,47,48,49,50,1,52,53,54,55,12,57,58],typo:15,recommend:[23,15,40,57,56],vcenter:51,preview:[15,30,47,5,35,36,25,57,29],type:[0,2,3,5,9,11,13,15,16,45,22,23,44,25,27,42,38,41,8,51,46,50,1,53,54,56,57],until:[0,30,48,1,5,35,36,44,25,8,22,42,32],notin:51,displaymath:[5,8],relat:[0,20,56],notic:[51,17],warn:[0,15,16,25,6],mathev:[55,27,7,39],jpg:[5,35,36,24,30],loss:8,hold:[0,15,7,24,25,39,57,42],unpack:[23,40],must:[0,33,51,6,16,19,21,23,28,25,29,17,32,42,36,40,8,5,46,47,49,59,7,54,56],fbox:[51,20],join:[22,51],centerdot:51,setup:[26,23,15,46],work:[13,14,15,16,40,17,48,20,51,3,4,53,45,23,46,38,54,22,26,56,43],cc0000:[59,25],tag_nam:40,root:[0,20,33,21,51,8],overrid:[15,27,51,6,44,11,43],mathmenu:[15,37,59,52,45,25,55],give:[51,15,8,47,23,49,24,59,22,6,28,55,12,42,32,29],cirit:8,indic:[0,8,40,17,48,19,51,33,22,23,32,44,25,50,11,42,27,57],impair:26,hline:51,want:[4,5,16,31,45,18,21,22,23,12,25,27,29,17,48,36,40,41,8,43,51,46,47,1,53,56,58],keep:[16,40,2,17,49,53,51,23,57,8,27],setminu:51,end:[0,5,46,17,2,56,33,51,20,15,4,45,1,9,22,41,8,58,57],quot:[47,20,5,36,25,29],hom:51,heartsuit:51,how:[0,2,3,4,5,6,7,8,9,16,17,19,21,23,28,25,29,30,31,32,35,36,38,39,40,42,45,47,34,24,51,52,53,54,12,57],disappear:[5,35,15,30,36],answer:[4,53],verifi:[23,40,4],config:[1,2,33,5,6,7,8,9,10,11,12,15,16,21,22,23,28,25,27,29,30,17,3,34,35,36,38,39,41,42,44,45,47,48,51,52,53,55,56,58,59],renewcommand:51,updat:[15,16,47,2,1,20,53,51,25,8,40,42,50,29],showrender:52,recogn:[23,15],lai:[56,57],diagdown:51,after:[0,3,51,15,42,19,21,22,23,44,25,55,31,48,40,8,32,47,1,52,53,54,29,57,58],befor:[0,2,3,4,51,8,9,15,16,17,19,21,22,23,24,25,28,29,31,32,33,48,36,42,43,44,5,46,47,49,1,7,53,54,56,57],wrong:[51,15,46],unwis:56,parallel:[51,33,1,20],averag:57,alignedat:51,attempt:[0,15,46,52],third:[1,46],leftarrow:51,receiv:[51,16,40,48,43,22,23,32,44,54,8,27],greasekit:3,maintain:[15,16,54,4,22,48,25,27],environ:[51,15,4,5,23,28],enter:[46,34,53,51,23,57,8],textnod:13,order:[5,33,51,6,15,16,19,21,23,25,29,30,31,42,35,36,40,8,43,32,47,48,49,1,56,57],oper:[0,5,6,7,10,12,15,19,20,21,22,28,25,26,27,29,30,34,35,36,39,40,11,32,37,47,48,49,1,52,53,56,58],approxeq:51,over:[13,0,15,47,7,51,20,52,53,45,23,25,39,56,57,8,29],fall:[40,17,23,1,51,6],becaus:[22,16,47,1,17,48,51,3,21,5,23,36,24,8,53,56,57,46,32,28,29],boxtim:51,suspend:[22,19,1,32],textrm:51,appar:1,afil:48,flexibl:[24,1,16],vari:56,smallint:51,img:[30,59,3,5,35,36,24],fix:[15,16,47,40,20,56,8,29],strang:46,better:[15,17,34,20,52,51,23,38,9,56,8],boxminu:51,looparrowright:51,drawback:56,upharpoonleft:51,persist:4,comprehens:49,hidden:51,easier:[32,15,16,40,1,51,46,43],moveleft:51,them:[0,5,6,13,15,16,31,45,19,20,22,23,28,17,32,42,48,36,8,51,46,40,34,59,57,1],thei:[0,1,3,4,5,6,7,8,10,12,15,16,18,19,20,21,22,23,28,25,29,30,31,32,33,34,35,36,39,40,42,44,45,47,48,49,24,51,52,53,54,55,56,57,58,59],qualiti:[26,56,57],safe:[13,23,53],rectangl:49,"break":[15,47,1,20,51,54,56,29],emph:51,mtext:[15,47,20,51,23,29],wedg:51,widetild:[51,15],choic:[56,15,42,9],dbinom:51,leftharpoondown:51,accommod:15,timeout:[0,15,20,31],each:[5,15,8,47,17,31,32,51,33,54,21,45,23,36,53,22,40,57,42,1,29],debug:21,went:51,side:[15,21,51,23,28,25,9],mean:[2,33,5,6,15,16,45,18,22,25,26,29,30,17,32,3,35,36,8,51,47,48,53,54,56],leqq:51,createel:3,resum:[19,1],represetn:51,leqalignno:51,mathopen:51,looparrowleft:51,network:[15,16,40,20,45,23,41,8],goe:[51,54,1],newli:[13,22,43],crucial:40,ios4:20,content:[2,33,5,9,11,13,15,16,45,20,23,24,25,42,36,41,8,43,51,46,49,1,53,56,57],method:[13,0,15,16,43,31,32,19,1,54,21,22,48,44,8,50,11,42,27,53],prefilt:15,reader:[51,15,47,20,45,26,56,29],forth:37,impract:40,multilin:51,situat:[15,20,53,23,56,8],free:[50,4],ineffici:[43,25],autonumb:[51,28],reconfigur:16,lneq:51,distract:15,angl:51,moment:[23,11,40],filter:[15,31],isn:[15,53,22,44,56,50],mtabl:[45,15],isa:43,subtl:53,onto:[49,23,1,42,53],attribtu:23,mathbb:51,rang:[23,57],mathbf:51,render:[5,15,46,33,20,52,45,23,25,26,56,57,42,58,29,38],accent:15,independ:8,yourcolleg:40,restrict:[51,40,25],hook:[22,0,15,31,32],unlik:[26,51,8,44],alreadi:[0,15,31,53,33,51,3,4,21,22,48,54,8,43,1],subtleti:51,primari:[56,16],tooltop:[47,29],top:[15,37,40,51,23,56,8,27],sometim:[23,8,40],underlin:[51,20],master:54,too:[51,15,47,17,3,20,5,23,36,12,56,29],similarli:[0,42,40],newenviron:51,john:48,listen:[22,32,42,31],thickapprox:[51,15],namespac:[15,31,3,20,53,51,23],tool:[1,40],tagind:28,embellish:20,compressor:20,somewhat:[56,25,54],technic:[49,15],past:[32,15,16,20,22,54,26,56],filesmatch:[15,40],provid:[0,2,3,51,13,15,19,21,22,23,24,26,31,48,42,43,32,46,1,53,54,57],eqalignno:51,x2212:[23,57],tree:[23,24],"final":[16,48,51,23,24,26,57,27],project:[49,8,4],matter:[22,38],mathtt:51,ldotp:51,modern:[26,6,46,14],mind:[51,23,8,17,2],increment:19,seem:[48,15,46],rightrightarrow:51,ldot:[51,15],person:48,latter:[51,18,22,34,24,25,57,8,55],domcontentload:[33,15,3],expens:[56,57],even:[0,3,51,15,42,31,19,22,23,24,26,29,17,32,48,8,45,46,47,1,53,54,56,57],lion:15,though:[15,31,17,51,54,24,25,57],object:[0,33,51,6,7,13,14,15,18,19,21,22,24,25,27,28,29,31,48,39,11,42,43,44,32,37,47,49,50,59,52,53,54,55,12,57,1],mmtoken:15,gzip:20,regular:[5,23,36,25],letter:[23,40],breakpoint:[56,15],phase:15,grave:51,don:[51,15,16,48,3,1,20,34,53,22,6,46,8,56,57,42],dom:[13,15,50,1,53,22,54,44,25,11,42,27],doe:[51,15,46,40,17,31,58,50,3,53,22,23,25,8,26,56,11,42,27,57],declar:[15,46,47,59,52,51,6,12,7,39,29],place:[0,15,47,6,43,51,4,53,22,23,32,28,25,12,40,8,27,1,29,38],tfrac:51,unchang:[51,16,58,53],sum:[51,31],came:40,delaystartupuntil:[42,33,25,8],random:[23,40],lnapprox:51,syntax:[51,43,20,49,17],mediawiki:2,isopera:42,outerhtml:20,shownam:48,asynchon:53,next:[17,54,53,51,34,42,50],involv:[51,54,57,8,4],consolid:26,layout:[47,29],just:[22,15,46,40,2,31,48,51,45,23,1,25,8,9,26,56,57,42,32,59],mathchoic:[51,15],ismsi:[42,33],menu:[33,45,7,9,14,15,20,12,25,27,29,37,39,40,41,46,47,50,52,56,57,58],explain:[16,2,45,54,8,55],configur:[0,3,5,6,8,9,10,11,14,15,16,20,21,22,23,28,25,26,27,29,30,17,33,34,35,36,38,39,40,41,42,44,45,46,47,48,24,51,12,55,56,57,58],apach:[15,40],theme:[8,2,9],rich:[26,49],folder:[23,47,40],"0000f0":39,stop:[51,42,47,29],infti:[51,57],amazon:23,report:[46,25,4],circeq:51,nummber:[],subseteq:51,fadeouttim:6,bar:[51,15,43,31],patch:[8,40],reload:52,bad:20,replacechild:3,neq:51,unexpectedli:[51,23,17],undefinedfamili:[47,29],dashrightarrow:51,scriptscriptstyl:51,precneqq:51,result:[51,15,16,31,23,12,25,50,29,17,48,42,11,8,46,47,49,27,1,53,56,57],respons:[32,15,31,20,51,11],fail:[0,15,20,48,44,56,55],themselv:[15,37,33,45,23,24,42],best:[0,16,40,17,1,56,57,8],awar:[51,0,1,46,17],subarrai:51,varinjlim:51,wikipedia:[49,3],circledcirc:51,gneqq:51,drawn:[47,29],awai:[51,8,40],approach:[48,57,2,53],attribut:[13,15,46,23,59,20,51,35,24,56,57,8],blacktriangleright:51,extend:[26,57,17],shoud:56,extens:[0,33,5,6,7,15,16,45,20,22,23,28,25,55,30,42,35,36,38,39,8,44,51,37,49,59,52,53,56,1],add:[43,5,15,16,2,31,19,51,45,6,36,44,25,50,56,27,59],html5:[15,16,20,23,46,56,57,8],toler:3,intop:51,protect:51,accident:15,expos:17,cow:43,howev:[51,16,40,48,33,59,3,4,21,45,23,25,53,56,57,8,43,1,55],configuraiton:[51,57],against:32,setscript:13,seri:[1,24],com:[8,40],varpsi:51,pre:[5,15,16,40,31,51,45,6,36,25,22,8],foral:51,can:[0,1,3,4,5,6,8,12,13,15,16,31,19,20,21,22,23,28,25,26,27,29,17,32,33,48,36,37,38,40,11,42,43,44,45,46,47,49,51,52,53,54,55,56,57,58,59],foobar:43,sai:[19,3,31],innerhtml:[3,53],height:[51,27,15,20,52],wider:4,summat:34,sqsupset:51,speak:[18,57],issol:51,chrome:[47,3,20,56,42,58],three:[46,40,31,48,1,51,6,24,44,54,56,57,23],been:[0,3,4,5,15,16,19,21,22,23,12,25,27,31,33,48,36,38,40,11,8,32,47,1,53,54,56,58],trigger:[45,15,27,25,39],interest:[51,32,49,4,22,54],basic:14,tini:51,quickli:[26,8,4],underrightarrow:51,regul:1,xxx:51,ani:[0,3,4,5,6,7,8,10,12,15,16,19,21,22,23,28,25,27,29,30,31,32,33,34,35,36,39,40,11,42,43,45,46,47,48,50,51,52,53,54,56,58,1],emploi:56,dash:[59,47,29],tanh:51,hat:51,servic:[16,40,20,23,41,8],properti:[13,0,37,43,31,32,19,48,44,50,11,42,27],diamondsuit:51,sourceforg:16,weren:[15,16],dashboard:41,suffici:[17,51,23,28,8,58],anchor:[28,25],"3px":[51,59],succeq:51,have:[0,2,3,4,5,6,8,15,16,17,45,20,22,23,28,25,27,55,31,32,33,48,36,39,40,42,43,51,46,47,34,50,1,12,53,54,56,57],nexist:51,retransl:[50,53],tabl:[56,15,46,17],cong:[51,15],sever:[0,5,16,40,51,15,53,45,48,36,57,27,1],amout:21,disabl:[51,15,16,47,25],incorrectli:[23,15,16,20],perform:[33,4,51,6,15,16,19,20,21,22,28,25,27,29,31,48,42,11,8,44,32,37,47,49,50,1,53,54,56],suggest:[6,4,23],make:[0,4,5,6,8,15,16,45,18,19,20,22,23,12,25,26,27,29,30,35,36,40,42,43,51,46,47,59,52,53,54,56,57,1],complex:[56,24],split:51,synch:16,lrcorner:51,unsafewindow:3,complet:[0,33,5,16,45,19,22,23,44,25,27,31,32,42,48,36,8,51,40,49,50,1,53,54,56],longmapsto:51,hand:[15,46,37,3,21,28,25,57,38],fairli:[24,16],rais:[51,20],mkern:51,ignorepast:32,unlhd:51,squar:[51,24,20],redefin:[15,51,6,44,11,27],kept:22,thu:[16,31,1,22,48,50],inherit:[47,18,43,50,11,27,29],client:47,thi:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,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,54,55,56,57,58,59],idotsint:51,programm:43,everyth:[45,51,1,42,8],settimeout:[48,31],left:[15,46,40,37,33,21,51,54,28,25,9,56,41,55],processclass:[5,15,36],identifi:[13,32,15,17,51,23,57],proccess:[11,27],yen:51,mathbin:51,human:23,coprod:51,yet:[46,19,1,53,22,54],languag:[51,23,57,49,54],noscript:[5,36],onload:[15,37,3,33,48,25,8],errorset:[45,25],easi:[51,49,38],interfer:[23,15,34],had:[15,16,3,22,23,8],myconfig:[22,48],step1:51,els:[51,48,3,53],save:[15,59,9,56,41,8],"0x21c0":51,take:[13,0,15,16,31,2,48,1,33,4,53,51,6,28,25,54,56,8],sanit:21,applic:[26,23,33,2],loadtimeout:0,quirk:15,preserv:48,bbox:[51,15],background:[51,15,20,59,39],sqsubset:51,specif:[0,15,8,2,31,32,49,19,1,37,5,48,36,44,53,56,57,42,50],arbitrari:51,manual:6,zoom:[14,15,46,20,33,7,45,25,39,27],nsubseteq:51,leftrightarrow:51,unnecessari:15,underli:56,www:[23,3,40,52],right:[15,46,40,49,19,1,3,21,51,34,28,25,9,56,57,8,55],old:[22,15],famili:[51,0,47,29],deal:23,autobold:[51,15],interv:34,begin:[22,15,40,17,51,33,53,5,28,56,57,8,1],percentag:[56,12,47,25,29],intern:[0,15,46,17,31,32,49,19,1,53,51,25,50,56,11,42,27,57],interf:15,successfulli:[0,48],interc:51,dddot:51,bottom:[15,8,9],subclass:[32,37,27,44,50,11,43],circ:51,tracker:[23,4],overcom:54,condit:[0,15,33],foo:[43,31],core:[15,47,1,33,51,12,25,39,57,42,55],plu:[45,32,33],bold:[51,49,24,28,55],insecur:23,popular:[23,38,2],colleg:40,repositori:[40,16,20],post:[32,15,47,31,33,4,21,22,54,44,29],"super":[43,15,20],llless:51,obj:13,nwarrow:51,slightli:[51,56,29,9],surround:[15,47,23,12,25,29],unfortun:[23,40],current_theme_templ:2,joomla:2,span:[51,30,5,35,36,24,25,57,27,38],downharpoonright:51,geramond:51,regist:[0,8,32,49,51,33,22,54,44,11,42,27,57],"float":[56,15],encod:[51,17],bound:51,two:[5,15,1,17,54,51,59,45,23,24,25,22,8,28,55],down:[40,56,41,27,25],shortparallel:51,wrap:43,ntriangleright:51,often:[15,47,17,59,51,23,57,29],nsupseteq:51,git:[23,16,20,40],wai:[2,3,51,16,21,22,23,44,25,29,30,31,32,35,36,8,5,40,48,1,53,56,57],support:[14,15,16,47,17,23,20,51,3,4,37,45,6,33,46,26,56,57,8,58],transform:57,ngtr:51,avail:[0,2,3,5,6,15,16,45,22,23,25,26,50,29,30,35,36,40,8,43,51,46,47,49,1,52,53,56,57],width:[15,46,47,52,51,23,28,56,27,29],reli:[0,16,49,1,3,53,48,56],"30em":[47,29],wordpress:[2,9],editor:9,rell:28,rightthreetim:51,lnsim:51,longdiv:51,eqeref:[],form:[46,47,49,21,51,23,28,25,57,8,50],offer:[16,20,4],forc:[47,56,15,8,27],epsilon:51,hear:[22,32],so4:51,downdownarrow:51,"true":[33,5,10,12,15,16,45,28,25,50,29,31,34,42,11,8,43,32,37,47,51,52,56],maxmacro:28,reset:[31,52],displayalign:25,maximum:27,tell:[40,53,23,28,56,8],moveright:51,more:[51,6,9,11,15,16,19,20,23,24,25,26,29,31,32,48,42,38,40,41,8,43,44,45,47,49,59,12,53,54,56,57,58,1],retir:16,featur:[14,15,46,40,58,51,4,53,22,48,39,56,43],rfloor:51,exist:[15,47,31,51,23,40,43,29],ddot:51,backsim:51,triangleq:51,check:[0,16,40,48,21,51,23,32,11,43],tip:[51,15],abovewithdelim:51,role:57,test:[13,14,15,16,40,54,33,3,53,22,23,46,8,56,42,43],tie:[33,27,31],smallsmil:51,searrow:51,mathel:2,intend:[49,43,25],munderov:[15,57],mtextfontinherit:[47,29],gvertneqq:51,consid:[0,16,51,20,4,5,23,7,56,57,42,50,1],omega:51,outdat:4,longer:[32,15,16,47,40,3,21,45,25,56,29],furthermor:[1,16,25,8],anywher:[15,8],pseudo:15,cancelto:[51,15],tex2jax_ignor:[5,20],ignor:[5,51,36,32],time:[0,3,4,51,6,13,15,42,20,21,22,28,25,29,31,48,40,8,44,32,47,1,7,53,56,57],push:[31,49,19,1,33,53,48,42],backward:[47,29],"5kb":28,mathrm:51,doteq:51,skip:[5,15,40,36],consum:21,webkit:[15,42,20],skin:2,displayind:25,millisecond:[0,47,31,52,21,6,7,42,29],decid:[56,15,8,52],middl:[51,23,15],depend:[15,31,33,53,48,9,56,8,58],head:[2,3,53,23,9,56,41,8],decim:[51,34],readabl:49,nearrow:51,varpi:51,certainli:40,vee:51,decis:56,text:[1,2,3,5,6,9,11,13,15,16,20,21,22,23,24,25,26,50,28,29,30,17,33,35,36,38,41,8,45,47,48,49,51,12,53,56,57,59],succnsim:51,sourc:[14,15,16,40,51,3,52,45,46,25,22,26,56,57,42,50,1],xlongequ:51,mprescript:15,word:[5,36,8,57],room:28,dim:51,getjaxfor:[22,15,42,27],administr:[2,9],level:[23,15,8,40,37],did:[48,15],item:[12,15,47,52,51,48,24,25,27,29],cooki:[13,33,20],div:[13,51,57,38,53],prevent:[51,15,30,47,23,20,52,5,35,36,28,25,12,8,29],mmlorhtml:[15,45,25,56,58,55],slower:[56,47,29],htmlcss:27,sign:[51,16,17,5,23,36,57,8],cost:[51,23,8,43,17],pmb:51,rightarrowtail:51,histori:[22,32,33,49],xandi:43,dotsi:51,dotsm:51,appear:[22,15,37,47,17,48,51,34,52,21,5,23,36,28,25,53,9,40,8,50,29],dotso:51,repli:22,dotsc:51,dotsb:51,current:[0,15,8,47,40,2,32,43,23,9,56,41,42,27,11,29,50],backepsilon:51,ampersand:[51,17],inlinemath:[51,16,3,53,5,23,36,8],defici:46,amalg:51,mathsiz:51,gener:[51,15,8,17,23,58,50,33,45,6,38,48,57,42,27],mfrac:[23,57],explicitli:[51,15,16,17,48,20,5,23,36,25,8,43],modif:[1,8],address:[23,15,40,53],along:[51,49,1,21,22,38,11,27],wait:[0,15,8,40,31,32,49,3,1,20,54,53,22,48,33,25,19,11,42,27],box:[0,15,20,33,51,6,39,27],html_head:2,shift:25,xtwoheadrightarrow:51,bot:51,queue:[32,37,31,54,18,19,1,33,53,48,49,42],overriden:42,digamma:51,varlimsup:51,commonli:[45,23,49],macintosh:42,semant:43,succsim:51,extra:[51,3,20,22,25,56,57],circumv:40,modul:[0,41,37],prefer:[15,16,47,40,52,23,56,58],iepro7:3,veebar:51,visibl:[51,15,30,1,53,5,35,36,46,27],marker:[51,17],myid:59,mobil:[15,16,20,8,26,56,42],arrowvert:51,memori:[54,50],bigr:51,visit:23,todai:49,subvers:[23,40],stylesheet:[0,37,31,32,19,33,53,54,25,9,56],handler:[0,37,49,3,33,53,54,25,57,8,27],xtofrom:51,current_skin:2,bigl:51,bigm:51,eqcirc:51,checkout:40,bigg:51,inputjax:[37,18,50,33,51,44,11,42,43],capit:18,peopl:23,bigtriangleup:51,enhanc:[15,20,57],minscaleadjust:[12,47,29],visual:[45,26,15,47,29],accept:[48,31,53],hphantom:51,easiest:[22,23,40,31,48],graphic:[49,56,40],prepar:[1,8,27],cap:51,uniqu:59,texhint:25,pmatrix:51,whatev:[51,2,17,27,1,53,22,43],cal:[51,15],purpos:[48,15,57],getjaxbytyp:42,downharpoonleft:51,meant:31,subseteqq:51,varprojlim:51,backslash:[51,28,25],topic:[18,14,8],stroke:29,sharp:51,chemic:51,occur:[0,3,15,42,19,21,22,23,44,25,27,31,33,48,8,32,46,40,1,52,53,54,56],eqsim:51,pink:51,alwai:[15,31,18,1,51,48,8],multipl:[51,15,16,1],otherwis:[0,15,8,31,50,51,21,45,23,37,9,56,11,42,43],mpad:15,trianglelefteq:51,write:[32,17,49,1,53,23,26],fourth:1,mathsf:51,tild:51,xhtml:[23,46],map:[57,27],remap:15,book:49,max:51,clone:40,spot:[51,17],usabl:40,mac:[42,25],cours:[1,16,46,8],mai:[0,2,3,4,51,6,8,9,15,16,18,22,23,12,25,27,29,17,32,48,40,42,43,5,46,47,50,1,53,54,56,57],underscor:[51,23],data:[13,0,15,37,47,31,48,43,22,23,44,50,40,11,42,27],grow:[56,15,47,29,2],newlin:[51,47,20,29,21],vartheta:51,baso4:51,explicit:[0,47,23,25,8,29],uparrow:51,produc:[51,6,15,16,22,23,28,25,26,50,29,31,48,38,11,8,32,47,27,52,53,55,56,57],inform:[0,15,2,32,49,51,33,21,45,48,25,22,56,11,8,27,57],"switch":[15,16,40,20,51,38,57],preced:[48,8,25],combin:[0,15,16,47,34,51,20,12,45,23,28,56,10,8,58,57,29],block:[12,15,16,47,23,3,20,51,6,33,44,25,56,57,8],tall:15,approx:51,comfort:40,addmmlclass:29,downarrow:51,lsh:51,tex2math:38,still:[22,15,46,47,2,31,32,49,1,7,45,12,25,39,56,8,58],pointer:[15,43],ttf:[15,40],dynam:[0,15,37,14,1,3,53,23,25,54,26,57,8],entiti:[51,46,20,17],amssymbol:[45,23,51,16,8],conjunct:16,group:[0,15,46,4],monitor:4,polici:40,mpcontext:[45,25],ignoreclass:[5,36],platform:[26,14,2,23],window:[15,37,47,31,48,3,52,21,6,25,53,56,42,29],"05em":51,main:[51,15,16,40,1,18,43,59,37,45,23,44,25,8,56,11,42,27,57],mathexampl:53,non:[13,0,15,17,19,51,23,56,57],jipsen:17,myinputjax:44,initi:[0,15,16,17,54,51,33,52,37,5,23,36,44,25,8,22,56,57,42,50,1],floar:56,stackrel:51,safari:[15,3,20,56,42,58],half:48,now:[15,16,47,40,49,20,33,45,23,12,25,39,56],discuss:[13,40,8,3,4],nor:[6,24],term:[23,16,8,21],name:[0,3,5,6,8,13,15,16,31,45,20,21,22,23,24,25,27,28,29,17,32,33,48,36,40,11,42,43,44,51,46,47,50,59,55],opera:[20,42,3,58,56],boxdot:51,drop:40,separ:[22,15,16,40,1,51,21,5,23,36,46,25,8,59,55],messagestyl:[6,25,21],confid:26,varsupsetneqq:51,compil:[48,15],domain:[23,15,8,40],replac:[43,0,16,40,31,3,46,20,53,51,23,28,8,11,42,27,57],individu:[51,50,20,55,53],strikethrough:51,continu:[0,15,16,17,51,22,54,56,8,1],happen:[15,46,40,17,19,1,3,51,54,57],baselin:27,shown:[51,24,25,52,53],accomplish:[23,15,8,40,56],"3rd":23,space:[15,17,34,20,53,51,23,25,56,10,50,57],intermix:33,internet:[0,15,3,20,21,51,48,25,56,57,53,27,55],formula:[15,53,51,25,26,56,57],mathjax_zoom:39,correct:[48,15,16,3,25],she:56,simeq:51,earlier:[15,47,1,33,23,28,56,8,29],state:[11,27,1],migrat:[14,16],postfilt:15,ajax:[0,8,18,1,33,37,51,48,44,22,42],mime:[46,50,23,44,11,42,27],underleftarrow:51,org:[16,2,20,3,52,53,51,23,38,9,56,41,8],ord:[51,15],care:[17,34,3,51,23,55],ntrianglelefteq:51,couldn:48,x00b1:23,synchron:[0,31,14,49,19,1,3,53,22,48,33,54,42,32],mscarri:46,thing:[17,49,53,51,23,24],plane:15,eqref:[51,15],mathop:[51,15],startuphook:[22,51,15,42],typset:15,think:[51,25,17,53],frequent:[5,22,36,17],first:[3,51,9,15,31,22,23,24,25,27,29,17,32,48,36,40,11,8,5,46,47,1,53,54,57],origin:[43,51,15,40,17,32,19,3,53,22,23,25,50,11,8,27,29],lfloor:51,oni:40,directli:[15,40,3,1,20,53,51,48,44,9,57],onc:[0,40,31,32,51,33,53,45,23,38,56,11,27,1],arrai:[33,51,6,10,15,8,19,20,22,24,25,27,28,29,30,31,32,34,35,36,38,11,42,44,5,47,48,12,55,56,57,58],yourself:[40,23,19,51,48,25,8],fast:[16,20,8],formatnumb:28,open:[14,46,40,52,51,23,9,26,41],predefin:51,size:[12,15,47,59,20,53,51,28,25,56,8,27,29],given:[0,2,51,13,15,17,19,20,21,22,23,24,25,50,31,48,39,11,42,43,32,27,59,57,1],convent:27,ifmodul:[15,40],referenec:42,paramt:[51,15],leftrightharpoon:51,circl:51,white:59,conveni:[23,43,25],plane1:15,hub:[0,33,5,6,7,8,10,12,15,16,18,21,22,23,28,25,27,29,30,17,3,34,35,36,38,39,11,42,45,37,47,48,50,51,52,53,55,56,57,58,1],especi:[56,15,57],copi:[15,16,40,17,3,4,45,23,46,8,26,42,44],specifi:[33,51,6,7,8,10,12,13,15,16,31,19,20,22,23,24,25,28,29,17,32,48,36,39,11,42,5,47,49,59,52,54,56,57,58,1],nativemml:[15,46,49,58,52,45,12,56,57,42,27,55],github:[16,40],enclos:[15,47,59,51,25,57,29],quad:51,than:[0,3,5,6,8,9,10,15,16,31,45,19,20,22,23,28,25,26,50,55,17,32,33,34,36,40,11,42,43,44,51,46,47,49,59,52,53,54,56,57,1],serv:[23,20],wide:[26,40,57,47,29],instanc:[13,8,50,1,5,36,44,42,43],underbrac:51,balanc:[5,15],were:[15,16,50,53,22,56,27,29],posit:[15,47,19,20,51,25,29],stub:44,browser:[3,5,6,8,13,14,15,16,45,20,23,25,26,50,29,17,33,36,37,38,40,42,51,46,47,49,52,54,55,56,57,58],preccurlyeq:51,delic:25,lnot:51,doublecup:51,nleftrightarrow:51,argument:[32,15,31,1,51,48,43,55],hskip:51,doctyp:[23,46],engin:[26,14,15],techniqu:[16,3],greek:15,npreceq:51,consortium:26,note:[0,3,51,6,9,15,42,23,24,25,50,28,29,17,32,48,36,40,8,44,5,47,59,52,53,56,57,58,1],x2260:23,jsmath:[14,57,38],poster:32,noth:[23,15,31,48],channel:[22,49],updownarrow:51,surd:[51,20],sure:[51,15,16,40,32,1,20,4,53,5,23,36,56,8],windowset:52,normal:[5,47,31,51,3,45,23,36,25,57,59,29],buffer:28,compress:8,beta:[51,15,8],pair:[13,0,31,51,5,59,36,24,22,11,42,27,28,55],fileurl:0,beth:51,hotfix:8,latex:[14,15,17,49,51,5,23,26,57,8],renam:16,textarea:[5,36],later:[32,15,46,47,31,17,19,1,51,48,8,42],drive:40,typeset:[0,33,5,7,15,20,21,22,12,25,26,50,29,30,48,36,39,42,37,47,35,49,1,52,53,54,56,57],badg:4,sigma:51,mathfrak:51,showmathmenu:[47,25],ismobil:42,show:[51,15,40,23,52,53,45,6,24,4,48,41,55,25],autoreset:31,cheap:29,parentnod:[20,3],newcomand:15,concurr:33,permiss:[23,40,17],hack:56,isfirefox:42,corner:[37,25,21],xml:[26,49,15],onli:[0,2,3,4,5,6,8,15,16,45,20,23,24,25,26,50,29,17,32,48,36,40,11,42,51,47,49,59,53,56,57],slow:[56,15,27],activ:[15,16,40,31,49,4,53,45,54,46,57],behind:51,inlinedelimit:51,otim:51,black:[51,15],offici:[15,8],geq:51,mypic:[5,35,36,24,30],nearli:[45,51,8,55],variou:[0,8,2,32,18,59,21,22,6,25,11,42,57,55],get:[3,51,13,14,15,31,20,21,23,28,25,27,29,17,32,33,48,40,8,43,5,46,47,1,53,56],autoload:51,cannot:[51,17],ncong:51,lighter:29,nsim:51,requir:[0,5,16,1,31,48,51,3,15,7,45,23,36,44,8,22,26,11,42,27,57],truli:53,prime:[51,15],reveal:15,lceil:51,mathpunct:51,rerend:[11,42,50,53],consist:[46,17,1,51,24,56],hostil:23,intermitt:[37,21],shortmid:51,apricot:51,through:[51,15,16,40,32,1,20,22,54,46,56,57,8,43,55],where:[0,33,4,51,6,8,13,15,16,31,21,22,23,28,27,29,17,48,40,11,42,45,37,47,50,59,12,53,54,56,57],wiki:[2,49,3,51,23,57,8],latexmathml:17,keyboard:49,ismac:[42,33],concern:[57,42,17],infinit:[15,28],detect:[20,15,3,31],parent:[13,43],enumer:51,label:[15,52,51,28,56,55],enough:[15,46,1,23,24,56,8],between:[51,15,8,47,17,31,48,1,20,52,22,23,56,57,42,50,29],maltes:51,"import":[0,15,40,1,20,45,54,22,8],across:[49,56],assumpt:51,absenc:2,longleftrightarrow:51,vdot:51,screen:[0,15,47,1,20,21,45,26,53,27,29],negmedspac:51,come:[51,16,40,1,3,45,48,46,56,57,8],leftleftarrow:51,fit:[22,52],timout:0,pertain:23,audienc:[56,46],inconsist:16,overbrac:51,improv:[15,16,20,4,25,56,8],among:8,color:[15,49,59,20,51,24,25,39],operatornam:[51,15],period:[0,37,40],colorbox:[51,15],colon:[51,59],autmat:51,cancel:[51,15,31],"70kb":8,bigcirc:51,msrow:46,damag:23,needlessli:48,tabel:56,myserv:8,rebuild:42,mstyle:15,mark:[0,15,46,17,51,5,23,36,38,57,59,29],addit:[0,51,6,15,16,31,19,20,22,23,25,27,17,48,11,42,45,46,50,1,53,59],succapprox:51,mtextfontinerhit:15,fade:6,arcsin:51,xrightharpoonup:51,mathplay:[15,3,20,52,45,25,56],breve:51,texfont:6,blacktriangl:51,former:34,those:[51,6,15,42,19,22,23,24,25,26,50,31,32,48,11,8,44,45,46,40,27,59,53,57,1],"case":[3,51,15,16,18,22,23,24,25,50,55,31,48,40,8,43,47,34,27,59,53,56,57,1],kappa:51,tostr:31,oldstyl:51,addtext:13,trick:51,invok:56,eqnchunk:[15,47,29],invoc:8,margin:[59,28],opera10:47,advantag:[15,16,2,1,56,8],barwedg:51,leadsto:51,mlongdiv:46,worri:[22,57],destin:42,sourceel:[22,50,27,53],updatemath:53,bigwedg:51,myclass2:[5,36],develop:[16,40,49,4,46,8],author:[15,16,17,21,51,23,44,25,39,26,57],media:[59,8,40],postjax:[57,25],same:[5,9,15,16,45,20,22,23,28,25,27,29,30,17,32,35,36,8,51,40,1,54],html:[2,3,5,6,8,10,13,14,15,16,18,20,22,23,24,25,27,29,30,17,33,35,36,37,38,40,41,42,45,46,47,49,51,52,53,54,55,56,57,58,59],pad:[13,51,15,59],knuth:49,mathvari:[15,47,57,29],document:[0,3,51,14,15,16,18,23,25,26,27,17,42,38,8,5,46,40,49,53,56,57],bring:57,finish:[15,49,1,3,53,54,42],vvdash:51,nest:[15,46,20,5,37,56,29],availablefont:[6,8,47],someon:51,hslash:51,capabl:[18,26,56],formaterror:42,mani:[51,15,8,54,59,20,5,48,36,56,42,1],extern:[0,37,48,1,22,54,42],immedi:[0,15,3,51,33,53,22,19,8,1],submenu:[15,25,52,9],appropri:[22,15,51,45,38,11,27,57],choos:[51,23,15,56],macro:[15,20,51,23,28,25,8,55],mml_svg:[45,15,8],leftharpoonup:51,eqnchunkdelai:[47,29],overwithdelim:51,without:[0,15,16,47,48,49,51,22,6,46,25,8,57,42],model:[14,15,37,40,18,33,51,56,57,43],bigotim:51,stixfont:6,mml2jax:[15,46,23,45,35,25,57,55],loaderror:0,when:[0,3,5,6,8,9,10,12,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,11,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,1],greasemonkei:[15,8,3],bitmap:49,aspect:15,flavor:[45,8],speed:[15,16,20,56,57,8],versu:1,strikeout:51,widest:[23,46],asciimathml:[15,17],nleqq:51,filevers:37,except:[45,23,54,56],littl:[0,32],blog:[2,49,51,23,57,8],rescal:56,treatment:51,yuicompressor:20,earli:[8,20],hover:[39,7,15,25,52],around:[51,15,8,17],read:[16,40,49,20,22,23,24,8,46],outermost:24,boldsymbol:[51,15],messsag:21,getjaxbyinputtyp:42,moo:43,world:[26,48,8],lasterror:42,mod:[51,15],sum_:57,blackberri:20,asciimath2jax_process:36,cdot:[51,15],previewfilt:15,fontstyl:15,integ:[51,42],server:[51,15,16,47,3,20,45,23,40,8],either:[0,15,16,40,2,32,18,51,3,59,5,23,36,24,8,39,22,56,42,58,28],output:[33,51,10,14,15,16,20,22,23,12,25,27,29,17,42,37,38,11,8,43,45,46,47,49,50,59,52,53,55,56,57,58],rollov:20,manag:[13,37,40,2,48,49,33,21,51,23,57,50],lesssim:51,node:13,respect:[12,47,29,31],inlin:[5,23,36,16],constitut:18,pod:51,slice:31,easili:[26,23,57,49],definit:[0,15,47,51,20,52,45,28,7,39,26,12,59,29],token:15,shoveright:51,inputid:50,inject:15,dashleftarrow:51,mathcal:51,complic:[49,56,24,46,58],refer:[22,15,8,40,14,33,51,3,54,53,45,6,32,28,44,48,50,11,42,43,23],arrow:[51,15],power:[1,4],inspect:42,broken:57,formatid:28,found:[0,40,23,4,48,25,56,11,27],regexp:[5,36],"throw":[27,11,44,3],trianglerighteq:51,comparison:[1,42],central:25,ibook:[56,15],firstnam:48,ddddot:51,stretch:51,act:[51,49,1,22,48,28,25,57,29],industri:49,needsupd:[11,50,53],processor:[33,51,10,12,15,23,28,27,55,17,34,8,45,46,47,49,59,52,29,56,57,58,1],hookrightarrow:51,nobreakspac:51,routin:[13,0,15,54,48,44,11,42,27],nsupseteqq:51,effici:[43,29,53],elementari:46,lessdot:51,triangledown:51,compos:46,rightharpoondown:51,mathbackground:51,your:[0,2,3,4,5,6,7,8,9,10,12,14,15,16,20,23,28,25,26,29,30,17,34,35,36,38,39,40,41,42,45,46,47,48,49,24,51,52,53,54,56,58,1],compon:[0,33,51,7,16,45,18,22,23,26,27,55,17,42,46,11,8,43,32,37,59,52,54,57],log:[51,23,40,21],area:[15,28,21],aren:[51,15],fontwarn:[6,15,25,55],lor:51,strict:40,compliant:[16,20],interfac:[15,40,2,23,9,26,41],low:31,lot:[22,15,28,40],lambda:51,programmat:[57,38],verbatim:51,cloudfront:23,buggi:51,categor:55,faster:[15,20,45,56,57,8],pull:40,mathml:[3,51,9,10,41,14,15,20,23,25,26,27,29,17,11,8,45,46,49,50,53,55,56,57,58],bullet:[51,49],possibl:[0,15,46,40,17,31,23,51,20,21,45,6,1,25,48,56,57,8,43,59],"default":[0,33,5,6,7,8,10,12,15,16,31,45,21,23,28,25,27,29,30,17,35,36,38,39,40,11,42,44,51,47,34,52,55,56,57,58],processescap:[5,51,16,8],buildrel:51,notag:51,asiimath2jax:17,embed:46,connect:[15,48,45,23,57,8],taylor:23,creat:[0,33,4,51,13,21,22,44,50,31,48,11,43,32,37,40,49,27,59,52,54,57,1],certain:[22,32,54],leftrightsquigarrow:51,risingdotseq:51,varliminf:51,file:[0,2,3,45,6,8,9,10,11,15,16,17,19,20,21,22,23,28,25,27,29,31,32,33,48,38,40,41,42,44,51,37,47,34,49,24,59,12,54,55,50,56,57,58,1],momentarili:42,outputjax:[37,18,50,33,44,42,27],fill:[56,58],again:[51,0,42,50,53],iiiint:51,googl:4,pmod:[51,15],orient:[18,43,37,33],field:[56,15],valid:[48,16],getscript:[13,15],you:[1,2,3,4,5,6,8,9,10,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,38,40,41,42,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,59],trash:50,poor:56,resolut:26,registri:15,sequenc:[14,15,8,40,19,51,33,22,54,28,42],symbol:[51,23,28,17,34],begingroup:[51,15],dashv:51,track:[57,27,4],menuset:[45,25,39],reduc:[51,15,8],mathcolor:51,lbrace:51,eqchunkdelai:[47,29],directori:[0,15,47,54,49,33,20,21,45,23,44,25,22,40,11,8,27,50],descript:[15,30,35,3,5,6,36,37,25],lbrack:51,lucki:51,hello:48,calle:43,potenti:1,extpfeil:[51,15],escap:[51,28],dst:42,negthickspac:51,lvertneqq:51,all:[0,2,3,5,6,8,14,15,16,20,21,22,23,28,25,26,27,29,30,31,32,33,35,36,37,40,42,43,44,45,46,47,48,49,51,12,54,55,56,57,58,1],consider:8,illustr:53,dollar:[51,16,17,5,23,36,8],improperli:5,mathjax_displai:59,abil:[15,16,40,49,20,51,56,57],follow:[33,51,15,16,18,20,22,23,24,27,28,29,31,48,40,11,8,43,44,45,47,59,53,55,57],alt:[15,3,25],disk:[45,23,8,40],multlinewidth:28,scr:51,articl:49,init:43,program:[37,2,54,18,50,1,33,23,26,57,43],smile:51,cgi:0,introduc:[23,15,8,56],global:[15,37,31,18,53,51,56],multlin:[51,15,28],vert:51,far:[0,32,40,17,21],varrho:51,"1px":[13,51,15,59],verb:51,mechan:[51,31,32,19,1,33,22,54,43],difficult:[48,46,54],loadcomplet:[51,0,42,44,8],veri:[39,9],preferredfont:47,alterant:49,list:[2,33,51,6,7,9,10,11,15,8,18,22,23,28,25,27,29,30,31,35,36,39,40,41,42,5,47,34,49,50,1,52,53,12,57,58],"_html":56,emul:[56,15],adjust:[15,47,3,53,12,9,41,8,29],plain:51,small:[12,15,47,20,21,51,28,57,29],dimens:[51,15,20,25],getalljax:[42,53],foreground:59,lll:51,tex:[2,3,5,6,8,9,10,11,14,15,16,45,20,22,23,28,25,26,29,30,17,37,38,40,41,42,44,51,46,47,49,1,53,55,56,57],zero:[6,19],design:[46,3,4,45,26,41],pass:[0,15,16,31,32,19,1,20,52,45,48,33,22,57,42,43,55],overlin:51,further:[19,1,56,11,27,57],what:[0,33,4,5,6,7,12,14,15,8,31,20,23,28,25,26,29,30,17,35,36,39,42,51,46,47,52,53,56,57],sub:37,section:[3,5,6,7,8,10,12,15,16,45,20,28,25,29,30,17,34,35,36,38,39,41,42,51,46,47,48,52,55,56,58],advanc:[18,14,26,8],abl:[22,15,16,47,31,2,23,51,53,45,6,46,25,9,26,40,41,8],delet:[51,47],version:[3,4,51,14,15,16,20,23,28,27,29,17,33,48,42,39,40,11,8,44,45,37,47,50,53,56],sup:51,row:15,"public":[32,40],hasn:[0,16,33,21,11,27],full:[0,15,48,18,20,3,53,45,23,25,26,57,8],hash:[15,33,25],geqslant:51,modular:[26,15,46],ggg:51,trunk:40,standard:[22,15,40,49,51,45,23,26,56,57,8,59],modifi:[14,15,16,2,53,51,21,45,23,44,8,22,42,27],valu:[0,33,51,6,7,10,13,19,20,22,24,25,27,28,29,30,31,34,35,36,39,42,43,5,46,47,48,59,52,53,55,12,57,58,1],search:[26,14,42,4],sender:22,prior:[51,56,46,3,25],amount:[51,6,42,28,31],within:[0,33,51,6,15,16,31,18,20,23,28,27,17,42,48,36,38,8,43,5,46,40,53,54,57],pick:56,action:[0,3,51,15,42,31,19,21,22,44,27,17,33,48,39,11,8,32,37,49,1,53,54,57],mathjax_wikipedia:3,mml_htmlormml:[16,2,3,45,23,9,56,41,8],llap:51,chunki:[47,29],via:[0,2,3,5,6,15,16,20,21,22,23,44,25,50,55,31,33,36,39,40,8,43,45,46,47,1,57],shorthand:53,equalrow:15,int_0:51,filenam:[48,15,16,8],href:[51,15,24,20],inappropri:[22,15],emptyset:51,simbl:3,decrement:19,establish:45,select:[15,46,47,40,52,45,56,42,58,29],hexadecim:51,proceed:[1,24],x41:51,distinct:18,ctrl:25,stretchi:[51,15],rightsquigarrow:51,splash:15,taken:[51,15,1,53,22,56],imath:51,ispc:[42,33],toggl:[51,15],vec:51,flat:51,diamond:51,desir:[45,43,15,3,40],henc:40,ital:[0,15,49,51,23,25],unzoom:15,aleph:51,particular:[13,0,15,8,40,17,31,48,49,19,59,51,23,32,25,54,56,57,42,43],known:[15,1],upsilon:51,mathml3:[56,15,46],cach:[22,8],showmathmenumsi:[12,20,25],none:[32,30,47,31,48,5,35,36,28,25,8,57,42],outlin:20,det:51,dev:4,widehat:[51,15],remain:[45,49],paragraph:[15,47,23,53,51,6,57,29],caveat:[23,27,40],def:[51,28,43],deg:51,mathtip:[51,15],scan:[15,42,25],myspan:24,challeng:45,registr:44,share:[15,40,4,23,25,8],templat:[41,8,2,9],succneqq:51,minimum:[47,42,20,29,12],unreli:16,explor:[0,15,3,20,21,51,48,25,56,57,53,27,55],phrase:[51,23,17],mathinput:53,huge:51,rowspan:46,goal:26,awkward:43,secur:[23,3,40],rather:[0,3,5,6,10,15,16,45,19,20,22,23,28,25,26,50,55,31,33,34,36,8,43,44,51,46,40,49,59,52,53,54,56,57,1],anoth:[51,40,32,19,1,21,22,54,11,53,57,55],showmathmath:12,csc:51,snippet:[13,14,30,35,51,4,5,6,36,24,25,42],ddagger:51,stix:[15,47,40,49,20,51,6,56,57,8],reject:15,simpl:[56,24,25,21],css:[0,51,6,7,10,14,15,16,20,23,12,25,27,29,42,46,38,39,40,8,45,37,47,49,50,59,52,53,55,56,57,58],unabl:6,regener:[50,53],resourc:20,referenc:[6,28],algebra:49,iphon:20,variant:[49,15],reflect:[33,53],vdash:51,mstack:46,blacker:29,impliedbi:51,associ:[12,15,47,31,50,53,51,48,44,11,42,27,57,29],welcom:4,stabil:15,circumst:15,lhd:51,footer:8,confus:[23,15,16],ambigu:18,caus:[0,5,51,6,15,42,21,22,23,28,25,27,17,48,36,37,11,8,32,46,40,50,1,52,53,56,57],callback:[0,15,37,31,32,18,19,1,33,54,53,22,48,49,50,11,42,27],firefox3:47,alphabet:15,merror:[15,59],unrhd:51,help:[14,15,16,40,52,23,4,25,56,8],soon:[15,8,3,25,53],trade:[56,8],retypeset:53,hierarchi:[8,40],suffer:[56,15],paramet:[0,33,51,8,13,15,16,31,19,20,21,23,28,25,27,55,30,17,32,35,39,11,42,43,44,45,48,50,53,56],style:[0,33,51,6,7,13,14,15,20,21,23,24,25,29,36,39,42,5,47,49,59,52,12,57],arial:[51,47,29],border:[13,51,15,59],x221a:46,processupdatetim:42,x221e:57,late:[49,15,3],isreadi:[37,33],pend:19,amsmathaddit:1,processenviron:5,might:[0,15,16,40,48,1,4,22,23,28,8,57,46,27,29],alter:[5,50,53],finer:15,cee:[51,15],good:[1,3,29,4],"return":[13,0,46,43,31,32,19,1,54,21,22,48,28,53,50,11,42,27,44],textstyl:51,longleftarrow:51,getelementbyid:53,wilipedia:49,rlap:51,detach:15,android:20,equationnumb:[51,15,28],xtwoheadleftarrow:51,mathscr:51,instruct:[24,23,16,3,2],bigcup:51,ntriangleleft:51,iff:51,iint:51,fulli:[23,1,46],unicod:[15,46,47,51,6,29],x2211:57,subsystem:33,interleav:15,originaltext:50,weight:[15,24,43],setrender:[15,42],hard:[40,20,4,45,23,8],realli:[48,25],nless:51,expect:[47,1,53,51,25,8,29],math2:[51,15],math1:[51,15],beyond:[51,4],reduct:[56,15],ismathjax:15,"try":[15,40,4,22,23,44,43],mhchem:[51,15],shortcom:54,skiptag:[5,15,36],print:[26,56,15,40,59],occurr:54,msie:[42,58],difficulti:51,assist:[45,15],safari3:47,ast:51,offsetx:[47,29],symbian:20,mml:[15,8,58,45,23,37,56,11,42,50,57],reason:[0,46,17,48,1,3,21,51,23,28,56,42,44],base:[40,15,16,47,2,31,54,18,33,3,37,6,44,8,50,26,56,42,43,29],put:[0,15,16,40,17,54,51,23,25,56,8,55],mathr:51,processupdatedelai:42,offseti:[47,29],basi:[56,8,58],succnapprox:51,stanard:51,drupal:2,msbm10:23,taht:12,showprocessingmessag:[25,55],perhap:[48,8],bumpeq:51,perman:51,elementjax:[15,37,18,50,33,44,11,27],stixgener:[51,47,29],getelementsbytagnam:3,assign:[5,48,36],major:[26,56,15,8,3],notifi:22,boxplu:51,upper:51,feel:4,exchang:49,lastnam:48,number:[0,2,33,51,6,8,15,16,20,21,23,24,25,27,28,29,31,48,40,11,42,44,45,37,47,34,50,1,53,56],grtaphic:57,fadeoutstep:6,done:[15,19,1,33,51,23,57,8],least:[57,42,8,17],blank:[32,31],stabl:[23,8,40],miss:[51,15,17,31],differ:[51,15,8,40,31,48,58,1,53,22,23,25,54,57,42,43],euqat:56,script:[0,2,3,5,8,9,11,13,15,16,45,20,22,23,44,25,27,33,36,38,41,42,51,40,50,1,53,56,57],interact:[15,8,47,23,26,57,42,50,29],smoother:6,construct:[57,1],statement:[1,31],exten:17,illeg:[24,20,8],store:[13,32,15,16,47,31,50,1,20,8,53,48,37,38,39,11,42,27,57],xmln:[23,15],option:[5,6,7,8,9,10,12,14,15,16,45,23,28,25,29,30,17,35,36,38,39,42,43,44,51,47,34,24,52,55,56,57,58],nleftarrow:51,eqn:28,ntrianglerighteq:51,selector:[59,25,21],tex2jax_process:5,part:[3,5,9,15,31,45,22,23,28,25,26,27,17,8,43,51,46,40,1,54,56,57],pars:[51,15,20,17],mmltoken:51,binom:51,cosh:51,kind:57,aaa:28,prebuilt:23,whenev:[32,46,40],remot:40,remov:[51,15,8,47,31,32,50,20,21,5,6,36,25,53,57,42,27,29],dtd:23,bridg:[16,50],arrang:31,toward:15,markup:[0,46,17,49,51,23,57,29],ffff88:59,comput:[47,40,49,51,56,42,29],nleqslant:51,packag:[40,17,49,51,28,38,8],expir:13,"null":[13,0,37,47,43,31,32,20,3,21,6,44,25,53,50,11,42,27],built:[14,16,3,56],equival:[13,31,1,53,45,48,24],lim:51,self:[23,15,46,20],ell:51,also:[3,4,5,13,15,16,31,45,18,21,22,23,12,25,50,29,17,48,40,8,43,51,46,47,49,52,53,54,56,57,58],brack:51,build:23,brace:[5,51,15,3],msgroup:46,triangleleft:51,distribut:[23,41,16,40,8],appendchild:[13,3],addel:13,reach:8,took:15,react:32,most:[22,15,37,40,2,31,49,3,51,20,45,23,33,44,56,57,8,43,59],plan:23,rho:51,alpha:51,rhd:51,whichev:51,vardelta:51,renewenviron:[51,15],clear:[32,15,47,31,33,21,22,29],tpl:2,h2o:51,exp:51,latest:[16,40,2,3,4,53,51,23,38,9,56,41,8],leftroot:51,cdata:20,nshortparallel:51,carefulli:[24,47,29,53],cdn:[51,15,16,40,2,20,3,53,45,23,38,9,56,41,8],flicker:[15,47,29],finv:51,particularli:[45,15,40],rightleftarrow:51,font:[0,51,6,14,15,16,20,21,23,24,25,26,27,28,29,40,8,47,49,59,52,53,54,56,57],find:[15,8,4,53,51,6,38,9,57,42],preremoveclass:25,access:[51,15,40,2,48,50,1,20,52,45,23,32,26,56,8,43],execut:[0,31,32,19,51,33,22,48,57,8,1],pretti:40,solut:[23,57,40,4],delayedx:31,queu:[19,1,8,31,32],factor:[15,47,20,12,25,56,29],noerror:[45,23,15,51],jaxfil:44,tagsid:[15,28,55],precnsim:51,express:[22,15,47,32,51,53,5,23,36,28,25,56,27,1,29],strut:51,nativ:[15,46,18,3,45,26,56,57,58],mainten:16,rest:[0,46,1,53,51,23,26,57],donald:49,konqueror:[56,42],restart:[15,40,19,1,5,36,8],ie9:[56,15,20,40],ie8:[56,15,20],ie7:[56,15],acut:51,vmatrix:51,common:[14,15,16,17,2,23,49,51,46,45,6,24,8,42,44],set:[0,1,3,5,6,7,8,10,12,13,15,16,17,20,21,22,23,28,25,50,29,30,31,32,33,34,35,36,38,39,40,42,43,45,37,47,48,49,24,51,52,53,54,55,56,57,58,59],overrightarrow:51,startup:[14,15,8,53,3,1,20,37,22,33,44,25,42],see:[0,1,33,4,5,6,7,8,9,11,12,15,16,31,19,20,22,23,28,25,27,29,30,17,32,35,36,38,39,40,41,42,45,46,47,48,49,51,52,53,54,55,56,57,59],barb:51,sec:51,arg:51,ams_hml:8,disadvantag:56,langl:51,inconveni:16,someth:[51,40,4,53,5,23,25],particip:4,won:[15,40,1,20,51,56,8],columnspan:46,subscript:[51,23,15,20],experi:25,altern:[0,17,51,48,57,43],numer:[51,42,46],complement:51,javascript:[0,2,3,51,6,7,9,12,14,16,18,22,23,24,25,26,50,28,29,31,48,39,41,8,43,45,37,47,49,59,52,53,54,55,56,57,1],isol:[51,15,20],mailbox:[22,49],bmatrix:51,consumpt:20,distinguish:11,longrightarrow:51,errat:8,classnam:3,searpat:5,closur:[48,31,53],unstar:51,last:[0,40,31,19,59,51,42,27,55],delimit:[51,15,16,17,20,5,23,36,57,8],hyperlink:57,mathzoom:[15,59,45,39,27,55],event:[0,15,54,49,3,20,52,53,45,7,33,25,22,57,27],nvdash:51,grei:[51,33],context:[15,31,52,5,36,25],overset:51,hbar:51,whole:[54,42,53,37],load:[0,2,3,45,8,10,11,14,15,16,19,20,21,22,23,28,25,26,27,29,31,32,33,48,38,40,41,42,44,51,37,47,34,49,1,12,53,54,56,57],markdown:[51,23,57,49],simpli:[5,16,40,17,31,48,19,51,53,45,35,36,30,25,8,26,11,42,27,44,38],point:[51,19,8,34,23],instanti:43,smith:48,usemathmlspac:10,fcolorbox:[51,15],header:[15,8,40,2,9],suppli:[42,50,25,31],bigve:51,mistak:24,zeta:51,throughout:51,becom:[15,16,40,31,1,4,22,46,56,43],notaion:14,gneq:51,devic:[15,16,20,26,56,8],due:[15,16,47,29],empti:[15,37,47,31,1,33,25,57],sinc:[0,51,15,16,31,45,19,20,22,23,28,25,17,42,8,43,32,46,47,59,12,53,54,56,57,1],invis:[51,40],fire:[33,8,3,53,48],imag:[15,16,47,35,49,20,3,30,5,6,36,24,26,40,8,27],descib:17,coordin:[19,57,1],understand:[45,57],demand:45,urcorn:51,convers:[51,17],blacksquar:51,look:[2,5,4,51,9,13,15,17,21,23,55,31,36,40,42,32,46,47,59,53,29,57],bcancel:[51,15],solid:[13,51,59],histor:56,pitchfork:51,lvert:51,"while":[13,0,16,40,23,58,51,3,34,22,6,46,25,54,57,8,32,1],blacktriangleleft:51,nprec:51,abov:[3,51,6,13,15,16,31,20,23,25,27,29,17,34,42,40,8,43,47,48,1,53],circlearrowright:51,mbox:51,everyon:[22,29],loop:[15,28,50],pack:20,subsect:[28,44],measuredangl:51,vartriangl:51,eqslantless:51,biguplu:51,itself:[33,51,15,16,19,22,25,50,55,31,42,46,11,8,43,32,37,40,27,59,56,57,1],overleftarrow:51,limit:[13,0,46,51,34,28,8],peramet:11,rightarrow:51,minim:27,xleftarrow:51,belong:15,shorten:21,shorter:20,am_htmlormml:[45,23,15,8],redisplai:21,htmlcsslast:27,conflict:[51,57,20],higher:8,upuparrow:51,optim:[56,15,20],wherea:51,domin:49,alert:[22,48,1,31],jsmath2jax:[30,20,38,55],temporari:8,user:[33,4,51,6,7,14,15,8,21,22,23,12,25,26,29,31,3,38,39,40,42,45,46,47,52,53,56,57,58],robust:[22,49],stack:28,recent:[26,3],lower:[15,37,18,20,33,21,51,25],task:51,older:[46,8],entri:[15,49,19,59,20,51],searchabl:26,chemistri:15,ngeqq:51,textit:51,curvearrowleft:51,normals:51,scriptsiz:51,badbreak:56,fallingdotseq:51,explan:[51,23],rvert:51,obscur:[20,21],press:[25,53],amp:[51,20,17],regardless:[15,53],seriou:57,cup:51,indexof:15,blacklozeng:51,endgroup:[51,15],ffeeee:51,rgb:51,input:[33,51,9,10,41,15,16,20,22,23,28,25,27,55,17,34,42,37,38,11,8,43,44,45,46,49,50,1,53,56,57],subsequ:[51,11,27],oslash:51,asciimath:[14,15,17,34,49,45,23,36,26,57,8,55],format:[14,15,16,17,49,50,51,57,45,23,24,25,26,56,11,46,27,28],big:[51,55],moodl:2,intuit:49,tomathml:[45,50],game:51,insert:[51,15,30,47,31,3,5,35,36,44,25,9,41,42,27,57,29],bit:[15,43],diagup:51,lost:48,semi:59,varkappa:51,signal:[32,15,8,31,54,18,33,37,22,48,44,49,42],whitespac:15,resolv:[15,20],collect:[31,49,59,48,50,1],api:[18,14,15,26,23],mathrel:51,swarrow:51,asciimath2jax_ignor:36,scrip:16,gtrless:51,simplifi:20,creation:[11,33],some:[2,3,51,6,8,15,16,17,18,19,22,23,28,25,26,27,29,31,48,40,11,42,43,44,12,46,47,50,1,53,55,56,57,58],back:[40,17,23,50,51,6,36,27],endtoggl:[51,15],urgent:8,sampl:[51,40,54,59,33,53,22,23,25],instal:[14,15,16,47,40,23,20,51,6,9,26,56,8],scale:[15,47,20,51,12,25,26,29],per:15,substitut:28,mathemat:[0,33,5,6,7,9,11,12,15,8,45,20,22,23,28,25,26,27,29,30,17,35,36,38,39,40,41,42,44,51,46,47,49,50,1,52,53,56,57],larg:[0,15,16,51,8,58],prod:51,reproduc:[15,53],tex2jax:[5,15,16,53,20,51,3,37,45,23,46,25,57,8,55],machin:[49,40],garamond:51,previou:[32,15,31,1,21,48],run:[0,3,5,6,10,15,42,19,22,23,28,25,29,30,31,33,34,35,36,40,8,32,46,47,48,1,53,54,12,57,58],doteqdot:51,odot:51,step:[15,2,23,33,6,57],hookleftarrow:51,varsubsetneq:51,carol:51,impos:40,ngeqslant:51,reappear:21,materi:[56,20,53],prove:[56,15],retain:[51,29],dialog:[15,20],rangl:51,succcurlyeq:51,gamma:51,file3:1,file2:[0,1],file1:[0,1],file4:1,bmod:[51,15],msam10:23,prec:51,isjax:[15,42],chang:[2,3,51,15,16,20,21,23,28,25,50,29,34,42,40,11,8,45,47,52,53,56,57],announc:54,inclus:[47,29],triangl:51,question:[23,44,4],submit:4,custom:[51,17,20,21,45,23,26,56],adjac:20,perp:51,includ:[0,1,2,3,5,6,7,8,10,12,15,16,17,18,20,22,23,28,25,26,29,30,31,33,34,35,36,37,38,39,40,11,42,44,45,46,47,48,49,24,51,52,53,55,56,57,58,59],suit:[16,6,34,46,8,23],forward:15,overleftrightarrow:51,ulcorn:[51,15],properli:[13,0,15,16,40,23,20,1,3,53,5,6,46,48,50,56,42,43],reorgan:15,emnu:52,atop:51,loadhook:[0,15,42,48],serif:[0,47,29],link:[15,16,40,2,23,18,20,51,6,28,54,8],translat:[27,11,44,20,57],delta:51,line:[51,15,16,47,40,2,34,49,3,20,36,5,23,33,30,55,56,57,8,29],linb:56,enspac:51,rmoustach:51,qquad:51,divideontim:51,geqq:51,similar:[54,40,31],xmapsto:51,enlarg:39,constant:[22,28],parser:15,xlink:15,doesn:[22,47,31,17,50,51,45,25,40,8,43,29],repres:[13,51,30,23,49,59,21,5,6,36,24,25,26,35,27,57],"char":51,mathdiv:[13,48,1,53],tbinom:51,home:[49,0,15,17],ebook:[56,15],gecko:[15,42],phantom:51,iiint:51,titl:[23,53],sequenti:[54,1,33],invalid:[51,24],llcorner:51,toaudibl:50,bracket:[51,24,25],shoveleft:51,xrightarrow:51,department:40,supseteq:51,nice:3,lozeng:51,delayclear:[47,29],msup:[23,57],eqnchunkfactor:[47,29],alttext:35,varsubsetneqq:51,eval:31,fisher:51,newcommand:51,svn:[23,16,40],rightharpoonup:51,land:51,algorithm:[56,15],mimetyp:[50,11,44,27],svg:[15,49,20,52,45,55,56,57,8,29],supseteqq:51,liminf:51,depth:[51,56,15],dot:[51,15],leak:50,aquamarin:51,scroll:41,prototyp:43,code:[0,3,4,5,8,9,13,14,15,16,45,19,22,23,24,25,27,30,31,32,33,35,36,42,44,51,37,48,49,59,53,54,1],partial:51,edg:[56,15],queri:57,tiddlywiki:2,tooltip:[51,15,47,29],edu:40,privat:[54,44,40],elsewher:53,friendli:23,send:[22,32,8],becam:49,sens:57,sent:[22,32,42,49],actiontyp:[47,29],unzip:40,gnsim:51,xxxxxxxx:[23,40],mous:[15,47,20,52,45,7,39,57,27,29],uselabelid:28,untouch:51,skew:51,tri:[0,16,47,51,12,29],ischrom:42,mathit:51,button:40,geograph:8,fewer:45,nleq:51,xcancel:[51,15],userscript:3,maction:[51,47,15,20,29],pleas:[24,4],impli:51,smaller:[45,0,15,20,57],fortun:22,getjaxfrommath:27,natur:[26,23,51,40,57],aperson:48,jump:[15,33],unpost:15,download:[0,15,16,40,6,20,23,25,26,57,8],hspace:51,click:[51,15,52,45,25,39,9,57,27],append:[13,40],compat:[51,15,47,49,20,5,28,25,56,8,29],index:[23,40,2],compar:[56,15],cell:56,acronym:49,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,54,55,56,57,58,59],backprim:51,vargamma:51,varsigma:51,leq:51,intercept:23,let:[15,16,40,46,52,51,23,24,25,42,58],sinh:51,safer:15,vertic:[5,36,27,25],altough:48,tex4ht:57,rtime:51,convert:[14,46,17,31,51,3,21,5,38,26,57,27],sqcap:51,scriptlevel:15,larger:[15,47,45,23,56,57,8,29],technolog:[45,26,4],zscale:25,circledast:51,typic:[51,40,17,5,23,11,8],honor:[40,15,12,47,25],chanc:[5,22,36,32,23],calibr:15,firefox:[15,40,3,20,56,42,58],rgroup:51,bittersweet:51,appli:[15,47,40,51,12,56,8,43],iskonqueror:42,lessgtr:51,"boolean":42,smallmatrix:51,oval:51,"221a":15,cloud:[16,8],from:[0,2,3,5,8,11,12,14,15,16,17,20,21,22,23,28,25,27,29,30,31,32,33,35,36,38,40,41,42,43,44,45,37,47,48,50,51,52,53,56,57,1],zip:[23,20,40],commun:[22,14,15,4,23],chi:51,doubl:[51,15,45,28,25,39,27],upgrad:[6,40,4,14],varphi:51,cho:51,implic:40,few:[15,40,17,51,23,38],msqrt:[23,57],postprocess:44,bowti:51,simpler:21,newmath:53,src:[5,16,2,23,51,3,30,53,45,35,36,24,38,8,9,56,41,42,1],appropr:15,lippman:17,doublebarwedg:51,projlim:51,"4ac":23,actual:[13,0,15,46,17,31,19,51,53,22,48,1,25,8,56,11,42,27,57],applyfunct:15,versionatleast:42,account:13,alik:3,retriev:13,augment:[43,15,44,27,11],scalabl:[49,56,57],underwai:1,critic:40,halt:54,thin:[15,28],eqchunkfactor:[47,29],control:[5,6,7,10,12,15,42,45,23,28,25,29,30,35,36,39,40,8,51,47,34,59,52,56,58],tau:51,tap:15,tar:40,process:[0,3,5,8,13,14,15,16,19,20,21,22,23,28,25,27,29,30,17,33,35,36,38,11,42,44,45,46,47,48,50,51,52,53,55,56,57,58,1],dfrac:51,preformat:20,divis:15,high:[26,56,57],tag:[2,3,51,8,9,15,16,20,22,23,24,25,27,28,55,17,33,35,36,38,11,42,5,46,40,50,53,56,57],tab:40,tan:51,delai:[0,15,8,47,31,32,7,52,21,45,25,39,22,57,42,29],fontwarns:59,gcd:51,pure:46,importat:18,getelementsbytagnamen:3,subdirectori:[40,11,27,50],instead:[51,16,40,17,48,19,1,20,53,22,23,28,57,8],class4:43,class2:[5,36,43],sin:[51,15],sim:51,class1:[5,36,43],simplesup:[15,43],frac:[51,15],overridden:[15,47,43,21,44,50,11,27,29],mspace:[51,23,15,46,20],"_svg":56,anothermethod:43,frak:51,filtertext:21,redund:[15,43,25],essenti:[45,51,57,43,17],bind:15,correspond:[15,8,47,51,38,42],element:[33,5,6,13,15,42,45,20,22,23,24,25,27,28,29,32,36,11,8,43,51,37,47,50,59,7,53,54,56,57,1],reredn:50,newextarrow:51,allow:[2,3,5,7,15,16,45,20,21,22,23,24,25,26,27,28,29,32,48,39,40,8,43,51,47,49,59,52,1],fallback:[40,47],mjx:[13,28],fastest:[56,15],nonumb:51,scriptstyl:51,nsucc:51,comma:[59,3,51,25,8,55],dagger:51,mathjax_tooltip:[47,29],movabl:[41,2],chosen:[56,58],clickabl:51,coth:51,varxi:51,pretransl:[44,27],therefor:51,pixel:[49,47,15,27,29],multimap:51,crash:[15,25],sqsubseteq:51,handl:[0,3,51,6,15,16,31,20,22,44,25,27,17,42,46,8,5,37,49,1,7,54,56,58],auto:28,nokia:20,innermost:24,dai:[13,15],automat:[15,47,19,1,21,51,23,28,56,57,8,43,44,29],front:[45,20],successor:38,gggtr:51,somewher:8,anyth:[22,55,47,29,4],edit:[45,8,2,9],smallfrown:51,februari:14,mode:[51,15,47,40,20,5,23,38,56,57],varomega:51,"2em":51,circular:15,genfrac:[51,15],subset:[51,58],delaypost:[47,29],bump:15,chunk:[47,29],nointerest:32,meta:[56,15],"static":43,annot:15,our:[16,40,20,4,23,41],meth:42,ie6:47,special:[5,15,46,17,48,51,45,23,36,25,8,54,26,56,57,42,59],out:[0,15,16,47,40,1,53,22,6,56,57,29],variabl:[37,31,18,43,33,53,51,48,56,27],lesseqqgtr:51,reflow:[27,15,20,56],categori:1,suitabl:51,rel:[0,15,20,25],moveabl:[41,2],merg:[13,42],ref:[51,15],red:[51,23,24],negthinspac:51,nsucceq:51,insid:[20,2],workflow:46,manipul:53,eqslantgtr:51,dictionari:15,releas:[23,15,8,3,40],bleed:20,indent:[28,25],could:[0,15,16,17,48,18,50,51,46,4,53,22,23,28,8,57,42,27,1],ask:[15,4,53,23,28,57,8,27],succ:51,timer:33,david:17,gtreqqless:51,length:3,outsid:[5,56,15],"0em":[59,25],uproot:51,softwar:[45,23,57,26],rbrace:51,blogger:2,rbrack:51,precapprox:51,spadesuit:51,date:[23,16,20,40,8],uplu:51,clubsuit:51,bigsqcup:51,suffic:23,prioriti:31,"long":[15,47,1,20,52,51,23,29],start:[0,33,51,9,11,14,15,16,31,22,23,24,25,27,17,42,41,8,32,40,1,54,57],unknown:[15,46],respond:[32,29,47,25,4],flag:[15,25],system:[47,40,2,23,18,33,4,51,6,26,56,29],messag:[0,15,16,40,49,23,18,51,33,54,21,45,6,37,44,25,22,42,32],attach:[51,32,7,22,54,25,27],attack:23,appl:15,termin:[5,36],man:23,iota:51,rsh:51,supset:51,"1em":[59,46,29],gtreqless:51,hdashlin:51,exactli:15,haven:15,blind:57,ipad:20,preceq:51,gtrdot:51,subsetneq:51,structur:[0,8,31,48,49,53,22,23,37,55,11,42,27,29],charact:[51,15,46,47,17,34,49,59,20,5,6,36,28,25,56,57,29],htaccess:[15,40],light:[51,43,39],bet:40,reposit:25,exhibit:40,"function":[0,15,8,1,31,32,49,19,51,3,53,22,48,33,28,54,57,42,43,44],biggl:51,biggm:51,rrightarrow:51,deprec:[45,23,8,25],unkown:42,lightli:56,close:[15,46,23,3,20,4,45,6,55],need:[0,1,2,3,4,5,6,8,9,11,15,16,17,19,20,21,22,23,28,25,26,27,29,31,33,48,36,40,41,42,43,44,45,46,47,34,49,50,51,53,54,56,57,58,59],turn:[13,5,15,16,31,32,45,36,46],biggr:51,gdef:[51,15],issu:[0,15,46,4,21,25,8,56,57,42],min:51,mid:51,fontdir:27,which:[1,2,3,5,8,11,15,16,17,20,21,22,23,24,25,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,45,46,47,48,50,51,53,55,56,57,59],hbox:[5,51,15],mit:51,singl:[0,15,16,17,31,54,18,51,20,53,5,23,36,37,26,1,8,59],declaremathoper:51,mathjax_preview:[15,30,5,35,36,25,57],x22d6:51,unless:[23,15,20,31,56],who:[22,32,4],leftthreetim:51,why:51,underset:51,placement:20,url:[0,15,16,40,20,51,3,52,45,23,33,28,25,8],gather:[51,15],request:[0,15,31,32,20,51,33,22,48,8,1],face:[47,4,51,6,28,40,55],inde:[56,15,55],movablelimit:[15,20],nmid:51,determin:[51,15,8,2,33,5,34,25,56,42,27],flux:1,positiontohash:[15,25],occasion:8,fact:[32,15,16,44],backsimeq:51,mathjax_messag:21,leftarrowtail:51,verbos:[49,48,25],bracevert:51,woth:46,curlyeqsucc:51,highest:[56,15],locat:[0,15,16,40,6,51,33,53,5,35,36,30,25,8,22,57,42,27,23,38],jax:[33,51,10,15,16,18,20,22,28,25,27,29,17,34,42,38,11,8,43,44,45,37,47,49,50,59,12,53,55,56,57,58],vartriangleright:51,should:[3,5,8,9,11,15,16,31,45,19,23,24,25,27,28,17,32,48,36,38,41,42,44,51,46,40,49,59,52,53,56,58,1],imagefont:[6,15,47],vartriangleleft:51,suppos:[48,15,16,8,53],"5px":[13,51],triangleright:51,"5pt":23,local:[51,15,40,31,23,1,3,53,45,6,25,8],hope:[6,16],precsim:51,move:[15,16,40,12,25,47,29],notat:[15,17,49,51,23,26,57,8],woff:[15,40],expres:51,increas:[15,16,20],bigstar:51,leqslant:51,smash:51,unprocess:[42,50,53],enabl:[51,15,16,47,17,2,5,23,36,9,56,41,8,29],organ:57,frown:51,stuff:42,integr:51,contain:[0,2,3,5,6,13,8,45,18,19,21,22,23,28,25,27,29,30,31,32,35,36,40,11,42,44,51,37,47,48,50,59,53,56,57,1],view:[15,46,47,18,3,45,23,38,26,40,8],conform:23,frame:21,apolog:16,temporarili:21,troubl:23,issafari:42,asynchron:[0,37,31,32,49,19,1,53,22,48,54,42],statu:[0,40,48],error:[0,15,16,17,51,3,4,45,23,46,25,11,42,27,44],jmath:51,pattern:[5,36,25],goodbreak:56,misus:56,gtrsim:51,favor:[16,25],written:[23,9],quickest:23,theta:51,neither:[6,24],equiv:[51,56,15],omicron:51,nshortmid:51,"2pt":51,kei:[13,0,31,32,19,22,25,42],texttip:[51,15],"2px":51,entir:[42,25,8,53],closebox:6,ker:51,thumb:1,skipstartuptypeset:25,plugin:[2,52,51,25,9,26,56,57],admin:[41,9],nabla:51,equal:[51,15,42,43,1],gnapprox:51,etc:[15,49,1,53,51,25,8],eta:51,equat:[5,15,45,20,23,28,25,26,50,29,30,34,36,40,42,51,47,35,27,12,53,56,57],class3:[5,36,43],eth:51,darker:29,limiti:40,lmoustach:51,onchang:53,comment:[51,59,20,45,23,25,8],varnoth:51,arriv:[22,54],solv:8,harpoon:51,arguement:48,sqcup:51,showmathplay:52,quit:[56,53],showfontmenu:52,"55em":51,quotat:59,anomali:15,bbb:51,defint:51,sqsupseteq:51,treat:[51,23,15,17],popul:33,incldu:57,smallsetminu:51,both:[0,16,1,17,48,49,33,51,20,45,23,46,25,8,9,56,41,42,43,57],alignat:51,varsupsetneq:51,otf:[40,15,20],psi:51,x_2:51,togeth:[16,31,1,45,46,42],x_1:51,injlim:51,present:[32,15,46,52,6,4,56,8,25],cot:51,twoheadrightarrow:51,multi:[51,15],iscallback:31,displaylin:51,align:[15,46,59,51,23,25],contextu:[14,15,46,47,58,50,52,45,37,25,39,56,57,27,29,12],studentdisplai:53,defin:[33,51,6,7,15,16,22,23,28,25,27,29,17,3,48,42,39,11,8,43,44,45,47,59,52,55,12,1],glossari:[49,14],layer:[20,2],almost:51,curvearrowright:51,site:[51,16,40,2,45,23,25,26,41,8],archiv:[23,40],substanti:[56,16,8],revis:40,unneed:29,greater:[51,56,17],formattag:28,curlywedg:51,displaystyl:[51,34,53],parti:[22,23],cross:40,sqrt:[51,23,15,57],getx:43,extensiondir:44,oint:51,supsetneq:51,failur:15,cssid:[51,20],curlyve:51,phi:51,http:[15,16,40,2,3,52,53,51,23,38,9,56,41,8],d3eoax9i5htok0:23,lleftarrow:51,"8em":[51,28],effect:[19,1,3,39],mrow:[23,57],sooner:15,student:[15,53],canva:57,php:[2,9],executehook:[32,31],off:[51,20,45,54,56,8],center:[51,23,59,25,56],well:[22,46,40,31,48,51,4,53,45,23,36,44,25,54,56,8,59],exampl:[0,3,4,5,6,7,8,10,12,13,15,16,17,19,20,22,23,28,25,27,29,30,31,32,34,35,36,37,38,39,40,11,42,43,51,46,47,48,24,59,52,53,54,55,50,56,57,58,1],command:[15,46,40,31,49,19,1,33,53,51,25,8,42],achiev:15,texerror:15,undefin:[51,23,31,48],setx:43,subsetneqq:51,sibl:20,usual:[15,31,17,48,1,51,6,44,25,57,8],curlyeqprec:51,paus:[42,40],less:[51,47,17,5,23,36,40,57,42,29],obtain:[51,15,16,40,53,45,23,25,57,8,27],mistaken:57,mathclos:51,mathoutput:53,simultan:[1,33],web:[2,3,51,6,14,15,16,20,22,23,25,26,50,17,33,38,47,8,32,40,49,1,53,54,56,57],preprocessor:[5,15,16,17,23,51,46,33,37,45,35,36,30,25,8,57,42,53,55,38],current_them:2,detai:15,priorit:[15,31],textbf:51,cdotp:51,atopwithdelim:51,cleanup:15,schedul:48,match:[32,15,47,5,36,12,29],branch:[8,40],webpag:38,piec:20,varpropto:51,punctuat:20,cpan:51,know:[51,15,48,22,23,32,56,11,8,27,57],cfrac:51,mathinn:51,redesign:[56,15],tick:[51,23,36,17],recurs:[42,20],string:[0,31,32,51,21,5,59,36,24,25,22,42,50,28],mho:51,nofont:6,like:[3,51,15,31,19,20,21,22,23,26,29,17,32,48,36,38,40,11,8,5,46,47,34,49,59,53,54,55,56,57,1],success:[56,15],messagehook:[22,32,15,42],arctan:51,necessari:[15,8,3,23,26,56,42],resiz:56,page:[2,3,5,6,8,9,13,14,15,16,18,20,21,22,23,28,25,26,27,30,17,32,33,35,36,38,40,41,42,45,46,47,48,49,50,51,52,53,54,56,57,1],didn:51,captur:49,linux:[42,25],"export":50,superclass:43,proper:[51,32,15,42],guarante:[0,1,53,19],peter:17,librari:[18,1,37,40],glyph:[51,49,15],kern:51,rspace:51,assum:[15,53],avoid:[15,16,17,20,51,24,25,56,57,46],thank:17,overlap:56,checkmark:51,leav:[13,17,53,51,28,58],overlai:15,doublecap:51,supsetneqq:51,preload:[0,23],twoheadleftarrow:51,mpmous:[45,25],daleth:51,upharpoonright:51,journal:49,usag:[51,14],host:[15,16,8],sphericalangl:51,although:[18,23,40,58,32],offset:[47,27,29],panel:51,varepsilon:51,about:[4,51,6,15,16,31,20,22,23,25,27,17,32,34,42,40,11,8,45,47,48,53,54,57],ams_html:[51,16,53,45,38,8],rare:1,column:[15,28],mathajx:16,mod_head:[15,40],mapsto:51,constructor:43,fals:[51,15,55,47,32,3,20,52,5,34,28,25,50,10,42,43,11,29],bigoplu:51,eqalign:51,own:[51,15,16,40,1,23,18,34,20,4,45,6,54,56,11,8,27,57,55],amsmath:[51,15,16,1,45,23,28,8],circledr:51,maxbuff:28,bigtriangledown:51,guard:25,vphantom:51,circlearrowleft:51,w3c:15,transfer:[23,40],much:[15,54,49,22,34,56,8],bigcap:51,inner:15,arg1:48,"var":[13,51,31,1,3,53,22,48,43],stai:[56,8],arg2:48,deliveri:[23,20],propto:51,unexpect:25,precnapprox:51,unbalanc:15,studentansw:53,bodi:[0,16,53,23,11,8,27],gain:[56,15],lgroup:51,bug:[13,15,16,40,20,4,21,23,25,57,8],count:[15,3],made:[40,1,4,51,54,57,50,55],bbbk:51,whether:[51,15,30,47,48,34,58,3,52,53,5,35,36,28,25,8,10,42,50,29],wish:[16,48,59,3,4,51,23,8,56,42],displai:[51,6,13,14,15,8,20,21,22,23,28,25,26,27,29,30,17,34,36,38,40,42,5,46,47,49,50,52,53,56,57],substack:51,underleftrightarrow:51,mathord:51,gtrapprox:51,below:[2,51,6,7,10,13,15,42,23,28,25,27,29,30,35,36,39,11,8,5,47,34,24,52,54,50,12,57,58],sideset:51,"_htmlormml":[56,58],problem:[15,16,40,17,48,20,4,53,51,23,46,56,57,8],x03c0:57,"int":51,imagedir:27,dure:[15,47,31,33,20,22,44,25,42,50,29],novemb:16,implement:[13,0,15,16,18,58,51,57,45,48,46,22,56,11,43,44],nolimit:51,inf:51,rightleftharpoon:51,probabl:[22,48,8,17,2],oplu:51,helpurl:52,definecolor:[51,15],immateri:1,percent:[12,47,29],detail:[0,5,6,7,8,9,14,15,16,31,45,19,20,22,23,12,25,29,30,17,32,35,36,38,39,40,41,42,51,46,47,1,52,53,54,56,57],lesseqgtr:51,other:[0,2,33,5,6,8,15,16,17,45,19,20,21,22,23,44,25,26,50,29,31,32,48,36,38,40,42,43,51,46,47,49,1,53,54,56,57,58],futur:[0,4,21,22,54,56,42,50],rememb:29,varieti:57,removeaft:6,repeat:[40,2],star:[51,15],liter:[5,51],varupsilon:51,"class":[43,51,15,37,31,32,18,19,20,5,36,44,25,50,11,27,57,29,38],thicksim:51,posttransl:[44,27],matrix:51,sphinx:2,scientif:49,reliabl:[56,15,16,3,8],rule:[15,1,51,6,25,10],mathjax_mathml:3,portion:[57,47,29,53],eot:[15,40],balancebrac:[5,15]},objtypes:{"0":"py:method"},titles:["The MathJax.Ajax Object","Using Queues","Using MathJax in popular web platforms","Loading MathJax Dynamically","The MathJax Community","The tex2jax Preprocessor","The FontWarnings extension","The MathEvents extension","Loading and Configuring MathJax","Installing MathJax in WordPress","The MathML input processor","The MathJax.InputJax Class","The NativeMML output processor","The MathJax.HTML Object","MathJax Documentation","What’s New in MathJax v2.0","Migrating from MathJax v1.0 to v1.1","MathJax AsciiMath Support","The MathJax API","The MathJax.Callback.Queue Class","What’s New in MathJax v1.1","The MathJax.Message Object","Using Signals","Getting Started","Describing HTML snippets","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The TeX input processor","The SVG output processor","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax.Callback.Signal Class","The MathJax Startup Sequence","The AsciiMath input processor","The mml2jax Preprocessor","The asciimath2jax Preprocessor","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","Using Callbacks","Glossary","The MathJax.ElementJax Class","MathJax TeX and LaTeX Support","The MathMenu extension","Modifying Math on the Page","Synchronizing your code with MathJax","Configuration Objects","MathJax Output Formats","The MathJax Processing Model","The MMLorHTML configuration options","CSS Style Objects"],objnames:{"0":"Python method"},filenames:["api/ajax","queues","platforms/index","dynamic","community","options/tex2jax","options/FontWarnings","options/MathEvents","configuration","platforms/wordpress","options/MathML","api/inputjax","options/NativeMML","api/html","index","whats-new-2.0","upgrade","asciimath","api/index","api/queue","whats-new-1.1","api/message","signals","start","HTML-snippets","options/hub","mathjax","api/outputjax","options/TeX","options/SVG","options/jsMath2jax","api/callback","api/signal","startup","options/AsciiMath","options/mml2jax","options/asciimath2jax","api/variable","jsMath","options/MathZoom","installation","platforms/movable-type","api/hub","api/object","api/jax","config-files","mathml","options/HTML-CSS","callbacks","glossary","api/elementjax","tex","options/MathMenu","typeset","synchronize","options/index","output","model","options/MMLorHTML","CSS-styles"]})
-\ No newline at end of file
+Search.setIndex({objects:{"":{reset:[14,0,1],Preloading:[0,0,1],Log:[19,0,1],ExecuteHooks:[14,0,1],setScript:[10,0,1],Subclass:[42,0,1],File:[19,0,1],Delay:[14,0,1],Add:[14,0,1],getAllJax:[31,0,1],getScript:[10,0,1],Interest:[44,0,1],preProcess:[26,0,1],Translate:[43,0,1],Config:[31,0,1],addElement:[10,0,1],Styles:[0,0,1],ExecuteHook:[44,0,1],loadTimeout:[0,0,1],Resume:[17,0,1],Update:[31,0,1],preTranslate:[26,0,1],formatError:[31,0,1],call:[17,0,1],postTranslate:[26,0,1],getJaxByInputType:[31,0,1],PreProcess:[31,0,1],Post:[44,0,1],has:[42,0,1],Text:[55,0,1],Clear:[19,0,1],Insert:[31,0,1],Execute:[14,0,1],Register:[43,0,1],TextNode:[10,0,1],Augment:[42,0,1],needsUpdate:[55,0,1],Signal:[14,0,1],addText:[10,0,1],Zoom:[26,0,1],Remove:[19,0,1],Element:[10,0,1],Queue:[14,0,1],NoInterest:[44,0,1],Rerender:[31,0,1],getJaxByType:[31,0,1],Push:[17,0,1],Typeset:[31,0,1],loadComplete:[0,0,1],wait:[17,0,1],Load:[0,0,1],loadError:[0,0,1],Set:[19,0,1],getJaxFromMath:[26,0,1],LoadHook:[0,0,1],fileURL:[0,0,1],Process:[31,0,1],Hooks:[14,0,1],Reprocess:[31,0,1],Startup:[43,0,1],Init:[42,0,1],Suspend:[17,0,1],SourceElement:[55,0,1],getJaxFor:[31,0,1],can:[42,0,1],setRenderer:[31,0,1],MessageHook:[44,0,1],isJax:[31,0,1],filterText:[19,0,1],isa:[42,0,1],Require:[0,0,1]}},terms:{linebreak:[56,12,39,28],lvertneqq:33,lspace:33,reprocess:[31,55,52],mathjax_msie_fram:19,yellow:33,four:[33,50,13],prefix:[10,21,26,18],asymp:33,blacktriangledown:33,webfont:[5,39,21],whose:[10,31,52,4,24,35,41,26],biggr:33,under:[33,36,46],preprocess:[32,52,43,57,31,26],asciimath2jax:[30,15,21,35,57,54],worth:41,digit:18,gimel:33,everi:[33,12,41,18,20,27,31],risk:21,mskip:33,arcco:33,govern:[13,41,21],dotplu:33,affect:[12,13,46,18,33,31,54],eqnarrai:33,cmd:23,bigodot:33,c6h5:33,ominu:33,fontweight:12,vector:[48,56,57],red:[33,21,49],categori:50,nparallel:33,showcontext:6,nsubseteqq:33,direct:[39,5,13,46],thinspac:33,second:[0,12,13,46,14,24,50,36,53,4,5,35,49,23,20,56,40,41,26,59],ngeq:33,even:[0,2,33,12,41,30,15,17,20,49,25,28,14,24,31,44,36,39,50,52,53,56,57],hide:52,prejax:[57,23],neg:[33,12],menclos:[33,12],"new":[32,3,33,41,10,11,12,13,18,19,20,21,27,25,55,54,14,40,31,42,44,46,26,50,6,52,53,56,57,58],net:21,mhtml:1,told:[33,53,2],limsup:33,elimin:23,abov:[2,33,5,41,10,12,13,30,18,21,23,26,28,14,34,39,31,42,46,24,50,52,56],lessapprox:33,never:[0,41,46,43],here:[10,44,45,39,14,24,50,2,33,20,21,22,23,38,31,55,43,52],updiagonalstrik:33,met:32,lneqq:33,formaturl:27,path:[15,0,41,28,21],noundefin:[15,21,12,33],interpret:[4,21,33,46,30],nrightarrow:33,embelish:12,forum:[21,3],mbox:33,rceil:33,backprim:33,uproot:33,lengthen:12,linearli:[56,12],circleddash:33,mathstrut:33,unix:46,org:[13,1,2,18,6,52,33,21,37,7,56,9,41],thinmathspac:36,unit:[33,12,18,28],highli:25,describ:[10,33,13,46,14,21,48,59,32,52,15,5,31,49,24,57,41,26],would:[4,5,6,8,10,12,13,30,15,17,21,49,23,24,55,27,28,29,14,31,33,34,35,37,38,39,41,42,22,46,47,50,51,52,56,57,58,59],bleed:18,vartriangl:33,ltime:33,varlambda:33,call:[0,1,2,4,5,6,8,12,13,17,19,20,21,27,23,24,26,28,29,14,44,31,33,34,35,38,39,40,41,42,43,22,46,47,48,55,50,51,52,53,54,57,58],typo:12,recommend:[21,12,46,57,56],vcenter:33,preview:[12,29,39,4,47,35,23,57,28],type:[0,1,2,15,41,7,9,10,12,13,20,21,43,23,55,33,37,40,31,4,36,26,50,52,53,56,57],until:[0,29,44,31,50,4,47,35,43,23,24,20,41],notin:33,displaymath:[4,41],relat:[0,18,56],notic:[33,30],warn:[0,12,13,23,5],mathev:[54,26,38,51],eqslantless:33,hold:[0,12,51,49,23,38,57,31],unpack:[21,46],must:[0,32,33,5,41,13,17,19,21,27,23,28,30,44,35,39,31,4,36,46,48,59,51,53,56],fbox:[33,18],join:[20,33],room:27,setup:[25,21,12,36],work:[10,11,12,13,46,15,30,24,18,33,2,3,52,20,21,36,37,53,25,56,42],cc0000:[59,23],tag_nam:46,root:[0,18,32,19,33,41],overrid:[12,26,33,5,43,40,42],mathmenu:[12,45,59,6,15,23,54],give:[44,12,31,39,21,48,49,33,20,5,22,54,59,41,27,28],cirit:41,indic:[0,31,46,30,44,17,33,32,20,21,43,23,24,55,40,41,26,57],impair:25,texhint:23,want:[3,4,13,30,16,19,20,21,22,23,26,28,14,33,24,35,39,9,41,42,15,36,46,50,52,56,58],david:30,setminu:33,end:[0,12,15,30,1,56,32,50,18,3,33,4,36,7,20,9,41,58,57],quot:[39,18,4,35,23,28],hom:33,heartsuit:33,how:[0,1,2,3,4,5,6,7,13,14,15,17,19,21,49,23,27,28,29,30,44,31,34,35,37,38,39,41,22,46,47,33,51,52,53,57],disappear:[4,47,12,29,35],answer:[3,52],verifi:[21,46,3],config:[1,2,4,5,6,7,8,9,12,13,15,19,20,21,27,23,24,26,28,29,30,31,32,33,34,35,37,38,40,41,43,22,39,47,50,51,52,54,56,58,59],varrho:33,updat:[12,13,46,1,50,18,52,33,31,23,39,41,55,28],showrender:6,recogn:[21,12],lai:[56,57],diagdown:33,after:[0,2,33,12,41,17,19,20,21,43,23,28,14,24,39,31,44,46,50,6,52,53,54,57,58],befor:[0,1,2,3,4,7,12,13,14,17,19,20,21,49,23,27,28,30,31,32,33,24,35,41,42,43,44,36,39,48,50,51,52,53,56,57],wrong:[33,12,36],startuphook:[20,33,12,31],parallel:[33,32,50,18],averag:57,alignedat:33,attempt:[0,12,36,6],third:[56,50,36],leftarrow:33,receiv:[44,13,46,24,42,33,20,21,43,53,41,26],greasekit:2,maintain:[12,13,53,3,20,24,23,26],environ:[33,12,3,4,21,27],enter:[36,34,52,33,21,57,41],textnod:10,order:[32,4,5,41,12,13,17,19,21,23,28,29,14,33,24,35,39,31,42,44,46,47,48,50,56,57],oper:[0,4,5,6,8,12,17,18,19,20,22,23,24,25,26,27,28,29,34,35,38,39,40,44,45,46,47,48,50,51,52,56,58],approxeq:33,over:[10,0,12,39,33,18,51,52,15,21,23,38,56,57,41,6,28],fall:[46,30,21,50,33,5],becaus:[20,13,39,30,44,50,36,2,33,19,4,21,35,49,24,56,57,41,52,27,28],boxtim:33,suspend:[20,17,50,44],textrm:33,appar:50,afil:24,flexibl:[49,50,13],vari:56,smallint:33,img:[29,59,2,4,47,35,49],fix:[12,13,46,18,56,39,41,28],preferredfont:39,better:[12,30,34,18,6,33,21,37,7,56,41],boxminu:33,drawback:56,upharpoonleft:33,persist:3,comprehens:48,hidden:33,easier:[44,12,13,46,50,33,36,42],moveleft:33,substack:33,them:[0,4,5,41,10,12,13,30,17,18,20,21,27,14,44,33,34,35,31,15,36,46,24,50,57,59],thei:[0,2,3,4,5,6,8,12,13,15,16,17,18,19,20,21,49,23,24,27,28,29,14,44,31,32,33,34,35,38,39,41,43,22,46,47,48,50,51,52,53,54,56,57,58,59],precapprox:33,safe:[10,21,52],rectangl:48,"break":[12,39,50,18,33,53,56,28],mtext:[12,39,18,33,21,28],wedg:33,widetild:[33,12],choic:[56,12,31,7],dbinom:33,leftharpoondown:33,accommod:12,timeout:[0,12,18,14],each:[20,12,31,46,14,30,44,50,32,33,19,4,21,35,15,53,39,57,41,52,28],debug:19,went:33,side:[12,19,33,21,27,23,7],mean:[1,4,32,33,5,12,13,15,16,20,23,25,28,29,30,2,47,35,41,44,39,24,52,53,56],leqq:33,createel:2,resum:[17,50],represetn:33,leqalignno:33,mathopen:33,looparrowleft:33,expres:33,network:[12,13,46,18,15,21,9,41],goe:[33,53,50],iint:33,newli:[10,20,42],crucial:46,predefin:33,content:[1,4,32,15,41,7,9,10,12,13,18,21,49,23,35,40,31,42,33,36,48,50,52,56,57],prefilt:12,reader:[33,12,39,18,15,25,56,28],forth:45,impract:46,multilin:33,written:[21,7],situat:[12,18,52,21,56,41],free:[55,3],standard:[15,12,46,48,33,20,21,25,56,57,41,59],autonumb:[33,27],reconfigur:13,lneq:33,angl:33,jsmath2jax:[29,18,37,54],filter:[12,14],isn:[12,52,20,43,56,55],mtabl:[15,12],isa:42,subtl:52,onto:[48,21,50,31,52],attribtu:21,mathbb:33,rang:[21,57],mathbf:33,render:[15,12,36,32,18,6,4,21,23,25,56,57,31,58,28,37],accent:12,independ:41,yourcolleg:46,restrict:[33,46,23],hook:[20,0,12,14,44],unlik:[25,33,41,43],alreadi:[0,12,14,33,32,50,2,3,19,20,24,52,53,41,42],subtleti:33,primari:[56,13],tooltop:[39,28],top:[12,45,46,33,21,56,41,26],sometim:[21,41,46],underlin:[33,18],master:53,too:[33,12,39,30,2,18,4,21,35,22,56,28],similarli:[0,31,46],newenviron:33,john:24,listen:[20,44,31,14],thickapprox:[33,12],namespac:[12,14,2,18,52,33,21],tool:[50,46],tagind:27,embellish:18,gtrless:33,compressor:18,somewhat:[53,23,56],technic:[48,12],past:[44,12,13,18,20,53,25,56],filesmatch:[12,46],provid:[0,1,2,33,10,12,17,19,20,21,49,25,14,24,31,42,44,36,50,52,53,57],eqalignno:33,tree:[21,49],iota:33,project:[48,41,3],matter:[20,37],mathtt:33,ldotp:33,modern:[25,5,36,21,11],mind:[33,21,41,30,1],increment:17,seem:[24,12,36],rightrightarrow:33,ldot:[33,12],ngeqq:33,latter:[33,16,20,34,49,23,57,41,54],domcontentload:[32,12,2],curvearrowleft:33,blue:38,though:[12,30,14,33,53,49,23,57],object:[0,32,33,5,6,10,11,12,16,17,19,20,49,23,26,27,28,14,24,38,40,31,42,43,44,45,39,48,55,50,51,52,53,54,22,57,59],mmtoken:12,gzip:18,regular:[4,21,35,23],letter:[21,46],breakpoint:[56,12],phase:12,grave:33,don:[33,12,13,34,18,50,2,52,20,5,31,36,24,56,57,41],dom:[10,12,55,50,52,20,53,43,23,40,31,26],doe:[33,12,31,46,14,30,58,55,2,52,20,21,36,23,25,56,40,41,26,57],declar:[12,36,39,59,51,33,5,22,6,38,28],place:[0,12,46,21,42,50,3,33,20,5,44,22,23,52,39,41,26,27,28,37],tfrac:33,unchang:[33,13,58,52],section:[2,4,5,6,41,8,12,13,18,22,23,24,27,28,29,30,34,35,37,38,9,31,15,36,39,47,33,51,54,56,58],came:46,delaystartupuntil:[31,41,32,23],random:[21,46],lnapprox:33,syntax:[48,42,33,18,30],mediawiki:1,isopera:31,outerhtml:18,shownam:24,asynchon:52,involv:[33,53,57,41,3],consolid:25,layout:[39,28],just:[44,12,31,46,14,1,24,50,33,20,21,36,23,15,7,25,56,57,41,59],mathchoic:[33,12],ismsi:[31,32],menu:[32,15,6,7,11,12,18,22,23,26,28,36,38,39,9,45,46,55,51,56,57,58],explain:[13,1,15,53,41,54],configur:[0,2,4,5,7,8,9,11,12,13,15,18,19,20,21,49,23,24,25,26,27,28,29,30,31,32,34,35,37,38,39,40,41,43,22,36,46,47,33,54,56,57,58],apach:[12,46],reflow:[26,12,18,56],theme:[41,1,7],rich:[25,48],folder:[39,21,46],"0000f0":38,stop:[33,31,39,28],infti:[33,57],amazon:21,mho:33,report:[36,23,3],circeq:33,nummber:[],subseteq:33,fadeouttim:5,bar:[33,12,42,14],patch:[41,46],reload:6,bad:18,replacechild:2,neq:33,unexpectedli:[33,21,30],underbrac:33,dashrightarrow:33,scriptscriptstyl:33,precneqq:33,result:[33,41,12,13,30,21,22,23,55,28,14,24,40,31,36,39,48,26,50,52,56,57],respons:[44,12,14,18,33,40],fail:[0,12,18,24,43,56,54],hash:[12,32,23],best:[0,13,46,30,50,56,57,41],awar:[33,0,50,36,30],subarrai:33,varinjlim:33,wikipedia:[48,2],circledcirc:33,gneqq:33,drawn:[39,28],awai:[33,41,46],approach:[24,57,1,52],attribut:[10,12,36,47,59,18,33,21,49,56,57],blacktriangleright:33,extend:[25,57,30],shoud:56,extens:[0,32,4,5,6,41,12,13,18,20,21,27,23,54,29,33,47,35,37,38,31,43,15,45,48,50,51,52,56,59],html5:[12,13,18,21,36,56,57],toler:2,intop:33,protect:33,accident:12,expos:30,cow:42,howev:[33,13,46,24,32,50,2,3,19,15,21,23,52,56,57,41,42,59,54],configuraiton:[33,57],against:44,indexof:12,browser:[2,15,5,41,10,11,12,13,18,21,23,25,55,28,30,32,35,45,37,39,31,4,36,46,48,33,6,53,54,56,57,58],com:[41,46],varpsi:33,preccurlyeq:33,foral:33,foobar:42,sai:[17,2,14],innerhtml:[2,52],height:[33,26,12,18,6],wider:3,summat:34,sqsupset:33,speak:[16,57],issol:33,chrome:[39,2,18,56,31,58],three:[36,46,14,21,50,33,5,49,24,53,56,57,43],been:[0,2,3,4,12,13,17,19,20,21,22,23,26,14,32,24,35,37,39,40,41,44,46,50,52,53,56,58],trigger:[15,12,26,23,38],interest:[44,48,33,3,20,53],basic:11,tini:33,quickli:[25,41,3],underrightarrow:33,rather:[0,2,4,5,8,12,13,17,18,20,21,27,23,25,55,54,14,32,33,34,35,41,42,43,15,36,46,48,50,6,52,53,56,57,59],regul:50,xxx:33,ani:[0,2,3,4,5,6,8,12,13,15,17,19,20,21,27,23,24,26,28,29,14,44,31,32,33,34,35,38,39,40,41,42,22,36,46,47,55,50,51,52,53,56,58],emploi:56,hskip:33,tanh:33,hat:33,servic:[13,46,18,21,9,41],properti:[10,0,45,42,14,44,17,24,43,55,40,31,26],diamondsuit:33,sourceforg:13,weren:[12,13],dashboard:9,suffici:[30,33,21,27,41,58],anchor:[27,23],"3px":[33,59],succeq:33,lightli:56,nexist:33,retransl:[55,52],tabl:[56,12,36,30],cong:[33,12],sever:[0,12,13,46,15,50,33,4,24,35,57,52,26],amout:19,incorrectli:[21,12,13,18],perform:[32,3,33,5,41,12,13,17,18,19,20,27,23,26,28,14,24,40,31,43,44,45,39,48,55,50,52,53,56],suggest:[5,3,21],make:[0,3,4,5,12,13,16,17,18,20,21,22,23,25,26,28,29,31,33,47,35,39,41,42,15,36,46,50,6,52,53,56,57,59],format:[11,12,13,30,48,55,33,57,15,21,49,23,25,56,40,36,26,27],complex:[56,49],split:33,synch:13,lrcorner:33,unsafewindow:2,complet:[0,32,15,41,4,13,17,20,21,43,23,26,14,33,24,35,31,44,46,48,55,50,52,53,56],longmapsto:33,hand:[12,45,2,19,27,23,57,36,37],fairli:[49,13],rais:[33,18],mkern:33,ignorepast:44,unlhd:33,techniqu:[13,2],redefin:[12,33,5,43,40,26],kept:20,thu:[13,14,50,20,24,55],inherit:[39,16,26,55,40,42,28],client:39,thi:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,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,54,55,56,57,58,59],idotsint:33,programm:42,everyth:[31,15,50,41,33],settimeout:[24,14],left:[12,45,46,32,19,33,53,27,23,7,56,9,36,54],processclass:[4,12,35],identifi:[10,44,12,30,33,21,57],proccess:[40,26],yen:33,msam10:21,mathbin:33,human:21,coprod:33,yet:[36,17,50,52,20,53],languag:[48,21,33,57,53],noscript:[4,35],onload:[12,45,2,32,24,23,41],errorset:[15,23],easi:[48,33,37],interfer:[21,12,34],had:[20,21,12,13,2],myconfig:[20,24],step1:33,els:[33,24,2,52],save:[12,59,7,56,9,41],"0x21c0":33,jsmath:[11,57,37],sanit:19,applic:[25,21,32,1],loadtimeout:0,quirk:12,preserv:24,cho:33,bbox:[33,12],background:[33,12,18,59,38],sqsubset:33,specif:[0,12,45,14,1,44,31,17,50,52,4,24,35,43,48,56,57,41,55],arbitrari:33,manual:5,zoom:[11,12,36,32,18,51,15,23,38,26],nsubseteq:33,leftrightarrow:33,unnecessari:12,underli:56,www:[21,2,46,6],right:[12,36,46,48,17,50,2,19,33,34,27,23,7,56,57,41,54],old:[20,12],simbl:2,deal:21,autobold:[33,12],interv:34,surd:[33,18],percentag:[56,22,39,23,28],intern:[0,12,36,14,30,44,48,17,50,52,33,23,55,56,40,31,26,57],interf:12,successfulli:[0,24],interc:33,dddot:33,bottom:[12,41,7],subclass:[44,45,26,43,55,40,42],circ:33,tracker:[21,3],overcom:53,condit:[0,12,32],getjaxfor:[20,12,31,26],core:[12,39,50,32,33,22,23,38,57,31,54],plu:[15,44,32],bold:[48,33,49,27,54],insecur:21,mathrel:33,colleg:46,repositori:[46,13,18],post:[44,12,39,14,32,3,19,20,53,43,28],"super":[42,12,18],llless:33,obj:10,nwarrow:33,slightli:[33,56,28,7],surround:[12,39,21,22,23,28],unfortun:[21,46],current_theme_templ:1,joomla:1,span:[33,29,4,47,35,49,23,57,26,37],downharpoonright:33,produc:[33,5,12,13,20,21,27,23,25,55,54,14,24,37,40,41,44,39,26,6,52,28,56,57],stretchi:[33,12],"float":[56,12],encod:[33,30],floar:56,rightsquigarrow:33,down:[46,9,26,23,56],shortparallel:33,wrap:42,often:[12,39,30,59,33,21,57,28],nsupseteq:33,git:[21,13,18,46],wai:[1,2,33,4,13,19,20,21,43,23,28,29,14,24,35,41,44,46,47,50,52,56,57],support:[11,12,13,39,30,21,18,33,36,2,3,15,5,32,45,25,56,57,41,58],transform:57,ngtr:33,avail:[0,1,2,15,5,12,13,20,21,23,25,55,28,29,33,47,35,39,41,42,4,36,46,48,50,6,52,56,57],width:[12,36,39,6,33,21,27,56,26,28],reli:[0,13,48,50,2,52,24,56],"30em":[39,28],wordpress:[1,7],editor:7,rell:27,rightthreetim:33,head:[1,2,52,21,7,56,9,41],longdiv:33,eqeref:[],form:[36,39,48,19,33,21,27,23,57,41,55],offer:[13,18,3],forc:[39,12,41,26,56],epsilon:33,hear:[20,44],so4:33,ismobil:31,"true":[4,32,33,41,8,12,13,15,27,23,55,28,14,34,56,40,31,42,44,45,39,6,22],maxmacro:27,reset:[6,14],displayalign:23,maximum:26,tell:[46,52,21,27,56,41],absenc:1,retir:13,featur:[11,12,36,46,58,33,3,52,20,24,38,56,42],rfloor:33,exist:[12,46,14,33,21,39,42,28],ddot:33,backsim:33,triangleq:33,check:[0,13,46,44,19,33,21,24,40,42],when:[0,2,4,5,7,8,12,13,14,15,16,17,18,19,20,21,49,23,24,25,26,27,28,29,30,44,31,32,33,34,35,36,37,38,39,40,41,42,43,22,45,46,47,48,55,50,6,52,53,56,57,58],abovewithdelim:33,role:57,test:[10,11,12,13,46,53,32,2,52,20,21,31,36,56,41,42],tie:[32,26,14],smallsmil:33,node:10,mathel:1,intend:[48,42,23],munderov:[12,57],positiontohash:[12,23],gvertneqq:33,consid:[0,13,50,18,51,33,4,21,3,56,57,31,55],omega:33,outdat:3,faster:[12,18,15,56,57,41],bullet:[48,33],anywher:[12,41],pseudo:12,cancelto:[33,12],tex2jax_ignor:[4,18],ignor:[4,44,35,33],time:[0,2,3,33,5,10,12,41,18,19,20,27,23,28,14,24,39,31,43,44,46,50,51,52,56,57],push:[14,48,17,50,32,52,24,31],backward:[39,28],"5kb":27,mathrm:33,doteq:33,skip:[4,12,46,35],consum:19,known:[50,12],skin:1,displayind:23,millisecond:[0,39,14,51,19,5,6,31,28],decid:[56,12,41,6],middl:[33,21,12],depend:[12,14,32,52,24,7,56,41,58],decim:[33,34],readabl:48,nearrow:33,varpi:33,certainli:46,vee:33,decis:56,leftarrowtail:33,succnsim:33,sourc:[11,12,13,46,15,50,2,6,33,20,36,23,25,56,57,31,55],xlongequ:33,mprescript:12,curlyve:33,word:[4,35,41,57],centerdot:33,dim:33,foo:[42,14],administr:[1,7],level:[21,12,41,46,45],did:[24,12],item:[22,12,39,6,33,24,49,23,26,28],cooki:[10,32,18],div:[10,33,57,37,52],prevent:[33,12,29,39,47,18,6,4,21,35,22,23,41,27,28],outlin:18,slower:[56,39,28],hack:56,sign:[33,13,30,4,21,35,57,41],cost:[33,21,41,42,30],pmb:33,rightarrowtail:33,widehat:[33,12],xandi:42,dotsi:33,dotsm:33,appear:[20,12,45,46,30,34,33,6,19,4,21,35,27,52,23,24,7,39,41,55,28],dotso:33,repli:20,dotsc:33,dotsb:33,current:[0,12,31,46,1,44,42,56,21,7,39,40,41,26,9,28,55],backepsilon:33,ampersand:[33,30],inlinemath:[33,13,2,52,4,21,35,41],defici:36,amalg:33,mathsiz:33,gener:[33,12,31,30,21,58,55,32,15,5,37,24,57,41,26],mfrac:[21,57],explicitli:[33,12,13,30,24,18,4,21,35,23,41,42],modif:[50,41],address:[21,12,46,52],along:[33,48,50,19,20,37,40,26],wait:[0,12,31,46,14,44,48,17,50,18,2,52,20,24,32,23,53,40,41,26],box:[0,12,18,32,33,5,38,26],html_head:1,bracevert:33,shift:23,xtwoheadrightarrow:33,bot:33,queue:[44,45,14,53,16,17,50,32,52,24,48,31],overriden:31,digamma:33,varlimsup:33,commonli:[15,21,48],macintosh:31,semant:42,succsim:33,extra:[33,2,18,20,23,56,57],circumv:46,modul:[0,9,45],prefer:[12,13,39,6,21,56,46,58],iepro7:2,veebar:33,visibl:[33,12,29,50,52,4,47,35,36,26],marker:[33,30],myid:59,mobil:[12,13,18,31,25,56,41],arrowvert:33,memori:[53,55],bigr:33,visit:21,todai:48,subvers:[21,46],stylesheet:[0,45,14,44,17,32,52,53,23,7,56],handler:[0,45,48,2,32,52,53,23,57,41,26],xtofrom:33,current_skin:1,bigl:33,bigm:33,eqcirc:33,checkout:46,bigg:33,inputjax:[45,16,55,32,33,43,40,31,42],capit:16,peopl:21,bigtriangleup:33,enhanc:[12,18,57],minscaleadjust:[22,39,28],visual:[25,15,12,39,28],templat:[9,41,1,7],hphantom:33,easiest:[20,21,46,14,24],graphic:[48,56,46],prepar:[50,41,26],cap:33,uniqu:59,hline:33,pmatrix:33,whatev:[33,1,30,26,50,52,20,42],cal:[33,12],purpos:[24,12,57],getjaxbytyp:31,downharpoonleft:33,precsim:33,subseteqq:33,varprojlim:33,backslash:[33,27,23],topic:[16,11,41],stroke:28,phrase:[33,21,30],occur:[0,2,12,41,17,19,20,21,43,23,26,14,32,24,31,44,36,46,50,6,52,53,56],eqsim:33,pink:33,alwai:[12,14,16,50,33,24,41],multipl:[33,50,13,12],mpad:12,trianglelefteq:33,write:[44,30,48,50,52,21,25],fourth:50,mathsf:33,tild:33,xhtml:[21,36],map:[57,26],remap:12,max:33,clone:46,spot:[33,30],usabl:46,mac:[31,23],rowspan:36,mai:[0,1,2,3,4,5,41,7,12,13,16,20,21,22,23,26,28,30,33,24,39,31,42,44,36,46,55,50,52,53,56,57],underscor:[33,21],data:[10,0,12,45,46,14,24,42,20,21,43,55,39,40,31,26],grow:[56,12,39,28,1],goal:25,vartheta:33,baso4:33,explicit:[0,39,21,23,41,28],uparrow:33,geramond:33,inform:[0,12,15,1,44,48,33,32,19,20,24,23,56,40,41,26,57],"switch":[12,13,46,18,33,37,57],preced:[24,41,23],combin:[0,12,13,39,34,33,18,57,15,21,22,56,8,41,58,27,28],gamma:33,tall:12,lnsim:33,approx:33,showmathmath:22,addmmlclass:28,downarrow:33,lsh:33,tex2math:37,still:[44,12,15,39,14,1,48,50,36,51,20,22,23,38,56,41,58],pointer:[12,42],ttf:[12,46],dynam:[0,12,45,11,50,2,52,21,23,53,25,57,41],entiti:[33,36,18,30],snippet:[10,11,29,47,33,3,4,5,35,49,23,31],conjunct:13,group:[0,12,36,3],monitor:3,polici:46,mpcontext:[15,23],ignoreclass:[4,35],platform:[25,11,1,21],window:[12,45,39,14,24,2,6,19,5,23,52,56,31,28],"05em":33,main:[33,12,13,46,16,42,50,57,15,21,31,45,23,59,56,40,41,26,43],mathexampl:52,non:[10,0,12,30,17,33,21,56,57],jipsen:30,myinputjax:43,initi:[0,12,13,30,53,31,50,32,6,33,4,21,35,45,23,20,56,57,41,55,43],bound:33,safari:[12,2,18,56,31,58],half:24,now:[12,13,46,48,32,18,15,21,22,23,38,56,39],discuss:[10,46,41,2,3],nor:[5,49],term:[13,41,21,19],name:[0,32,4,5,10,12,13,30,15,18,19,20,21,49,23,26,27,28,14,31,2,24,35,39,40,41,42,43,44,36,46,55,33,54,59],opera:[18,31,2,58,56],boxdot:33,drop:46,separ:[20,12,13,46,33,50,19,4,21,35,36,23,41,59,54],messagestyl:[5,23,19],sideset:33,ntriangleleft:33,confid:25,varpropto:33,vec:33,varsupsetneqq:33,compil:[24,12],domain:[21,12,41,46],replac:[42,0,13,46,14,18,36,2,52,33,21,31,27,40,41,26,57],individu:[33,55,18,54,52],strikethrough:33,continu:[0,12,13,30,50,33,20,53,56,41],happen:[12,36,46,30,17,50,2,33,53,57],baselin:26,shown:[33,49,23,6,52],accomplish:[21,12,41,46,56],"3rd":21,space:[12,30,34,18,52,33,21,23,56,8,55,57],intermix:32,internet:[0,12,2,18,19,33,24,23,56,57,52,26,54],formula:[12,52,33,23,25,56,57],mathjax_zoom:38,correct:[24,12,13,2,23],integr:33,simeq:33,earlier:[12,39,50,32,21,27,56,41,28],migrat:[11,13],postfilt:12,bigstar:33,ajax:[0,45,16,50,32,33,20,24,31,43,41],mime:[36,55,21,43,40,31,26],underleftarrow:33,brower:[33,30],ord:[33,12],care:[30,34,2,33,21,54],ntrianglelefteq:33,couldn:24,x00b1:21,synchron:[0,14,11,48,17,50,2,52,20,24,32,53,31,44],mscarri:36,thing:[30,48,52,33,21,49],vdash:33,eqref:[33,12],mathop:[33,12],unwis:56,view:[12,36,46,16,2,15,21,37,56,25,39,41],think:[33,23,30,52],frequent:[4,20,35,30],first:[4,2,33,7,12,30,20,21,49,23,26,28,14,24,35,39,40,41,44,36,46,50,52,53,56,57],origin:[42,44,12,46,30,17,33,2,52,20,21,23,55,40,41,26,28],lfloor:33,oni:46,directli:[12,46,2,50,18,52,33,24,43,7,57],onc:[0,46,14,44,50,32,33,15,21,37,56,40,52,26],arrai:[32,4,5,8,12,31,17,18,20,27,23,24,26,28,29,14,34,35,37,56,40,41,43,44,39,47,49,33,54,22,57,58],yourself:[46,21,17,33,24,23,41],submit:3,formatnumb:27,open:[11,36,46,6,33,21,7,25,9],ios4:18,size:[12,39,59,18,52,33,22,23,56,41,26,27,28],given:[0,1,33,10,12,14,17,18,19,20,21,49,23,55,30,24,38,40,31,42,44,26,50,57,59],convent:26,ifmodul:[12,46],adjac:18,paramt:[33,12],leftrightharpoon:33,circl:33,white:59,conveni:[21,42,23],includ:[0,1,2,4,5,6,8,12,13,14,15,16,18,20,21,49,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,22,45,46,47,48,50,51,52,54,56,57,58,59],hub:[0,2,4,5,6,8,12,13,15,16,19,20,21,27,23,24,26,28,29,30,31,32,33,34,35,37,38,40,41,22,45,39,47,55,50,51,52,54,56,57,58],especi:[56,12,57],"public":[44,46],copi:[12,13,46,30,36,2,3,15,21,31,43,25,41],specifi:[32,4,5,6,8,10,12,13,14,17,18,20,21,27,23,28,30,44,31,33,24,35,38,40,41,22,39,48,49,50,51,53,56,57,58,59],forward:12,lhd:33,enclos:[12,39,59,33,23,57,28],quad:33,than:[0,2,4,5,7,8,12,13,30,15,17,18,20,21,27,23,25,55,54,14,31,32,33,34,35,39,40,41,42,43,44,36,46,48,50,6,52,53,56,57,59],serv:[21,18],wide:[25,39,57,46,28],undefinedfamili:[39,28],balanc:[4,12],were:[12,13,26,52,20,56,55,28],posit:[12,39,17,18,33,23,28],seri:[50,49],pre:[20,12,13,46,15,14,33,4,5,35,23,41],delic:23,lnot:33,doublecup:33,nleftrightarrow:33,argument:[44,12,14,50,33,24,42,54],dash:[59,39,28],properli:[10,0,12,13,46,21,18,50,2,52,4,5,36,24,55,56,31,42],engin:[25,11,12],squar:[33,49,18],greek:12,npreceq:33,consortium:25,note:[0,2,4,5,7,12,41,21,49,23,55,27,28,30,33,24,35,39,31,43,44,46,50,6,52,56,57,58,59],other:[0,1,32,4,5,12,13,14,15,17,18,19,20,21,43,23,25,55,28,30,31,33,24,35,37,39,41,42,44,36,46,48,50,52,53,56,57,58],x2260:21,take:[10,0,12,13,14,1,24,50,32,3,52,33,5,27,23,53,56,41],emnu:6,noth:[21,12,14,24],channel:[20,48],updownarrow:33,begin:[20,12,46,30,52,50,32,33,4,27,56,57,41],sure:[44,12,13,46,52,50,18,3,33,4,21,35,56,41],windowset:6,normal:[15,39,14,33,2,4,21,35,23,57,59,28],buffer:27,compress:41,beta:[33,12,41],pair:[10,0,14,33,4,59,35,49,20,40,31,26,27,54],fileurl:0,beth:33,hotfix:41,latex:[11,12,30,48,33,4,21,25,57,41],renam:13,textarea:[4,35],later:[44,12,31,39,30,14,17,50,33,24,36,56,41],drive:46,typeset:[0,32,4,6,12,18,19,20,22,23,25,55,28,29,47,35,38,31,45,39,24,48,50,51,52,53,56,57],badg:3,sigma:33,mathfrak:33,showmathmenu:[39,23],downdownarrow:33,show:[33,12,46,21,3,52,15,5,49,23,24,9,6,54],autoreset:14,cheap:28,parentnod:[18,2],newcomand:12,concurr:32,permiss:[21,46,30],htmlcss:26,isfirefox:31,corner:[45,23,19],xml:[25,48,12],onli:[0,1,2,3,4,5,41,12,13,18,21,49,23,25,55,28,30,44,24,35,39,40,31,15,46,48,33,52,56,57,59],slow:[56,12,26],activ:[12,13,46,14,48,3,52,15,53,36,57],enough:[12,36,50,21,49,56,41],inlinedelimit:33,otim:33,black:[33,12],offici:[12,41],geq:33,mypic:[4,47,35,49,29],nearli:[15,33,41,54],variou:[0,31,1,44,16,59,19,20,5,23,40,41,57,54],get:[2,4,10,11,12,30,18,19,21,27,23,26,28,14,32,33,24,39,41,42,44,36,46,50,52,56],soon:[12,41,2,23,52],cannot:[33,30],ncong:33,lighter:28,theta:33,requir:[0,12,13,15,14,24,31,50,2,51,33,4,21,35,43,20,25,40,41,26,57],truli:52,prime:[33,12],reveal:12,lceil:33,mathpunct:33,rerend:[40,31,55,52],enspac:33,hostil:21,intermitt:[45,19],shortmid:33,qquad:33,retypeset:52,where:[0,32,3,15,5,41,10,12,13,30,19,20,21,22,26,27,28,14,24,39,40,31,33,45,46,55,59,52,53,56,57],wiki:[1,48,2,33,21,57,41],latexmathml:30,keyboard:48,ismac:[31,32],concern:[57,31,30],infinit:[12,27],detect:[18,12,2,14],parent:[10,42],enumer:33,label:[12,6,33,27,56,54],behind:33,between:[33,12,31,39,14,30,24,50,18,6,20,21,56,57,41,55,28],maltes:33,"import":[0,12,46,15,50,18,20,53,41],across:[48,56],assumpt:33,moveright:33,longleftrightarrow:33,vdot:33,screen:[0,12,39,50,18,19,15,25,52,26,28],negmedspac:33,come:[33,13,46,50,2,15,24,36,56,57,41],leftleftarrow:33,fit:[20,6],timout:0,pertain:21,audienc:[56,36],inconsist:13,overbrac:33,mani:[33,12,31,53,50,18,4,24,35,56,41,59],among:41,endtoggl:[33,12],color:[12,48,59,18,33,49,23,38],operatornam:[33,12],period:[0,45,46],colorbox:[33,12],colon:[33,59],autmat:33,cancel:[33,12,14],typic:[33,46,30,4,21,40,41],"70kb":41,bigcirc:33,msrow:36,damag:21,needlessli:24,tabel:56,myserv:41,rebuild:31,mstyle:12,mark:[0,12,36,30,33,4,21,35,37,57,59,28],succapprox:33,mtextfontinerhit:12,fade:5,arcsin:33,xrightharpoonup:33,processenviron:4,breve:33,texfont:5,blacktriangl:33,former:34,those:[15,5,12,41,17,20,21,49,23,25,55,14,33,24,40,31,43,44,36,46,26,50,52,57,59],"case":[2,33,12,13,16,20,21,49,23,55,54,14,34,39,41,42,46,24,26,50,52,56,57,59],kappa:33,tostr:14,oldstyl:33,addtext:10,trick:33,invok:56,eqnchunk:[12,39,28],invoc:41,margin:[59,27],tbinom:33,advantag:[12,13,1,50,56,41],barwedg:33,leadsto:33,mlongdiv:36,worri:[20,57],destin:31,updatemath:52,bigwedg:33,myclass2:[4,35],develop:[13,46,48,3,36,41],author:[12,13,30,19,33,21,43,23,38,25,57],media:[59,41,46],postjax:[57,23],same:[4,15,7,12,13,18,20,21,27,23,26,28,29,30,33,47,35,41,44,46,50,53],html:[1,2,4,5,8,10,11,12,13,16,18,20,21,49,23,26,28,29,30,31,32,47,35,36,37,39,9,41,15,45,46,48,33,6,52,53,54,56,57,58,59],pad:[10,33,12,59],knuth:48,mathvari:[12,39,57,28],document:[0,2,33,41,11,12,13,16,21,23,25,26,30,37,31,4,36,46,48,52,56,57],finish:[12,48,50,2,52,53,31],vvdash:33,nest:[12,45,18,4,36,56,28],availablefont:[5,41,39],someon:33,longleftarrow:33,capabl:[16,25,56],formaterror:31,improv:[12,13,18,3,23,56,41],extern:[0,45,53,50,20,24,31],gnsim:33,submenu:[12,23,6,7],appropri:[15,12,33,20,37,40,26,57],macro:[12,18,33,21,27,23,41,54],mml_svg:[15,12,41],leftharpoonup:33,eqnchunkdelai:[39,28],overwithdelim:33,without:[0,12,13,39,24,48,33,20,5,31,36,23,57,41],model:[11,12,45,46,16,32,33,56,57,42],bigotim:33,stixfont:5,mml2jax:[12,36,47,15,21,23,57,54],loaderror:0,tip:[33,12],greasemonkei:[12,41,2],bitmap:48,aspect:12,flavor:[15,41],speed:[12,13,18,56,57,41],versu:50,strikeout:33,widest:[21,36],asciimathml:[12,30],nleqq:33,filevers:45,except:[15,21,56,53],littl:[0,44],blog:[1,48,33,21,57,41],rescal:56,treatment:33,yuicompressor:18,earli:[41,18],hover:[38,12,6,23,51],around:[33,12,41,30],read:[13,46,48,36,18,20,21,49,41],outermost:49,boldsymbol:[33,12],messsag:19,getjaxbyinputtyp:31,moo:42,world:[25,24,41],lasterror:31,mod:[33,12],sum_:57,blackberri:18,whitespac:12,cdot:[33,12],previewfilt:12,fontstyl:12,integ:[33,31],server:[33,12,13,46,2,18,15,21,39,41],either:[0,12,13,46,1,44,16,33,2,59,4,21,35,49,38,20,56,31,41,58,27],output:[32,15,41,8,11,12,13,18,20,21,22,23,26,28,30,45,37,40,31,42,33,36,39,48,55,59,6,52,54,56,57,58],rollov:18,manag:[10,45,46,1,24,48,32,19,33,21,57,55],lesssim:33,searrow:33,sqcup:33,constitut:16,pod:33,slice:14,definit:[0,12,39,33,18,51,15,59,22,6,38,25,27,28],iff:33,shoveright:33,inputid:55,inject:12,dashleftarrow:33,mathcal:33,complic:[48,56,49,36,58],refer:[42,11,12,31,46,15,21,32,33,2,53,52,20,5,27,24,55,40,41,44,43],arrow:[33,12],power:[50,3],inspect:31,broken:57,formatid:27,fulli:[21,50,36],regexp:[4,35],"throw":[26,40,43,2],trianglerighteq:33,comparison:[50,31],central:23,ibook:[56,12],firstnam:24,ddddot:33,stretch:33,act:[33,48,50,20,24,27,23,57,28],industri:48,needsupd:[40,55,52],processor:[32,33,8,12,21,22,26,27,54,30,34,41,15,36,39,48,50,6,28,56,57,58,59],hookrightarrow:33,nobreakspac:33,routin:[10,0,12,53,24,43,40,31,26],nsupseteqq:33,effici:[42,28,52],elementari:36,lessdot:33,triangledown:33,bbb:33,rightharpoondown:33,mathbackground:33,your:[0,1,2,3,4,5,6,7,8,11,12,13,15,18,21,49,23,24,25,27,28,29,30,31,33,34,35,37,38,39,9,41,22,36,46,47,48,50,51,52,53,56,58],sqsupseteq:33,log:[33,21,46,19],area:[12,27,19],aren:[33,12],fontwarn:[5,12,23,54],lor:33,strict:46,compliant:[13,18],interfac:[12,46,1,21,7,25,9],low:14,lot:[20,12,27,46],machin:[48,46],lambda:33,verbatim:33,cloudfront:21,buggi:33,categor:54,longer:[44,12,13,46,2,19,15,23,56,39,28],pull:46,mathml:[2,33,7,8,9,11,12,18,21,23,25,55,54,30,40,41,15,36,48,26,52,28,56,57,58],furthermor:[13,50,41,23],possibl:[0,12,36,46,14,30,21,50,18,33,19,15,5,23,24,56,57,41,42,59],"default":[0,32,4,5,6,8,12,13,14,15,19,21,27,23,26,28,29,30,31,34,35,37,38,39,40,41,43,22,46,47,33,51,54,56,57,58],processescap:[4,13,33,41],buildrel:33,notag:33,asiimath2jax:30,embed:36,expect:[39,50,52,33,23,41,28],taylor:21,creat:[0,32,3,33,10,19,20,43,55,14,24,40,42,44,45,46,48,26,50,6,53,57,59],certain:[20,44,56,53],leftrightsquigarrow:33,risingdotseq:33,varliminf:33,file:[0,1,2,15,5,7,8,9,12,13,14,17,18,19,20,21,49,23,26,27,28,30,44,32,33,34,31,37,39,40,41,43,22,45,46,24,48,55,50,53,54,56,57,58,59],momentarili:31,outputjax:[45,16,55,32,43,31,26],fill:[56,58],again:[33,0,31,55,52],iiiint:33,googl:3,pmod:[33,12],reduct:[56,12],field:[56,12],valid:[24,13],getscript:[10,12],you:[1,2,3,4,5,7,8,12,13,14,15,16,17,18,19,20,21,49,23,24,25,26,27,28,29,30,31,32,33,34,35,37,39,9,41,42,43,22,36,46,47,48,50,6,52,53,54,56,57,58,59],trash:55,poor:56,resolut:25,registri:12,sequenc:[11,12,31,46,17,33,32,20,53,27,41],symbol:[33,21,27,30,34],begingroup:[33,12],dashv:33,track:[57,26,3],menuset:[15,23,38],reduc:[33,12,41],mathcolor:33,lbrace:33,eqchunkdelai:[39,28],directori:[0,12,46,15,53,48,32,18,19,20,21,43,23,55,39,40,41,26],descript:[12,29,47,2,4,5,35,45,23],lbrack:33,scroll:9,calle:42,potenti:50,extpfeil:[33,12],escap:[33,27],dst:31,negthickspac:33,represent:[57,55,52],all:[0,1,2,4,5,11,12,13,15,18,19,20,21,27,23,25,26,28,29,14,44,31,32,33,47,35,36,39,41,42,43,22,45,46,24,48,50,53,54,56,57,58],consider:41,illustr:52,dollar:[33,13,30,4,21,35,41],improperli:4,code:[0,32,3,4,7,10,11,12,13,15,17,20,21,49,23,26,29,14,31,2,33,47,35,41,43,44,45,24,48,50,52,53,59],abil:[12,13,46,48,18,33,56,57],follow:[32,15,12,13,16,18,20,21,49,26,27,28,14,24,39,40,41,42,43,33,46,59,52,54,56,57],alt:[12,2,23],disk:[15,21,41,46],multlinewidth:27,scr:33,articl:48,init:42,program:[45,1,53,16,55,50,32,21,25,57,42],smile:33,introduc:[21,12,41,56],global:[12,45,14,16,52,33,56],multlin:[33,12,27],vert:33,far:[0,44,46,30,19],renewcommand:33,"1px":[10,33,12,59],verb:33,mechan:[44,14,17,50,32,33,20,53,42],loadcomplet:[33,0,31,41,43],veri:[38,7],strang:36,alterant:48,list:[1,32,4,5,6,7,8,9,12,31,16,20,21,27,23,26,28,29,14,33,34,35,38,39,40,41,22,46,47,48,55,50,51,52,57,58],"_html":56,emul:[56,12],adjust:[12,39,2,52,22,7,9,41,28],displaylin:33,small:[12,39,18,19,33,22,57,27,28],dimens:[33,12,18,23],getalljax:[31,52],difficulti:33,lll:33,tex:[1,2,4,5,7,8,9,11,12,13,18,20,21,27,23,25,28,29,30,33,31,36,37,39,40,41,43,15,45,46,48,50,52,54,56,57],zero:[5,17],design:[36,2,3,15,25,9],pass:[0,12,13,15,14,44,17,50,18,6,20,24,32,57,31,42,54],overlin:33,further:[17,50,56,57,26,40],what:[0,32,3,4,5,6,11,12,31,14,18,21,27,23,25,28,29,30,47,35,38,41,22,36,39,33,51,52,56,57],sub:45,sum:[33,14],ast:33,abl:[15,12,13,46,14,1,21,33,52,20,5,36,23,7,25,39,9,41],delet:[33,39],version:[2,3,15,41,11,12,13,18,21,27,26,28,30,32,24,38,39,40,31,43,33,45,46,55,52,56],sup:33,row:12,method:[10,0,12,13,42,14,44,17,50,53,19,20,24,31,43,52,55,40,41,26],hasn:[0,13,32,19,40,26],full:[0,12,24,16,18,2,52,15,21,23,25,57,41],themselv:[12,45,32,15,21,49,31],geqslant:33,modular:[25,12,36],ggg:33,trunk:46,ineffici:[42,23],modifi:[11,12,13,15,1,52,33,19,20,21,31,43,41,26],valu:[0,32,4,5,6,8,10,17,18,20,49,23,24,26,27,28,29,14,33,34,35,38,31,42,22,36,39,47,50,51,52,54,57,58,59],search:[25,11,31,3],sender:20,prior:[33,56,36,2,23],amount:[33,5,31,27,14],pick:56,action:[0,2,33,12,41,30,17,19,20,43,26,14,32,24,38,40,31,44,45,48,50,52,53,57],mathjax_wikipedia:2,mml_htmlormml:[13,1,2,15,21,7,56,9,41],llap:33,chunki:[39,28],via:[0,1,2,4,5,12,13,18,19,20,21,43,23,55,54,14,32,35,38,39,41,42,15,36,46,50,57],shorthand:52,equalrow:12,int_0:33,filenam:[13,12,41,24],href:[33,12,49,18],inappropri:[20,12],emptyset:33,famili:[33,0,39,28],decrement:17,establish:15,select:[12,36,46,6,15,56,39,31,58,28],hexadecim:33,proceed:[50,49],x41:33,distinct:16,ctrl:23,regist:[0,31,44,48,33,32,20,53,43,40,41,26,57],two:[20,12,15,30,53,50,33,4,21,49,23,59,41,27,54],splash:12,taken:[33,12,50,52,20,56],imath:33,basi:[56,41,58],toggl:[33,12],more:[15,5,41,7,9,12,13,17,18,21,49,23,25,28,14,33,24,37,56,39,40,31,42,43,44,46,48,50,52,53,22,57,58,59],flat:33,diamond:33,desir:[42,46,12,2,15],henc:46,ital:[0,12,48,33,21,23],unzoom:12,aleph:33,particular:[10,0,12,31,46,14,30,44,48,17,59,33,21,23,24,53,56,57,41,42],webkit:[12,31,18],upsilon:33,mathml3:[56,12,36],cach:[20,41],showmathmenumsi:[22,18,23],none:[44,29,39,14,24,31,4,47,35,27,23,57,41],eta:33,mmlorhtml:[12,15,23,56,58,54],det:33,dev:3,histori:[20,44,32,48],remain:[15,48],paragraph:[12,39,21,52,33,5,57,28],caveat:[21,26,46],def:[33,27,42],deg:33,mathtip:[33,12],scan:[12,31,23],myspan:49,challeng:15,registr:43,share:[12,46,3,21,23,41],accept:[24,14,52],succneqq:33,minimum:[39,31,22,18,28],unreli:13,explor:[0,12,2,18,19,33,24,23,56,57,52,26,54],sharp:33,mathinput:52,huge:33,cours:[13,50,41,36],newlin:[33,39,18,28,19],awkward:42,secur:[21,2,46],programmat:[57,37],anoth:[44,46,33,17,50,19,20,53,40,52,57,54],comfort:46,csc:33,amssymbol:[15,13,33,41,21],ddagger:33,stix:[12,39,48,18,33,5,56,46,57,41],reject:12,simpl:[56,49,23,19],css:[0,15,5,6,41,8,11,12,13,18,21,22,23,26,28,45,37,38,39,31,33,36,46,48,55,59,51,52,54,56,57,58],unabl:5,regener:[55,52],resourc:18,referenc:[5,27],algebra:48,iphon:18,variant:[48,12],searpat:4,reflect:[32,52],plane:12,mstack:36,blacker:28,impliedbi:33,associ:[57,12,39,14,55,52,33,24,22,40,31,26,43,28],curlywedg:33,stabil:12,circumst:12,github:[13,46],footer:41,confus:[21,12,13],ambigu:16,caus:[0,4,5,12,41,19,20,21,27,23,55,30,33,24,35,36,40,31,44,45,46,26,50,6,52,56,57],callback:[0,12,45,14,44,16,17,50,32,53,52,20,24,48,55,40,31,26],firefox3:39,alphabet:12,merror:[12,59],unrhd:33,help:[11,12,13,46,3,21,23,56,41,6],autoload:33,trade:[56,41],through:[44,12,13,46,50,18,33,20,53,36,56,57,41,42,54],hierarchi:[41,46],suffer:[56,12],paramet:[0,32,15,41,10,12,13,30,17,18,19,21,27,23,26,54,29,14,47,38,40,31,42,43,44,24,55,33,52,56],style:[0,32,33,5,51,10,11,12,18,19,21,49,23,28,35,38,31,4,39,48,59,6,22,57],arial:[33,39,28],x221a:36,processupdatetim:31,x221e:57,late:[48,12,2],isreadi:[45,32],pend:17,amsmathaddit:50,mathplay:[12,2,18,6,15,23,56],might:[0,12,13,46,24,50,36,3,20,21,27,57,41,26,28],alter:[4,55,52],finer:12,cee:[33,12],good:[50,2,28,3],"return":[10,0,36,42,14,44,17,50,53,19,20,24,27,52,55,40,31,26,43],textstyl:33,hslash:33,getelementbyid:52,wilipedia:48,rlap:33,detach:12,equationnumb:[33,12,27],xtwoheadleftarrow:33,redesign:[56,12],mathscr:33,instruct:[49,21,13,2,1],critic:46,bigcup:33,easili:[25,21,57,48],token:12,x2212:[21,57],found:[0,46,24,3,21,23,56,40,26],unicod:[12,36,39,33,5,28],x2211:57,subsystem:32,interleav:12,originaltext:55,weight:[12,49,42],setrender:[12,31],hard:[46,18,3,15,21,41],realli:[24,23],nless:33,connect:[12,24,15,21,57,41],math2:[33,12],math1:[33,12],beyond:[33,3],orient:[16,42,45,32],ismathjax:12,nleq:33,mhchem:[33,12],shortcom:53,skiptag:[4,12,35],print:[25,56,12,46,59],occurr:53,msie:[31,58],foreground:59,assist:[15,12],safari3:39,advanc:[16,11,41,25],offsetx:[39,28],symbian:18,mml:[12,41,58,15,21,45,56,40,31,55,57],reason:[0,36,30,24,50,2,19,33,21,27,56,31,43],base:[12,13,46,14,1,53,16,32,2,56,5,31,45,55,25,39,41,42,43,28],put:[0,12,13,46,30,53,33,21,23,56,41,54],mathr:33,processupdatedelai:31,offseti:[39,28],ispc:[31,32],succnapprox:33,stanard:33,texerror:12,drupal:1,msbm10:21,taht:22,showprocessingmessag:[23,54],perhap:[24,41],bumpeq:33,perman:33,elementjax:[12,45,16,55,32,43,40,26],stixgener:[33,39,28],getelementsbytagnam:2,assign:[4,24,35],major:[25,56,12,41,2],notifi:20,boxplu:33,upper:33,feel:3,exchang:48,lastnam:24,number:[0,1,32,15,5,41,12,13,18,19,21,49,23,26,27,28,14,34,39,40,31,43,33,45,46,24,55,50,52,56],grtaphic:57,fadeoutstep:5,done:[12,17,50,32,33,21,57,41],construct:[50,57],blank:[44,14],stabl:[21,41,46],miss:[33,12,14,30],differ:[33,12,31,46,14,24,58,50,52,20,21,23,53,57,41,42],euqat:56,script:[0,1,2,4,41,7,9,10,12,13,18,20,21,43,23,26,32,33,35,37,40,31,15,46,55,50,52,56,57],interact:[12,31,39,21,25,57,41,55,28],smoother:5,least:[31,41,57,30],statement:[50,14],natur:[25,21,33,46,57],illeg:[49,18],store:[10,44,12,13,39,14,55,50,18,52,24,31,45,37,38,40,41,26,57],xmln:[21,12],option:[4,5,6,7,8,11,12,13,15,21,49,23,27,28,29,30,31,34,35,37,38,41,42,43,22,39,47,33,51,54,56,57,58],nleftarrow:33,eqn:27,ntrianglerighteq:33,selector:[59,23,19],tex2jax_process:4,part:[4,2,15,7,12,30,20,21,27,23,25,26,14,41,42,33,36,46,50,53,56,57],pars:[33,12,18,30],mmltoken:33,binom:33,cosh:33,kind:57,aaa:27,prebuilt:21,whenev:[44,36,46],remot:46,remov:[44,12,31,39,14,52,55,33,18,19,4,5,35,23,57,41,26,28],dtd:21,bridg:[13,55],arrang:14,toward:12,markup:[0,36,30,48,33,21,57,28],ffff88:59,comput:[39,48,33,56,46,31,28],nleqslant:33,packag:[46,30,48,33,27,37,41],expir:10,"null":[10,0,45,42,14,44,2,18,19,5,43,23,52,55,39,40,31,26],built:[11,13,2,56],equival:[10,14,50,52,15,24,49],lim:33,self:[21,12,36,18],ell:33,also:[2,3,4,10,12,13,30,16,19,20,21,22,23,55,28,14,24,39,41,42,15,36,46,48,33,6,52,53,56,57,58],brack:33,build:21,brace:[4,33,12,2],triangleleft:33,distribut:[13,9,41,46,21],index:[21,46,1],addel:10,reach:41,took:12,react:44,most:[15,12,45,46,14,1,48,2,33,18,20,21,32,43,56,57,41,42,59],plan:21,rho:33,alpha:33,rhd:33,vardelta:33,renewenviron:[33,12],clear:[44,12,39,14,32,19,20,28],tpl:1,h2o:33,exp:33,usual:[12,14,30,24,50,33,5,43,23,57,41],leftroot:33,cdata:18,nshortparallel:33,carefulli:[49,39,28,52],cdn:[33,12,13,46,1,18,2,52,15,21,37,7,56,9,41],flicker:[12,39,28],finv:33,particularli:[15,12,46],rightleftarrow:33,font:[0,33,5,11,12,13,18,19,21,27,23,25,26,28,39,41,46,48,49,59,6,52,53,56,57],find:[12,31,3,52,33,5,37,7,57,41],preremoveclass:23,cell:56,execut:[0,14,44,17,50,32,33,20,24,57,41],pretti:46,solut:[21,57,46,3],delayedx:14,queu:[17,50,41,14,44],factor:[12,39,18,22,23,56,28],noerror:[15,21,12,33],jaxfil:43,tagsid:[12,27,54],precnsim:33,express:[20,12,39,44,50,33,4,21,35,27,23,56,52,26,28],strut:33,nativ:[12,36,16,2,15,25,56,57,58],mainten:13,rest:[0,36,50,52,33,21,25,57],donald:48,restart:[12,46,17,50,4,35,41],ie9:[46,12,18,56],ie8:[56,12,18],ie7:[56,12],acut:33,vmatrix:33,common:[11,12,13,30,1,21,48,33,36,15,5,31,49,41,43],set:[0,2,4,5,6,8,10,12,13,14,15,18,19,20,21,22,23,24,55,27,28,29,30,31,32,33,34,35,37,38,39,41,42,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59],overrightarrow:33,startup:[11,12,45,31,2,50,18,52,20,32,43,23,41],see:[0,32,3,4,5,6,7,9,12,13,14,15,17,18,20,21,22,23,26,27,28,29,30,31,33,47,35,37,38,39,40,41,44,36,46,24,48,50,51,52,53,54,56,57,59],barb:33,sec:33,arg:33,ams_hml:41,close:[12,36,21,2,18,3,15,5,54],langl:33,inconveni:13,someth:[33,46,3,52,4,21,23],particip:3,won:[12,46,50,18,33,56,41],columnspan:36,subscript:[33,21,12,18],experi:23,altern:[0,30,33,24,57,42],numer:[33,31,36],complement:33,javascript:[0,1,2,15,5,6,7,11,13,16,20,21,27,23,25,55,28,14,33,24,38,9,41,42,22,45,39,48,49,50,51,52,53,54,56,57,59],isol:[33,12,18],mailbox:[20,48],bmatrix:33,consumpt:18,distinguish:40,longrightarrow:33,errat:41,classnam:2,popul:32,varsigma:33,unstar:33,last:[0,46,14,17,59,33,31,26,54],delimit:[33,12,13,30,18,4,21,35,57,41],hyperlink:57,mathzoom:[12,59,15,38,26,54],event:[0,12,15,48,2,18,51,52,20,53,32,23,57,26,6],nvdash:33,grei:[33,32],context:[12,14,6,4,35,23],overset:33,hbar:33,whole:[53,31,45,52],load:[0,1,2,15,8,9,11,12,13,17,18,19,20,21,27,23,25,26,28,14,44,32,33,34,31,37,39,40,41,43,22,45,46,24,48,50,52,53,56,57],markdown:[48,21,33,57],simpli:[15,13,46,14,30,24,31,17,33,52,4,47,35,29,23,25,40,41,26,43,37],point:[33,17,41,34,21],instanti:42,priorit:[12,14],usemathmlspac:8,fcolorbox:[33,12],header:[12,41,46,1,7],suppli:[31,55,23,14],bigve:33,mistak:49,zeta:33,throughout:33,vertic:[4,35,26,23],notaion:11,gneq:33,devic:[12,13,18,25,56,41],due:[12,13,39,28],empti:[12,45,39,14,50,32,23,57],sinc:[0,33,41,12,13,30,15,17,18,20,21,22,23,27,14,31,42,44,36,39,50,52,53,56,57,59],invis:[33,46],fire:[32,41,2,52,24],imag:[12,13,46,47,48,18,2,29,4,5,35,49,25,39,41,26],descib:30,coordin:[17,50,57],understand:[15,57],demand:15,urcorn:33,sqcap:33,blacksquar:33,look:[1,4,3,33,7,10,12,14,19,21,54,30,35,39,31,44,36,46,59,52,28,57],bcancel:[33,12],solid:[10,33,59],histor:56,pitchfork:33,lvert:33,"while":[10,0,13,46,21,58,50,2,34,33,20,5,36,23,53,57,41,44],blacktriangleleft:33,nprec:33,behavior:[12,13,46,23,39,41,28],circlearrowright:33,bookmarklet:41,everyon:[20,28],loop:[12,27,55],pack:18,subsect:[27,43],measuredangl:33,readi:[15,45,33,32,20,43,40],jpg:[4,47,35,49,29],biguplu:33,itself:[32,33,41,12,13,17,20,23,55,54,14,45,40,31,42,44,36,46,26,50,56,57,59],peramet:40,rightarrow:33,minim:26,xleftarrow:33,belong:12,shorten:19,shorter:18,am_htmlormml:[15,21,12,41],redisplai:19,htmlcsslast:26,conflict:[33,57,18],higher:41,upuparrow:33,optim:[56,12,18],wherea:33,domin:48,alert:[20,24,50,14],moment:[21,40,46],temporari:41,user:[32,3,15,5,6,11,12,41,19,20,21,22,23,25,28,14,2,37,38,39,31,33,36,46,51,52,56,57,58],robust:[20,48],stack:27,recent:[25,2],lower:[12,45,16,18,32,19,33,23],task:33,older:[41,36],entri:[12,48,17,59,18,33],searchabl:25,chemistri:12,person:24,textit:33,expens:[56,57],normals:33,scriptsiz:33,badbreak:56,fallingdotseq:33,explan:[33,21],rvert:33,obscur:[18,19],mathinn:33,amp:[33,18,30],regardless:[12,52],seriou:57,cup:33,setscript:10,blacklozeng:33,endgroup:[33,12],ffeeee:33,rgb:33,input:[32,15,41,7,8,40,12,13,18,20,21,27,23,26,54,30,34,36,37,9,31,42,43,33,45,48,55,50,52,56,57],subsequ:[33,40,26],oslash:33,asciimath:[11,12,30,34,48,15,21,35,25,57,41,54],konqueror:[56,31],big:[33,54],moodl:1,intuit:48,tomathml:[15,55],game:33,insert:[33,12,29,39,14,2,4,47,35,43,23,7,9,31,26,57,28],bit:[12,42],diagup:33,success:[56,12],semi:59,varkappa:33,signal:[44,12,45,14,53,16,32,20,24,31,43,48,41],asciimath2jax_process:35,resolv:[12,18],collect:[14,48,50,24,55,59],"boolean":31,popular:[21,37,1],swarrow:33,asciimath2jax_ignor:35,scrip:13,stackrel:33,simplifi:18,creation:[40,32],some:[1,2,33,5,41,12,13,14,16,17,20,21,22,23,25,26,27,28,30,24,39,40,31,42,43,36,46,55,50,52,54,56,57,58],back:[46,30,21,55,33,5,35,26],emph:33,urgent:41,sampl:[33,46,53,59,32,52,20,21,23],instal:[11,12,13,46,21,18,56,33,5,7,25,39,41],scale:[12,39,18,33,22,23,25,28],per:12,substitut:27,mathemat:[0,32,4,5,6,7,9,12,31,18,20,21,22,23,25,26,27,28,29,30,33,47,35,37,38,39,40,41,43,15,36,46,48,55,50,51,52,56,57],larg:[0,12,13,33,41,58],prod:33,reproduc:[12,52],tex2jax:[15,12,13,18,33,36,2,52,4,21,45,23,57,41,54],cgi:0,garamond:33,previou:[44,12,14,50,19,24],run:[0,2,4,5,8,12,31,17,20,21,22,23,24,27,28,29,14,32,34,35,39,41,44,36,46,47,50,52,53,57,58],doteqdot:33,odot:33,step:[12,1,21,32,5,57],hookleftarrow:33,varsubsetneq:33,carol:33,impos:46,ngeqslant:33,reappear:19,materi:[56,18,52],prove:[56,12],dialog:[12,18],rangl:33,succcurlyeq:33,block:[12,13,39,21,18,2,33,5,32,22,23,56,57,41,43],file3:50,file2:[0,50],file1:[0,50],file4:50,bmod:[33,12],within:[0,32,33,5,41,12,13,30,16,18,21,27,26,14,24,35,37,31,42,4,36,46,52,53,57],prec:33,notat:[12,30,48,33,21,25,57,41],isjax:[12,31],announc:53,inclus:[39,28],triangl:33,question:[21,43,3],fast:[13,41,18],custom:[33,30,18,19,15,21,25,56],referenec:31,perp:33,plane1:12,suit:[13,34,5,36,41,21],nativemml:[12,36,48,58,6,15,22,56,57,31,26,54],overleftrightarrow:33,ulcorn:[33,12],doctyp:[21,36],reorgan:12,poster:44,atop:33,loadhook:[0,12,31,24],serif:[0,39,28],link:[12,13,46,1,21,16,18,33,5,27,53,41],translat:[26,40,43,18,57],delta:33,line:[33,12,13,46,1,34,48,18,2,35,4,21,32,29,54,56,39,57,41,28],linb:56,consist:[36,30,50,33,49,56],rmoustach:33,apricot:33,divideontim:33,geqq:33,similar:[53,46,14],xmapsto:33,enlarg:38,constant:[20,27],parser:12,xlink:12,doesn:[15,46,14,30,55,33,20,23,39,41,42,28],repres:[10,33,29,21,48,59,19,4,5,35,49,23,25,47,26,57],"char":33,mathdiv:[10,24,50,52],opera10:39,guarante:[0,50,52,17],ebook:[56,12],gecko:[12,31],phantom:33,bigoplu:33,iiint:33,titl:[21,52],sequenti:[53,50,32],invalid:[33,49],llcorner:33,toaudibl:55,bracket:[33,49,23],shoveleft:33,xrightarrow:33,department:46,supseteq:33,nice:2,lozeng:33,delayclear:[39,28],msup:[21,57],eqnchunkfactor:[39,28],alttext:47,varsubsetneqq:33,eval:14,fisher:33,newcommand:33,svn:[21,13,46],rightharpoonup:33,land:33,algorithm:[56,12],mimetyp:[55,40,43,26],svg:[12,48,18,6,15,21,54,56,57,41,28],supseteqq:33,liminf:33,depth:[33,56,12],dot:[33,12],doublebarwedg:33,hello:24,prototyp:42,mathjax_displai:59,partial:33,edg:[56,12],queri:57,tiddlywiki:1,overlap:56,edu:46,privat:[53,43,46],elsewher:52,friendli:21,send:[20,44,41],becam:48,sens:57,sent:[20,44,31,48],actiontyp:[39,28],unzip:46,whichev:33,xxxxxxxx:[21,46],mous:[12,39,18,51,15,6,38,57,26,28],doublecap:33,untouch:33,skew:33,tri:[0,13,39,33,22,28],ischrom:31,mathit:33,button:46,geograph:41,fewer:15,"try":[12,46,3,20,21,43,42],xcancel:[33,12],userscript:2,maction:[33,39,12,18,28],pleas:[49,3],impli:33,smaller:[15,0,12,18,57],fortun:20,getjaxfrommath:26,exten:30,aperson:24,jump:[12,32],unpost:12,download:[0,12,13,46,21,18,5,23,25,57,41],hspace:33,click:[33,12,6,15,23,38,7,57,26],append:[10,46],compat:[33,12,39,48,18,4,27,23,56,28],appendchild:[10,2],turn:[10,44,12,13,15,14,33,4,35,36],compar:[56,12],access:[44,12,46,1,24,55,50,18,6,33,15,21,25,56,41,42],upharpoonright:33,mathjax:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],can:[0,2,3,4,5,10,12,13,14,15,17,18,19,20,21,22,23,25,26,27,28,30,31,32,33,24,35,36,37,39,40,41,42,43,44,45,46,48,50,6,52,53,54,56,57,58,59],vargamma:33,closur:[24,14,52],leq:33,intercept:21,let:[12,13,46,36,6,33,21,49,23,31,58],sinh:33,safer:12,becom:[12,13,46,14,50,3,20,36,56,42],altough:24,tex4ht:57,rtime:33,convert:[11,36,14,30,33,2,19,4,37,25,57,26],convers:[33,30],scriptlevel:12,larger:[12,39,15,21,56,57,41,28],technolog:[25,15,3],zscale:23,circledast:33,chang:[1,2,33,41,12,13,18,19,21,27,23,55,28,34,39,40,31,15,46,6,52,56,57],honor:[39,12,22,46,23],chanc:[4,20,35,44,21],calibr:12,firefox:[12,46,2,18,56,31,58],rgroup:33,tau:33,appli:[12,46,33,22,56,39,41,42],iskonqueror:31,lessgtr:33,api:[16,11,12,25,21],smallmatrix:33,oval:33,"221a":12,cloud:[13,41],from:[0,1,2,4,9,11,12,13,14,15,18,19,20,21,22,23,26,27,28,29,30,31,32,33,47,35,37,39,40,41,42,43,44,45,46,24,55,50,6,52,56,57],zip:[21,18,46],commun:[20,11,12,3,21],chi:33,doubl:[33,12,15,27,23,38,26],upgrad:[5,46,3,11],varphi:33,next:[30,53,52,33,34,31,55],implic:46,few:[12,46,30,33,21,37],msqrt:[21,57],postprocess:43,bowti:33,panel:33,subsetneq:33,failur:12,preformat:18,src:[15,13,1,47,31,50,2,29,33,4,21,35,49,37,52,7,56,9,41],appropr:12,lippman:30,aquamarin:33,projlim:33,"4ac":21,rare:50,applyfunct:12,versionatleast:31,account:10,alik:2,retriev:10,augment:[42,40,43,26,12],scalabl:[48,56,57],underwai:50,annot:12,halt:53,thin:[12,27],assum:[12,52],eqchunkfactor:[39,28],control:[4,15,5,51,8,12,41,21,22,23,27,28,29,34,35,38,39,31,33,46,47,59,6,56,58],bittersweet:33,tap:12,lesseqgtr:33,tar:46,process:[0,2,4,10,11,12,13,17,18,19,20,21,27,23,26,28,29,30,31,32,33,47,35,37,40,41,43,15,36,39,24,55,50,6,52,54,56,57,58],dfrac:33,newmath:52,divis:12,high:[25,56,57],tag:[1,2,4,41,7,12,13,18,20,21,49,23,26,27,54,30,32,47,35,37,40,31,33,36,46,55,52,56,57],tab:46,tan:33,delai:[0,12,31,39,15,14,44,51,19,20,23,38,57,41,6,28],fontwarns:59,gcd:33,pure:36,importat:16,lgroup:33,getelementsbytagnamen:2,subdirectori:[46,40,26,55],instead:[33,13,46,30,24,17,50,18,52,20,21,27,57,41],class4:42,class2:[4,35,42],sin:[33,12],sim:33,class1:[4,35,42],simplesup:[12,42],frac:[33,12],overridden:[12,39,26,19,43,55,40,42,28],mspace:[33,21,12,36,18],"_svg":56,anothermethod:42,frak:33,filtertext:19,redund:[12,42,23],essenti:[15,33,57,42,30],bind:12,correspond:[12,41,39,33,37,31],element:[32,4,5,10,12,41,15,18,20,21,49,23,26,27,28,33,35,40,31,42,44,45,39,55,50,51,52,53,56,57,59],reredn:55,newextarrow:33,allow:[1,2,4,6,12,13,15,18,19,20,21,49,23,25,26,27,28,33,24,38,39,41,42,44,46,48,50,51,59],fallback:[39,46],mjx:[10,27],fastest:[56,12],nonumb:33,scriptstyl:33,nsucc:33,comma:[59,2,33,23,41,54],dagger:33,mathjax_tooltip:[39,28],movabl:[9,1],chosen:[56,58],clickabl:33,coth:33,varxi:33,pretransl:[43,26],therefor:33,pixel:[48,39,12,26,28],multimap:33,crash:[12,23],sqsubseteq:33,handl:[0,2,33,5,41,12,13,30,18,20,43,23,26,14,45,31,4,36,48,50,51,53,56,58],auto:27,nokia:18,innermost:49,dai:[10,12],maxbuff:27,front:[15,18],successor:37,gggtr:33,somewher:41,anyth:[20,54,39,28,3],edit:[15,41,1,7],smallfrown:33,februari:11,mode:[33,12,46,18,4,21,37,56,39,57],varomega:33,"2em":33,circular:12,genfrac:[33,12],subset:[33,58],delaypost:[39,28],bump:12,chunk:[39,28],nointerest:44,meta:[56,12],"static":42,our:[13,46,18,3,21,9],meth:31,ie6:39,special:[15,12,31,30,24,33,4,21,35,36,23,53,25,56,57,41,59],out:[0,12,13,46,50,52,20,5,56,39,57,28],variabl:[45,14,16,42,32,52,33,24,56,26],lesseqqgtr:33,matrix:33,stub:43,suitabl:33,rel:[0,12,18,23],moveabl:[9,1],circlearrowleft:33,ref:[33,12],math:[2,4,6,10,11,12,13,18,19,20,21,22,23,25,26,28,29,30,31,32,47,35,37,38,39,40,41,15,36,46,48,33,51,52,53,56,57],negthinspac:33,nsucceq:33,insid:[18,1],workflow:36,manipul:52,eqslantgtr:33,dictionari:12,releas:[21,12,41,2,46],afterward:24,indent:[27,23],could:[0,12,13,30,24,16,55,50,36,3,33,20,21,31,27,52,57,41,26],ask:[12,3,52,21,27,57,41,26],succ:33,timer:32,keep:[13,46,1,30,48,52,33,21,57,41,26],gtreqqless:33,length:2,outsid:[4,56,12],"0em":[59,23],retain:[33,28],softwar:[25,21,57,15],rbrace:33,blogger:1,rbrack:33,qualiti:[25,56,57],spadesuit:33,date:[13,41,18,46,21],uplu:33,clubsuit:33,bigsqcup:33,suffic:21,prioriti:14,"long":[12,39,50,18,6,33,21,28],start:[0,32,33,41,7,9,11,12,13,30,20,21,49,23,26,14,40,31,44,46,50,53,57],unknown:[12,36],respond:[44,28,39,23,3],flag:[12,23],system:[46,1,21,16,32,3,33,5,56,25,39,28],messag:[0,12,13,46,48,15,21,16,33,32,19,20,5,45,23,53,31,44,43],attach:[44,33,51,20,53,23,26],attack:21,termin:[4,35],man:21,"final":[13,24,33,21,49,25,57,26],rsh:33,supset:33,"1em":[59,36,28],gtreqless:33,hdashlin:33,exactli:12,haven:12,blind:57,ipad:18,preceq:33,gtrdot:33,lion:12,structur:[0,45,14,24,48,52,20,21,31,54,40,41,26,28],charact:[33,12,36,39,30,34,48,59,18,4,5,35,27,23,56,57,28],htaccess:[12,46],light:[33,42,38],bet:46,reposit:23,exhibit:46,deliveri:[21,18],biggl:33,biggm:33,rrightarrow:33,deprec:[15,21,41,23],unkown:31,have:[0,1,32,3,4,5,12,13,14,15,18,20,21,22,23,26,27,54,30,31,2,33,34,35,38,39,41,42,44,36,46,24,55,50,52,53,56,57],disadvantag:56,need:[0,1,2,3,4,5,7,9,12,13,14,17,18,19,20,21,27,23,25,26,28,30,31,32,33,34,35,39,40,41,42,43,15,36,46,24,48,55,50,52,53,56,57,58,59],nsim:33,border:[10,33,12,59],gdef:[33,12],issu:[0,12,31,3,19,36,23,56,57,41],min:33,mid:33,fontdir:26,which:[1,2,4,9,12,13,14,15,18,19,20,21,49,23,26,27,28,29,30,31,32,33,47,35,36,37,38,39,40,41,42,44,45,46,24,55,50,52,54,56,57,59],hbox:[4,33,12],mit:33,singl:[0,12,13,14,30,52,16,50,18,33,4,21,35,45,53,25,41,59],declaremathoper:33,mathjax_preview:[12,29,4,47,35,23,57],x22d6:33,unless:[21,12,18,14,56],who:[20,44,3],leftthreetim:33,why:33,underset:33,placement:18,url:[0,12,13,46,18,33,2,6,15,21,32,27,23,41],gather:[33,12],request:[0,12,14,44,32,50,18,33,20,24,41],face:[39,3,33,5,27,46,54],inde:[56,12,54],movablelimit:[12,18],nmid:33,determin:[33,12,31,1,32,4,34,23,56,41,26],flux:50,mtextfontinherit:[39,28],occasion:41,fact:[44,12,13,43],atopwithdelim:33,backsimeq:33,mathjax_messag:19,text:[1,2,4,5,7,9,10,12,13,18,19,20,21,22,23,25,55,27,28,29,30,32,33,47,35,37,40,41,15,39,24,48,49,50,52,56,57,59],verbos:[48,24,23],bring:57,woth:36,curlyeqsucc:33,highest:[56,12],locat:[0,12,13,46,21,31,33,32,52,4,5,35,29,23,20,47,41,26,57,37],jax:[32,15,41,8,12,13,16,18,20,27,23,26,28,30,34,37,40,31,42,43,22,45,39,48,55,33,52,54,56,57,58,59],much:[12,53,48,20,34,56,41],vartriangleright:33,should:[2,4,41,7,40,12,13,30,15,17,21,49,23,26,27,14,33,24,35,37,9,31,43,44,36,46,48,50,6,52,56,58,59],imagefont:[5,12,39],vartriangleleft:33,suppos:[13,12,41,52,24],"5px":[10,33],triangleright:33,"5pt":21,local:[33,12,46,14,21,50,2,52,15,5,23,41],hope:[5,13],meant:14,move:[12,13,46,22,23,39,28],overleftarrow:33,woff:[12,46],looparrowright:33,increas:[12,13,18],lucki:33,leqslant:33,smash:33,unprocess:[31,55,52],enabl:[33,12,13,39,30,1,4,21,35,7,56,9,41,28],organ:57,frown:33,stuff:31,she:56,contain:[0,1,2,4,5,10,31,15,16,17,19,20,21,27,23,26,28,29,14,33,47,35,39,40,41,43,44,45,46,24,55,50,52,56,57,59],typset:12,conform:21,frame:19,apolog:13,temporarili:19,troubl:21,issafari:31,mathord:33,statu:[0,46,24],error:[0,12,13,30,33,36,2,3,15,21,43,23,40,31,26],jmath:33,pattern:[4,35,23],goodbreak:56,misus:56,thumb:50,gtrsim:33,favor:[13,23],state:[50,26,40],quickest:21,chemic:33,neither:[5,49],equiv:[33,56,12],omicron:33,nshortmid:33,"2pt":33,kei:[10,0,14,44,17,20,23,31],texttip:[33,12],"2px":33,entir:[31,41,23,52],closebox:5,ker:33,addit:[0,33,5,12,13,30,17,18,20,21,23,55,14,24,40,31,15,36,26,50,52,59],skipstartuptypeset:23,plugin:[1,6,33,23,7,25,56,57],admin:[9,7],nabla:33,equal:[33,50,31,42,12],gnapprox:33,etc:[12,48,50,52,33,23,41],instanc:[10,31,55,50,4,35,43,41,42],equat:[4,15,12,18,21,22,23,25,55,27,28,29,34,35,39,31,33,46,47,26,52,56,57],class3:[4,35,42],eth:33,darker:28,limiti:46,lmoustach:33,onchang:52,comment:[33,59,18,15,21,23,41],varnoth:33,arriv:[20,53],solv:[],harpoon:33,arguement:24,respect:[22,39,14,28],showmathplay:6,quit:[56,52],showfontmenu:6,"55em":33,quotat:59,anomali:12,compos:36,defint:33,compon:[0,32,15,6,41,13,16,20,21,25,26,54,30,45,40,31,42,44,36,33,51,53,57,59],treat:[33,21,12,30],immedi:[0,12,52,17,50,2,33,20,32,41],incldu:57,smallsetminu:33,both:[0,13,30,24,48,32,50,18,33,15,21,31,36,23,7,56,9,41,42,57],alignat:33,varsupsetneq:33,otf:[46,12,18],psi:33,x_2:33,togeth:[13,14,50,15,36,31],x_1:33,injlim:33,present:[44,12,36,3,5,23,56,41,6],cot:33,twoheadrightarrow:33,multi:[33,12],iscallback:14,plain:33,align:[12,36,59,33,21,23],contextu:[11,12,45,39,58,55,6,15,22,23,38,56,57,36,26,28],studentdisplai:52,defin:[32,15,5,6,41,12,13,20,21,22,23,26,27,28,30,2,24,38,40,31,42,43,33,39,50,51,54,59],glossari:[48,11],layer:[18,1],almost:33,curvearrowright:33,site:[33,13,46,1,15,21,23,25,9,41],archiv:[21,46],substanti:[13,41,56],revis:46,unneed:28,greater:[33,56,30],formattag:27,welcom:3,displaystyl:[33,34,52],parti:[20,21],cross:46,sqrt:[33,21,12,57],getx:42,extensiondir:43,oint:33,supsetneq:33,android:[56,18],cssid:[33,18],difficult:[24,36,53],phi:33,http:[12,13,46,1,2,6,52,33,21,37,7,56,9,41],d3eoax9i5htok0:21,lleftarrow:33,"8em":[33,27],effect:[17,50,2,38],mrow:[21,57],sooner:12,student:[12,52],canva:57,php:[1,7],executehook:[44,14],off:[33,18,15,53,56,41],center:[33,21,59,23,56],well:[15,36,46,14,24,33,3,52,20,21,35,43,23,53,56,41,59],exampl:[0,2,3,4,5,6,8,10,12,13,14,17,18,20,21,22,23,24,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,44,45,46,47,49,50,51,52,53,54,55,56,57,58,59],command:[12,31,46,14,48,17,50,32,52,33,36,23,41],achiev:12,choos:[33,21,12,56],undefin:[33,21,14,24],setx:42,subsetneqq:33,sibl:18,latest:[13,46,1,2,3,52,33,21,37,7,56,9,41],curlyeqprec:33,paus:[31,46],less:[33,46,30,4,21,35,39,57,31,28],obtain:[33,12,13,46,52,15,21,23,57,41,26],mistaken:57,mathclos:33,mathoutput:52,simultan:[50,32],web:[1,2,33,5,11,12,13,18,20,21,23,25,55,30,32,37,39,41,44,46,48,50,52,53,56,57],preprocessor:[15,12,13,30,47,31,33,36,32,45,4,21,35,29,23,52,57,41,54,37],current_them:1,detai:12,smith:24,textbf:33,cdotp:33,add:[42,15,12,13,14,1,17,33,4,5,35,43,23,55,56,26,59],cleanup:12,schedul:24,match:[44,12,39,4,35,22,28],rememb:28,webpag:37,piec:18,ntriangleright:33,punctuat:18,cpan:33,know:[44,12,24,33,20,21,56,40,41,26,57],cfrac:33,press:[23,52],sourceel:[20,55,26,52],tick:[33,21,35,30],recurs:[31,18],string:[0,14,44,33,19,4,59,35,49,23,20,31,55,27],loss:41,nofont:5,like:[2,4,12,30,17,18,19,20,21,25,28,14,33,34,35,37,39,40,41,44,36,46,24,48,50,52,53,54,56,57,59],lost:24,messagehook:[20,44,12,31],necessari:[12,31,2,21,25,56,41],resiz:56,page:[1,2,4,5,7,10,11,12,13,15,16,18,19,20,21,27,23,25,26,29,30,31,32,33,47,35,37,39,9,41,44,36,46,24,48,55,50,6,52,53,56,57],didn:33,captur:48,linux:[31,23],"export":55,superclass:42,proper:[33,44,12,31],home:[48,0,12,30],peter:30,librari:[16,50,45,46],glyph:[48,33,12],kern:33,rspace:33,leak:55,avoid:[12,13,30,18,33,49,23,56,57,36],thank:30,tooltip:[33,12,39,28],checkmark:33,leav:[10,30,52,33,27,58],overlai:12,uselabelid:27,supsetneqq:33,preload:[0,21],twoheadleftarrow:33,mpmous:[15,23],daleth:33,acronym:48,journal:48,usag:[33,11],host:[13,12,41],sphericalangl:33,although:[16,21,46,58,44],offset:[39,26,28],simpler:19,varepsilon:33,about:[3,33,5,41,12,13,30,15,18,20,21,23,26,14,34,39,40,31,44,46,24,52,53,57],ams_html:[33,13,52,15,37,41],actual:[10,0,12,31,14,30,52,17,50,33,20,24,36,23,56,40,41,26,57],column:[12,27],mathajx:13,mod_head:[12,46],mapsto:33,constructor:42,fals:[44,12,54,39,2,33,18,6,4,34,27,23,55,8,31,42,40,28],disabl:[33,12,13,39,23],eqalign:33,own:[33,12,13,46,21,16,50,18,3,15,5,34,53,56,40,41,26,57,54],amsmath:[33,12,13,50,15,21,27,41],circledr:33,automat:[12,39,17,50,19,33,21,27,56,57,41,42,43,28],bigtriangledown:33,guard:23,"_htmlormml":[56,58],vphantom:33,merg:[10,31],w3c:12,transfer:[21,46],appl:12,bigcap:33,inner:12,arg1:24,"var":[10,33,14,50,2,52,20,24,42],arg2:24,"function":[0,12,31,14,44,48,17,50,2,33,20,24,32,27,52,53,57,41,42,43],propto:33,unexpect:23,precnapprox:33,unbalanc:12,studentansw:52,bodi:[0,13,52,21,40,41,26],gain:[56,12],posttransl:[43,26],inlin:[4,21,35,13],bug:[10,12,13,46,18,3,19,21,23,57,41],count:[12,2],made:[46,50,3,33,53,57,55,54],bbbk:33,whether:[33,12,29,39,47,31,58,2,6,52,4,34,35,27,23,24,8,41,55,28],wish:[13,24,59,2,3,33,21,41,56,31],displai:[4,5,10,11,12,41,18,19,20,21,27,23,25,26,28,29,30,34,35,37,39,31,33,36,46,48,55,6,52,56,57],distract:12,underleftrightarrow:33,asynchron:[0,45,14,44,48,17,50,52,20,24,53,31],gtrapprox:33,below:[1,4,5,6,8,10,12,41,21,27,23,26,28,29,34,35,38,40,31,22,39,47,49,33,51,53,55,57,58],limit:[10,0,36,33,34,27,41],otherwis:[0,12,45,14,55,33,19,15,21,31,7,56,40,41,42],problem:[12,13,46,30,24,18,3,52,33,21,36,56,57],x03c0:57,"int":33,imagedir:26,dure:[12,39,14,32,18,20,43,23,31,55,28],novemb:13,implement:[10,0,12,13,15,16,58,33,20,24,43,56,40,36,42,57],nolimit:33,inf:33,rightleftharpoon:33,probabl:[1,30,20,24,56,41],oplu:33,helpurl:6,definecolor:[33,12],immateri:50,percent:[22,39,28],detail:[0,4,5,6,7,11,12,13,30,15,17,18,20,21,22,23,28,29,14,31,33,47,35,37,38,39,9,41,44,36,46,50,51,52,53,56,57],arctan:33,book:48,futur:[0,3,19,20,53,56,31,55],branch:[41,46],varieti:57,removeaft:5,repeat:[46,1],star:[33,12],liter:[4,33],varupsilon:33,"class":[42,44,12,45,14,16,17,33,18,4,35,43,23,55,40,26,57,28,37],thicksim:33,msgroup:36,stai:[56,41],sphinx:1,scientif:48,reliabl:[13,12,41,2,56],rule:[12,50,33,5,23,8],mathjax_mathml:2,portion:[57,39,28,52],eot:[12,46],balancebrac:[4,12]},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","The MathMenu extension","Installing MathJax in WordPress","The MathML input processor","Using MathJax in Movable Type","The MathJax.HTML Object","MathJax Documentation","What’s New in MathJax v2.0","Migrating from MathJax v1.0 to v1.1","The MathJax.Callback Class","Common Configurations","The MathJax API","The MathJax.Callback.Queue Class","What’s New in MathJax v1.1","The MathJax.Message Object","Using Signals","Getting Started","The NativeMML output processor","The Core Configuration Options","Using Callbacks","What is MathJax?","The MathJax.OutputJax Class","The TeX input processor","The SVG output processor","The jsMath2jax Preprocessor","MathJax AsciiMath Support","The MathJax.Hub Object","The MathJax Startup Sequence","MathJax TeX and LaTeX Support","The AsciiMath input processor","The asciimath2jax Preprocessor","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 MathEvents extension","Modifying Math on the Page","Synchronizing your code with MathJax","Configuration Objects","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","options/MathMenu","platforms/wordpress","options/MathML","platforms/movable-type","api/html","index","whats-new-2.0","upgrade","api/callback","config-files","api/index","api/queue","whats-new-1.1","api/message","signals","start","options/NativeMML","options/hub","callbacks","mathjax","api/outputjax","options/TeX","options/SVG","options/jsMath2jax","asciimath","api/hub","startup","tex","options/AsciiMath","options/asciimath2jax","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/MathEvents","typeset","synchronize","options/index","api/elementjax","output","model","options/MMLorHTML","CSS-styles"]})
+\ No newline at end of file
diff --git a/docs/html/start.html b/docs/html/start.html
@@ -52,12 +52,13 @@
<div class="section" id="getting-started">
<span id="id1"></span><h1>Getting Started<a class="headerlink" href="#getting-started" title="Permalink to this headline">¶</a></h1>
<p>MathJax allows you to include mathematics in your web pages, either
-using TeX and LaTeX notation, MathML, or AsciiMath notation, and you
-can even use all three in the same document.</p>
+using LaTeX, MathML, or AsciiMath notation, and the mathematics
+will be processed using javascript to produce HTML, SVG or MathML
+equations for viewing in any modern browser.</p>
<p>There are two ways to access MathJax: the easiest way is to use the
copy of MathJax available from our distributed network service at
<tt class="docutils literal"><span class="pre">cdn.mathjax.org</span></tt>, but you can also download and install a copy of
-MathJax on your own server, or use it locally on your own hard disk
+MathJax on your own server, or use it locally on your hard disk
(with no need for network access). All three of these are described
below, with links to more detailed explanations. This page gives the
quickest and easiest ways to get MathJax up and running on your web
@@ -129,14 +130,14 @@ it.</li>
</ol>
<div class="section" id="obtaining-and-installing-mathjax">
<h3>Obtaining and Installing MathJax<a class="headerlink" href="#obtaining-and-installing-mathjax" title="Permalink to this headline">¶</a></h3>
-<p>The easiest way to set up MathJax is to obtain the v1.1 archive from
+<p>The easiest way to set up MathJax is to obtain the v2.0 archive from
the <a class="reference external" href="http://www.mathjax.org/download/">MathJax download page</a> (you
should obtain a file named something like
-<tt class="docutils literal"><span class="pre">mathjax-MathJax-v1.1-X-XXXXXXXX.zip</span></tt>, where the X’s are
-random-looking letters and numbers). This archive includes both the
-MathJax code and the MathJax webfonts, so it is the only file you
-need. Note that this is different from v1.0 and earlier releases,
-which had the fonts separate from the rest of the code.</p>
+<tt class="docutils literal"><span class="pre">mathjax-MathJax-v2.0-X-XXXXXXXX.zip</span></tt> where the X’s are random
+looking numbers and letters). This archive includes both the MathJax
+code and the MathJax webfonts, so it is the only file you need. Note
+that this is different from v1.0 and earlier releases, which had the
+fonts separate from the rest of the code.</p>
<p>Unpack the archive and place the resulting MathJax folder onto your
web server at a convenient location where you can include it into your
web pages. For example, making <tt class="docutils literal"><span class="pre">MathJax</span></tt> a top-level directory on
diff --git a/docs/html/tex.html b/docs/html/tex.html
@@ -277,7 +277,8 @@ Configuration File with the CDN</em></a> for details.</p>
<div class="section" id="autmatic-equation-numering">
<span id="tex-eq-numbers"></span><h2>Autmatic Equation Numering<a class="headerlink" href="#autmatic-equation-numering" title="Permalink to this headline">¶</a></h2>
<p>New in MathJax v2.0 is the ability to have equations be numbered
-automatically. This is off by default, so that pages don’t change
+automatically. This functionality is turned off by default, so
+that pages don’t change
when you update from v1.1 to v2.0, but it is easy to configure MathJax
to produce automatic equation numbers by adding:</p>
<div class="highlight-html"><div class="highlight"><pre><span class="nt"><script </span><span class="na">type=</span><span class="s">"text/x-mathjax-config"</span><span class="nt">></span>
diff --git a/docs/source/output.rst b/docs/source/output.rst
@@ -45,22 +45,27 @@ more comparable to other browsers. The HTML-CSS output uses web-based
fonts so that users don't have to have math fonts installed on their
computers, which introduces some printing issues in certain browsers.
-The **SVG output processor** is new in MathJax version 2.0, and it uses
-`Scalable Vector Graphics` to render the mathematics on the page. SVG
-is supported in all the major browsers and most mobile devices; note,
-however, that Internet Explorer prior to IE9 does not support SVG, and
-IE9 only does in "IE9 standards mode", not its emulation modes for
-earlier versions. The SVG output mode is high quality and slightly
-faster than HTML-CSS, and it does not suffer from some of the
+The **SVG output processor** is new in MathJax version 2.0, and it
+uses `Scalable Vector Graphics` to render the mathematics on the page.
+SVG is supported in all the major browsers and most mobile devices;
+note, however, that Internet Explorer prior to IE9 does not support
+SVG, and IE9 only does in "IE9 standards mode", not its emulation
+modes for earlier versions. The SVG output mode is high quality and
+slightly faster than HTML-CSS, and it does not suffer from some of the
font-related issues that HTML-CSS does, so prints well in all
browsers. This format also works well in some ebook readers (e.g.,
-iBooks). The disadvantage of this mode is that it does not take
-advantage of STIX fonts, and so only has access to the characters in
-the web-based fonts, and it variable-width tables become fixed size
-once they are typeset, and don't rescale if the window size changes
-(for example). Since equation numbers are handled through
+iBooks). The disadvantages of this mode are the following: first,
+Internet Explorer only supports SVG in IE9 and later versions (and
+then only in IE9 standards mode or above), and some versions of the
+Android Internet browser don't have SVG enabled. Second, it does not
+take advantage of STIX fonts, and so only has access to the characters
+in the web-based fonts, and third, its variable-width tables become
+fixed size once they are typeset, and don't rescale if the window size
+changes (for example). Since equation numbers are handled through
variable-width tables, that means equation numbers may not stay at the
-edge of the window if it is resized.
+edge of the window if it is resized. For these reasons it is probably
+best not to force the use of SVG output unless you have some control
+over the browsers that are used to view your documents.
The **NativeMML output processor** uses the browser's internal MathML
support (if any) to render the mathematics. Currently, Firefox has
diff --git a/docs/source/start.rst b/docs/source/start.rst
@@ -108,10 +108,12 @@ Obtaining and Installing MathJax
The easiest way to set up MathJax is to obtain the v2.0 archive from
the `MathJax download page <http://www.mathjax.org/download/>`_ (you
-should obtain a file named something like ``mathjax-MathJax-v2.0?.zip``).
-This archive includes both the MathJax code and the MathJax webfonts,
-so it is the only file you need. Note that this is different from v1.0
-and earlier releases, which had the fonts separate from the rest of the code.
+should obtain a file named something like
+``mathjax-MathJax-v2.0-X-XXXXXXXX.zip`` where the X's are random
+looking numbers and letters). This archive includes both the MathJax
+code and the MathJax webfonts, so it is the only file you need. Note
+that this is different from v1.0 and earlier releases, which had the
+fonts separate from the rest of the code.
Unpack the archive and place the resulting MathJax folder onto your
web server at a convenient location where you can include it into your