diff --git a/docs/html/_sources/output.txt b/docs/html/_sources/output.txt
index 5acf5fcae..8c1d37c67 100644
--- a/docs/html/_sources/output.txt
+++ b/docs/html/_sources/output.txt
@@ -150,11 +150,49 @@ NativeMML output processor, you are making a trade-off: gaining speed
 at the expense of quality and reliability, a decision that should not
 be taken lightly.
 
+.. _automatic-linebreaking:
+
+Automatic Line Breaking
+=======================
+
+The HTML-CSS and SVG output processors implement (most of) the MathML3
+automatic line-breaking specification.  (The NativeMML output
+processor relies on the browser's native MathML support to handle line
+breaking when it is used.)  Since line-breaking takes extra processing
+and so can slow down the mathematical output, it is off by default,
+but you can enable it by adding
+
+.. code-block:: html
+
+    <script type="text/x-mathjax-config">
+    MathJax.Hub.Config({
+      "HTML-CSS": { linebreaks: { automatic: true } },
+             SVG: { linebreaks: { automatic: true } }
+    });
+    </script>
+
+to your page just before the ``<script>`` tag that loads
+``MathJax.js`` itself.
+
+Note that line breaking only applies to displayed equations, not
+in-line equations (unless the in-line euqation is itself longer than a
+line), and that the line-breaks are only computed once when the
+equation is initially typeset, and do not change if the user changes
+the window size, or if the container changes size for some other
+reason.
+
+You can control what width is used to determine where the line breaks
+shoud occur using the ``container`` parameter of the ``linebreaks``
+block.  By default it is the width of the containing element, but you
+can make it a fixed width, or make it a percentage of the container.
+See the :ref:`HTML-CSS configuration <configure-HTML-CSS>` or
+:ref:`SVG configuration <configure-SVG>` pages for more details.
+
 
 .. _html-css-with-ie8:
 
-HTML-CSS with IE8 and IE9
-=========================
+HTML-CSS with IE
+================
 
 The performance of MathJax in Internet Explorer 8 and 9 has been
 substantially improved in version 2.0.  The HTML-CSS output processing
diff --git a/docs/html/output.html b/docs/html/output.html
index 3311d2f87..259b7d6aa 100644
--- a/docs/html/output.html
+++ b/docs/html/output.html
@@ -177,8 +177,39 @@ NativeMML output processor, you are making a trade-off: gaining speed
 at the expense of quality and reliability, a decision that should not
 be taken lightly.</p>
 </div>
-<div class="section" id="html-css-with-ie8-and-ie9">
-<span id="html-css-with-ie8"></span><h2>HTML-CSS with IE8 and IE9<a class="headerlink" href="#html-css-with-ie8-and-ie9" title="Permalink to this headline">¶</a></h2>
+<div class="section" id="automatic-line-breaking">
+<span id="automatic-linebreaking"></span><h2>Automatic Line Breaking<a class="headerlink" href="#automatic-line-breaking" title="Permalink to this headline">¶</a></h2>
+<p>The HTML-CSS and SVG output processors implement (most of) the MathML3
+automatic line-breaking specification.  (The NativeMML output
+processor relies on the browser&#8217;s native MathML support to handle line
+breaking when it is used.)  Since line-breaking takes extra processing
+and so can slow down the mathematical output, it is off by default,
+but you can enable it by adding</p>
+<div class="highlight-html"><div class="highlight"><pre><span class="nt">&lt;script </span><span class="na">type=</span><span class="s">&quot;text/x-mathjax-config&quot;</span><span class="nt">&gt;</span>
+<span class="nx">MathJax</span><span class="p">.</span><span class="nx">Hub</span><span class="p">.</span><span class="nx">Config</span><span class="p">({</span>
+  <span class="s2">&quot;HTML-CSS&quot;</span><span class="o">:</span> <span class="p">{</span> <span class="nx">linebreaks</span><span class="o">:</span> <span class="p">{</span> <span class="nx">automatic</span><span class="o">:</span> <span class="kc">true</span> <span class="p">}</span> <span class="p">},</span>
+         <span class="nx">SVG</span><span class="o">:</span> <span class="p">{</span> <span class="nx">linebreaks</span><span class="o">:</span> <span class="p">{</span> <span class="nx">automatic</span><span class="o">:</span> <span class="kc">true</span> <span class="p">}</span> <span class="p">}</span>
+<span class="p">});</span>
+<span class="nt">&lt;/script&gt;</span>
+</pre></div>
+</div>
+<p>to your page just before the <tt class="docutils literal"><span class="pre">&lt;script&gt;</span></tt> tag that loads
+<tt class="docutils literal"><span class="pre">MathJax.js</span></tt> itself.</p>
+<p>Note that line breaking only applies to displayed equations, not
+in-line equations (unless the in-line euqation is itself longer than a
+line), and that the line-breaks are only computed once when the
+equation is initially typeset, and do not change if the user changes
+the window size, or if the container changes size for some other
+reason.</p>
+<p>You can control what width is used to determine where the line breaks
+shoud occur using the <tt class="docutils literal"><span class="pre">container</span></tt> parameter of the <tt class="docutils literal"><span class="pre">linebreaks</span></tt>
+block.  By default it is the width of the containing element, but you
+can make it a fixed width, or make it a percentage of the container.
+See the <a class="reference internal" href="options/HTML-CSS.html#configure-html-css"><em>HTML-CSS configuration</em></a> or
+<a class="reference internal" href="options/SVG.html#configure-svg"><em>SVG configuration</em></a> pages for more details.</p>
+</div>
+<div class="section" id="html-css-with-ie">
+<span id="html-css-with-ie8"></span><h2>HTML-CSS with IE<a class="headerlink" href="#html-css-with-ie" title="Permalink to this headline">¶</a></h2>
 <p>The performance of MathJax in Internet Explorer 8 and 9 has been
 substantially improved in version 2.0.  The HTML-CSS output processing
 was redesigned to avoid the page reflows that were the main source of
@@ -235,7 +266,8 @@ other options of the HTML-CSS output jax.</p>
   <ul>
 <li><a class="reference internal" href="#">MathJax Output Formats</a><ul>
 <li><a class="reference internal" href="#automatic-selection-of-the-output-processor">Automatic Selection of the Output Processor</a></li>
-<li><a class="reference internal" href="#html-css-with-ie8-and-ie9">HTML-CSS with IE8 and IE9</a></li>
+<li><a class="reference internal" href="#automatic-line-breaking">Automatic Line Breaking</a></li>
+<li><a class="reference internal" href="#html-css-with-ie">HTML-CSS with IE</a></li>
 <li><a class="reference internal" href="#html-css-extensions">HTML-CSS Extensions</a></li>
 </ul>
 </li>
diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js
index 5dd908363..038a781d5 100644
--- a/docs/html/searchindex.js
+++ b/docs/html/searchindex.js
@@ -1 +1 @@
-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],loadComplete:[0,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],isJax:[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],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],fileURL:[0,0,1],wait:[17,0,1],Load:[0,0,1],Set:[19,0,1],getJaxFromMath:[26,0,1],LoadHook:[0,0,1],loadError:[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],Text:[55,0,1],MessageHook:[44,0,1],filterText:[19,0,1],isa:[42,0,1],Require:[0,0,1]}},terms:{linebreak:[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,49,50,53,4,5,35,36,23,20,40,41,26,59],ngeq:33,even:[0,2,33,12,41,30,15,17,20,21,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,26,54,14,40,31,42,44,46,55,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],lessapprox:33,never:[0,41,46,43],here:[10,44,45,39,14,24,55,50,2,33,20,21,22,23,38,31,52,43],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,17,21,22,23,24,55,27,28,29,14,31,33,34,35,37,38,39,41,42,15,46,47,49,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,4,2,15,41,7,9,10,12,13,20,21,43,23,26,37,40,31,33,36,55,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,22,23,27,28,29,30,31,34,35,37,38,39,41,44,46,47,49,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,27,23,28,30,31,32,33,24,35,41,42,43,44,36,39,48,49,50,51,52,53,56,57],wrong:[33,12,36],unwis:56,parallel:[33,32,50,18],averag:57,alignedat:33,attempt:[0,12,36,6],third:[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,49,50,36,2,33,19,4,21,35,27,24,56,57,41,52,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,22,23,24,27,28,29,14,31,32,33,34,35,38,39,41,43,44,46,47,48,49,50,51,52,53,54,56,57,58,59],precapprox:33,safe:[10,21,52],rectangl:48,"break":[12,39,50,18,33,53,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,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,22,23,26,27,28,14,24,38,40,31,42,43,44,45,39,48,49,50,51,52,53,54,55,57,59],mmtoken:12,gzip:18,regular:[4,21,35,23],letter:[21,46],breakpoint: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,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,27,23,24,25,26,28,29,30,31,32,34,35,37,38,39,40,41,43,22,36,46,47,49,33,54,56,57,58],apach:[12,46],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,57,41],blacktriangleright:33,extend:[25,57,30],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,41],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,49,50,33,5,43,24,53,56,57],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,49,33,15,21,27,23,55,25,56,40,36,26,57],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:[12,13,2,20,21,41],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:[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,49,33,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],jipsen:30,encod:[33,30],floar:56,rightsquigarrow:33,down:[46,9,26,23],shortparallel:33,wrap:42,stackrel:33,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,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,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,6,52,53,55,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:[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:[12,39,49,6,33,24,22,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,55,33,6,19,4,21,35,27,23,24,7,39,41,52,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,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],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,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],"float":[56,12],myinputjax:43,initi:[0,12,13,30,53,31,50,32,6,33,4,21,35,45,23,20,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,27,23,26,28,14,31,2,24,35,39,40,41,42,43,44,36,46,49,33,54,55,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,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],startuphook:[20,33,12,31],view:[12,36,46,16,2,15,21,37,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,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,26,30,24,38,40,31,42,44,55,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,27,23,24,25,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,22,45,46,47,48,49,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,55,52,20,56,26,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,33,5,7,12,41,21,49,23,55,27,28,30,44,24,35,39,31,43,4,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,49,33,4,35,27,20,40,31,26,59,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,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:[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,29,49],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,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],popul:32,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,26,14,33,24,40,31,43,44,36,46,55,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,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,49,18,20,21,36,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,49,33,2,4,21,35,27,38,20,56,31,41,58,59],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,49,36,58,56],refer:[42,11,12,31,46,15,21,32,33,2,52,20,5,27,24,53,40,41,44,43,55],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,27,23,24,25,28,29,30,31,33,34,35,37,38,39,9,41,22,36,46,47,48,49,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,26,14,24,40,42,44,45,46,48,55,50,6,53,57,59],certain:[20,44,53],leftrightsquigarrow:33,risingdotseq:33,varliminf:33,file:[0,1,2,15,5,7,8,9,12,13,14,17,18,19,20,21,27,23,26,28,30,44,32,33,34,31,37,39,40,41,43,22,45,46,24,48,49,50,53,54,55,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:12,valid:[24,13],getscript:[10,12],you:[1,2,3,4,5,7,8,12,13,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,37,39,9,41,42,43,15,36,46,47,48,49,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,43,23,26,29,14,31,2,33,47,35,41,44,45,24,48,49,50,52,53,59],abil:[12,13,46,48,18,33,56,57],follow:[32,15,12,13,16,18,20,21,27,26,28,14,24,39,40,41,42,43,33,46,49,59,52,54,57],alt:[12,2,23],disk:[15,21,41,46],multlinewidth:27,scr:33,articl:48,matrix:33,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,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,19,20,24,31,43,52,53,40,41,26,55],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,22,23,24,26,27,28,29,14,34,35,38,31,42,33,36,39,47,49,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],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,49,50,33,4,21,27,23,41,59,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,22,23,25,28,14,33,24,37,39,40,31,42,43,44,46,48,49,50,52,53,56,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:[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],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,33,5,12,41,19,20,21,27,23,26,30,44,24,35,36,40,31,4,45,46,55,50,6,52,56,57],callback:[0,12,45,14,44,16,17,50,32,52,20,24,48,53,40,31,26,55],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],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,19,20,24,27,52,53,40,31,26,43,55],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,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,27,23,26,28,14,34,39,40,31,43,33,45,46,24,49,50,52,55,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],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,41,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,41,7,8,11,12,13,21,22,23,27,28,29,30,34,35,37,38,31,42,43,15,39,47,49,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,49,23,25,26,27,28,39,41,46,48,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,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,49,33,36,15,5,31,43,41],set:[0,2,4,5,6,8,10,12,13,30,15,18,19,20,21,22,23,24,55,27,28,29,14,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],lion:12,barb:33,sec:33,arg:33,ams_hml:41,disadvantag:56,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,searpat:4,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,49,47,48,18,2,4,5,35,29,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,29,49],biguplu:33,itself:[32,33,41,12,13,17,20,23,55,54,14,45,40,31,42,44,36,46,26,50,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,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,often:[12,39,30,59,33,21,57,28],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],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:12,mimetyp:[55,40,43,26],svg:[12,48,18,6,15,54,56,57,41,28],supseteqq:33,liminf:33,depth:[33,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,annot:12,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,41,28],appendchild:[10,2],turn:[10,44,12,13,15,14,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,49,6,33,21,36,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,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,49,50,2,33,4,21,35,29,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,aperson:24,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,27,23,26,54,30,32,47,35,37,40,31,33,36,46,49,52,55,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,15,5,10,12,41,18,20,21,27,23,26,28,44,33,35,40,31,42,4,45,39,49,50,51,52,53,55,56,57,59],reredn:55,newextarrow:33,allow:[1,4,2,15,6,12,13,18,19,20,21,27,23,25,26,28,33,24,38,39,41,42,44,46,48,49,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,sourceel:[20,55,26,52],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,reflow:[26,12,18,56],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,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],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],close:[12,36,21,2,18,3,15,5,54],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,27,23,26,28,29,30,31,32,33,47,35,36,37,38,39,40,41,42,44,45,46,24,49,50,52,54,55,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,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,9,12,13,30,15,17,21,27,23,26,14,33,24,35,37,40,31,43,44,36,46,48,49,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,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],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:41,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: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,27,23,24,26,28,29,30,44,31,33,34,35,36,37,38,39,40,41,42,22,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,40,41,26,57],cfrac:33,press:[23,52],somewher:41,tick:[33,21,35,30],recurs:[31,18],string:[0,14,44,49,33,19,4,35,27,23,20,31,55,59],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,49,18,33,36,23,56,57],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,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,41],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:[20,24,41,30,1],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&#8217;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&#8217;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
+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:[30,0,1],getScript:[10,0,1],Interest:[44,0,1],preProcess:[25,0,1],Translate:[43,0,1],Config:[30,0,1],addElement:[10,0,1],Styles:[0,0,1],ExecuteHook:[44,0,1],loadTimeout:[0,0,1],Resume:[17,0,1],Update:[30,0,1],preTranslate:[25,0,1],fileURL:[0,0,1],formatError:[30,0,1],call:[17,0,1],postTranslate:[25,0,1],getJaxByInputType:[30,0,1],PreProcess:[30,0,1],Post:[44,0,1],has:[42,0,1],Text:[55,0,1],Clear:[19,0,1],Insert:[30,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:[25,0,1],Remove:[19,0,1],Element:[10,0,1],Queue:[14,0,1],NoInterest:[44,0,1],Rerender:[30,0,1],getJaxByType:[30,0,1],Push:[17,0,1],Typeset:[30,0,1],loadComplete:[0,0,1],wait:[17,0,1],Load:[0,0,1],loadError:[0,0,1],Set:[19,0,1],getJaxFromMath:[25,0,1],LoadHook:[0,0,1],Process:[30,0,1],Hooks:[14,0,1],Reprocess:[30,0,1],Startup:[43,0,1],Init:[42,0,1],Suspend:[17,0,1],SourceElement:[55,0,1],getJaxFor:[30,0,1],can:[42,0,1],setRenderer:[30,0,1],MessageHook:[44,0,1],isJax:[30,0,1],filterText:[19,0,1],isa:[42,0,1],Require:[0,0,1]}},terms:{linebreak:[56,12,39,27],lvertneqq:33,lspace:33,reprocess:[30,55,52],mathjax_msie_fram:19,yellow:33,four:[33,59,13],prefix:[10,21,25,18],asymp:33,blacktriangledown:33,webfont:[5,39,21],whose:[10,30,52,4,47,35,41,25],biggr:33,under:[33,36,46],preprocess:[31,52,43,57,30,25],asciimath2jax:[29,15,21,35,57,54],worth:41,digit:18,gimel:33,everi:[33,12,41,18,20,26,30],risk:21,mskip:33,arcco:33,govern:[13,41,21],dotplu:33,affect:[12,13,46,18,33,30,54],eqnarrai:33,cmd:23,bigodot:33,c6h5:33,ominu:33,fontweight:12,vector:[48,56,57],red:[33,21,49],categori:59,nparallel:33,showcontext:6,nsubseteqq:33,direct:[39,5,13,46],thinspac:33,second:[0,12,13,46,14,47,49,50,53,4,5,35,36,23,20,40,41,25,59],ngeq:33,even:[0,2,33,12,41,29,15,17,20,21,49,24,27,14,47,30,44,36,39,59,52,53,56,57],hide:52,prejax:[57,23],neg:[33,12],menclos:[33,12],"new":[31,3,33,41,10,11,12,13,18,19,20,21,26,24,25,54,14,40,30,42,44,46,55,59,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,29,18,21,23,25,27,14,32,39,30,42,46,47,59,52],lessapprox:33,never:[0,41,46,43],here:[10,44,45,39,59,14,47,33,2,52,20,21,22,23,38,30,55,43],updiagonalstrik:33,met:31,lneqq:33,formaturl:26,path:[15,0,41,27,21],noundefin:[15,21,12,33],interpret:[4,21,33,46,29],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,27],highli:24,describ:[10,33,13,46,14,21,48,50,31,52,15,5,30,49,47,57,41,25],would:[4,5,6,8,10,12,13,14,15,17,21,26,23,55,27,28,29,30,32,33,34,35,37,38,39,41,42,22,46,47,49,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,26,23,25,27,28,14,44,30,32,34,35,38,39,40,41,42,43,22,46,47,48,55,33,51,52,53,54,57,58,59],typo:12,recommend:[21,12,46,57,56],vcenter:33,preview:[12,28,39,4,34,35,23,57,27],type:[0,1,4,2,15,41,7,9,10,12,13,20,21,43,23,25,37,40,30,33,36,55,59,52,53,56,57],until:[0,28,44,30,59,4,34,35,43,23,47,20,41],notin:33,displaymath:[4,41],relat:[0,18,56],notic:[33,29],warn:[0,12,13,23,5],mathev:[54,25,38,51],eqslantless:33,hold:[0,12,51,49,23,38,57,30],unpack:[21,46],must:[0,31,4,5,41,13,17,19,21,26,23,27,29,33,35,39,30,44,36,46,48,50,51,53,56],fbox:[33,18],join:[20,33],room:26,setup:[24,21,12,36],work:[10,11,12,13,46,15,29,47,18,33,2,3,52,20,21,36,37,53,24,56,42],cc0000:[50,23],tag_nam:46,root:[0,18,31,19,33,41],overrid:[12,25,33,5,43,40,42],mathmenu:[12,45,50,6,15,23,54],give:[44,12,30,39,21,48,49,50,33,20,5,22,54,41,26,27],cirit:41,indic:[0,30,46,29,44,17,33,31,20,21,43,23,47,55,40,41,25,57],impair:24,texhint:23,want:[3,4,13,29,16,19,20,21,22,23,25,27,14,47,35,39,9,41,42,15,36,46,33,52,56,58,59],david:29,setminu:33,end:[0,12,15,29,1,56,31,33,18,3,4,36,59,7,20,9,41,58,57],quot:[39,18,4,35,23,27],hom:33,heartsuit:33,how:[0,1,2,3,4,5,6,7,13,14,15,17,19,21,26,23,27,28,29,44,30,34,35,37,38,39,41,22,46,32,49,33,51,52,53,57],disappear:[4,34,12,28,35],answer:[3,52],verifi:[21,46,3],config:[1,2,4,5,6,7,8,9,12,13,15,19,20,21,26,23,25,27,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,59,18,52,33,30,23,39,41,55,27],showrender:6,recogn:[21,12],lai:[56,57],diagdown:33,after:[0,2,33,12,41,17,19,20,21,43,23,54,14,47,39,30,44,46,59,6,52,53,27,57,58],befor:[0,1,2,3,4,7,12,13,14,17,19,20,21,26,23,27,29,30,31,47,35,41,42,43,44,36,39,48,49,33,51,52,53,56,57,59],wrong:[33,12,36],startuphook:[20,33,12,30],parallel:[33,31,59,18],averag:57,alignedat:33,attempt:[0,12,36,6],third:[59,36],leftarrow:33,receiv:[44,13,46,47,42,33,20,21,43,53,41,25],greasekit:2,maintain:[12,13,53,3,20,47,23,25],environ:[33,12,3,4,21,26],enter:[36,32,52,33,21,57,41],textnod:10,order:[31,4,5,41,12,13,17,19,21,23,27,28,14,34,35,39,30,42,44,46,47,48,33,56,57,59],oper:[0,4,5,6,8,12,17,18,19,20,22,23,24,25,26,27,28,32,34,35,38,39,40,44,45,46,47,48,59,51,52,56,58],approxeq:33,over:[10,0,12,39,33,18,51,52,15,21,23,38,56,57,41,6,27],fall:[46,29,21,59,33,5],becaus:[20,13,39,29,44,49,33,36,2,19,4,21,35,26,47,56,57,41,52,59,27],boxtim:33,suspend:[20,17,59,44],textrm:33,appar:59,afil:47,flexibl:[49,59,13],vari:56,smallint:33,img:[28,50,2,4,34,35,49],fix:[12,13,46,18,56,39,41,27],preferredfont:39,better:[12,29,32,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,59,33,36,42],moveleft:33,substack:33,them:[0,15,5,41,10,12,13,29,17,18,20,21,26,14,44,33,47,35,30,4,36,46,32,50,57,59],thei:[0,2,3,4,5,6,8,12,13,15,16,17,18,19,20,21,26,23,27,28,14,44,30,31,32,33,34,35,38,39,41,43,22,46,47,48,49,50,51,52,53,54,56,57,58,59],precapprox:33,safe:[10,21,52],rectangl:48,"break":[12,39,59,18,33,53,56,27],mtext:[12,39,18,33,21,27],wedg:33,widetild:[33,12],choic:[56,12,30,7],dbinom:33,leftharpoondown:33,accommod:12,timeout:[0,12,18,14],each:[20,12,30,46,14,29,44,33,31,19,4,21,35,15,53,39,57,41,52,59,27],debug:19,went:33,side:[12,19,33,21,26,23,7],mean:[1,4,31,33,5,12,13,16,20,23,24,27,28,29,44,2,34,35,41,15,39,47,52,53,56],leqq:33,createel:2,resum:[17,59],represetn:33,leqalignno:33,mathopen:33,looparrowleft:33,expres:33,network:[12,13,46,18,15,21,9,41],goe:[33,53,59],iint:33,newli:[10,20,42],crucial:46,predefin:33,content:[1,4,31,15,41,7,9,10,12,13,18,21,49,23,35,40,30,42,33,36,48,59,52,56,57],prefilt:12,reader:[33,12,39,18,15,24,56,27],forth:45,impract:46,multilin:33,written:[21,7],situat:[12,18,52,21,56,41],free:[55,3],standard:[15,12,46,48,50,33,20,21,24,56,57,41],autonumb:[33,26],reconfigur:13,lneq:33,angl:33,jsmath2jax:[28,18,37,54],filter:[12,14],isn:[12,52,20,43,56,55],mtabl:[15,12],isa:42,subtl:52,onto:[48,21,59,30,52],attribtu:21,mathbb:33,rang:[21,57],mathbf:33,render:[15,12,36,31,18,6,4,21,23,24,56,57,30,58,27,37],accent:12,independ:41,yourcolleg:46,restrict:[33,46,23],hook:[20,0,12,14,44],unlik:[24,33,41,43],alreadi:[0,12,14,52,31,33,2,3,19,20,47,53,41,42,59],subtleti:33,primari:[56,13],tooltop:[39,27],top:[12,45,46,33,21,56,41,25],sometim:[21,41,46],underlin:[33,18],master:53,too:[33,12,39,29,2,18,4,21,35,22,56,27],similarli:[0,30,46],newenviron:33,john:47,listen:[20,44,30,14],thickapprox:[33,12],namespac:[12,14,2,18,52,33,21],tool:[59,46],tagind:26,embellish:18,gtrless:33,compressor:18,somewhat:[53,23,56],technic:[48,12],past:[44,12,13,18,20,53,24,56],filesmatch:[12,46],provid:[0,1,2,33,10,12,17,19,20,21,49,24,14,47,30,42,44,36,59,52,53,57],eqalignno:33,tree:[21,49],iota:33,project:[48,41,3],matter:[20,37],mathtt:33,ldotp:33,modern:[24,5,36,11],mind:[33,21,41,29,1],increment:17,seem:[47,12,36],rightrightarrow:33,ldot:[33,12],ngeqq:33,latter:[33,16,20,32,49,23,57,41,54],domcontentload:[31,12,2],curvearrowleft:33,blue:38,though:[12,29,14,33,53,49,23,57],object:[0,31,33,5,6,10,11,12,16,17,19,20,22,23,25,26,27,14,47,38,40,30,42,43,44,45,39,48,49,50,51,52,53,54,55,57,59],mmtoken:12,gzip:18,regular:[4,21,35,23],letter:[21,46],breakpoint:12,phase:12,grave:33,don:[33,12,13,47,18,59,2,32,52,20,5,30,36,56,57,41],dom:[10,12,55,59,52,20,53,43,23,40,30,25],doe:[33,12,30,46,14,29,58,55,2,52,20,21,36,23,24,56,40,41,25,57],declar:[12,36,39,50,51,33,5,22,6,38,27],place:[0,12,46,59,21,42,33,3,52,20,5,44,22,23,39,41,25,26,27,37],tfrac:33,unchang:[33,13,58,52],section:[2,4,5,6,41,8,12,13,18,22,23,26,27,28,29,32,34,35,37,38,9,30,15,36,39,47,33,51,54,56,58],came:46,delaystartupuntil:[30,41,31,23],random:[21,46],lnapprox:33,syntax:[48,42,33,18,29],mediawiki:1,isopera:30,outerhtml:18,shownam:47,asynchon:52,involv:[33,53,57,41,3],consolid:24,layout:[39,27],just:[44,12,30,46,14,1,47,50,33,20,21,36,23,15,7,24,56,57,41,59],mathchoic:[33,12],ismsi:[30,31],menu:[31,15,6,7,11,12,18,22,23,25,27,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,26,23,24,25,27,28,29,30,31,32,34,35,37,38,39,40,41,43,22,36,46,47,49,33,54,56,57,58],apach:[12,46],reflow:[25,12,18,56],theme:[41,1,7],rich:[24,48],folder:[39,21,46],"0000f0":38,stop:[33,30,39,27],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,29],underbrac:33,dashrightarrow:33,scriptscriptstyl:33,precneqq:33,result:[33,41,12,13,29,21,22,23,55,27,14,47,40,30,36,39,48,25,59,52,56,57],respons:[44,12,14,18,33,40],fail:[0,12,18,47,43,56,54],hash:[12,31,23],best:[0,13,46,29,59,56,57,41],awar:[33,0,59,36,29],subarrai:33,varinjlim:33,wikipedia:[48,2],circledcirc:33,gneqq:33,drawn:[39,27],awai:[33,41,46],approach:[47,57,1,52],attribut:[10,12,36,21,50,18,33,34,49,57,41],blacktriangleright:33,extend:[24,57,29],shoud:56,extens:[0,31,4,5,6,41,12,13,18,20,21,26,23,54,28,33,34,35,37,38,30,43,15,45,48,50,51,52,56,59],html5:[12,13,18,21,36,56,57,41],toler:2,intop:33,protect:33,accident:12,expos:29,cow:42,howev:[33,13,46,47,31,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,24,55,27,29,31,35,45,37,39,30,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,25,12,18,6],wider:3,summat:32,sqsupset:33,speak:[16,57],issol:33,chrome:[39,2,18,56,30,58],three:[36,46,14,5,49,59,33,47,43,53,56,57,21],been:[0,2,3,4,12,13,17,19,20,21,22,23,25,14,31,47,35,37,39,40,41,44,46,59,52,53,56,58],trigger:[15,12,25,23,38],interest:[44,48,33,3,20,53],basic:11,tini:33,quickli:[24,41,3],underrightarrow:33,rather:[0,2,4,5,8,12,13,17,18,20,21,26,23,24,55,54,14,31,33,32,35,41,42,43,15,36,46,48,50,6,52,53,56,57,59],regul:59,xxx:33,ani:[0,2,3,4,5,6,8,12,13,15,17,19,20,21,26,23,25,27,28,14,44,30,31,32,34,35,38,39,40,41,42,22,36,46,47,55,33,51,52,53,56,58,59],emploi:56,hskip:33,tanh:33,hat:33,servic:[13,46,18,21,9,41],properti:[10,0,45,42,14,44,17,47,43,55,40,30,25],diamondsuit:33,sourceforg:13,weren:[12,13],dashboard:9,suffici:[29,33,21,26,41,58],anchor:[26,23],"3px":[33,50],succeq:33,lightli:56,nexist:33,retransl:[55,52],need:[0,1,2,3,4,5,7,9,12,13,14,17,18,19,20,21,26,23,24,25,27,29,30,31,33,47,35,39,40,41,42,43,15,36,46,32,48,55,50,52,53,56,57,58,59],cong:[33,12],sever:[0,12,13,46,15,33,52,4,47,35,57,25,59],amout:19,incorrectli:[21,12,13,18],perform:[31,3,33,5,41,12,13,17,18,19,20,26,23,25,27,14,47,40,30,43,44,45,39,48,55,59,52,53,56],suggest:[5,3,21],make:[0,3,4,5,12,13,16,17,18,20,21,22,23,24,25,27,28,30,33,34,35,39,41,42,15,36,46,50,6,52,53,56,57,59],format:[11,12,13,29,48,49,33,15,21,26,23,55,24,56,40,36,25,57],complex:[56,49],split:33,synch:13,lrcorner:33,unsafewindow:2,complet:[0,31,15,41,4,13,17,20,21,43,23,25,14,47,35,30,44,46,48,55,33,52,53,56,59],longmapsto:33,hand:[12,45,2,19,26,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,25],kept:20,thu:[13,14,59,20,47,55],inherit:[39,16,25,55,40,42,27],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,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],idotsint:33,programm:42,everyth:[15,33,30,41,59],settimeout:[47,14],left:[12,45,46,31,19,33,53,26,23,7,56,9,36,54],processclass:[4,12,35],identifi:[10,44,12,29,33,21,57],proccess:[40,25],yen:33,msam10:21,mathbin:33,human:21,coprod:33,yet:[36,17,59,52,20,53],languag:[48,21,33,57,53],noscript:[4,35],onload:[12,45,2,31,47,23,41],errorset:[15,23],easi:[48,33,37],interfer:[21,12,32],had:[12,13,2,20,21,41],myconfig:[20,47],step1:33,els:[33,47,2,52],save:[12,50,7,56,9,41],"0x21c0":33,jsmath:[11,57,37],sanit:19,applic:[24,21,31,1],loadtimeout:0,quirk:12,preserv:47,cho:33,bbox:[33,12],background:[33,50,18,12,38],sqsubset:33,specif:[0,12,45,14,1,44,30,17,59,52,4,47,35,43,48,56,57,41,55],arbitrari:33,manual:5,zoom:[11,12,36,31,18,51,15,23,38,25],nsubseteq:33,leftrightarrow:33,unnecessari:12,underli:56,www:[21,2,46,6],right:[12,36,46,48,17,59,2,19,33,32,26,23,7,56,57,41,54],old:[20,12],simbl:2,deal:21,autobold:[33,12],interv:32,surd:[33,18],percentag:[56,22,39,23,27],intern:[0,12,36,14,29,44,48,17,59,52,33,23,55,56,40,30,25,57],interf:12,successfulli:[0,47],interc:33,dddot:33,bottom:[12,41,7],subclass:[44,45,25,43,55,40,42],circ:33,tracker:[21,3],overcom:53,condit:[0,12,31],getjaxfor:[20,12,30,25],core:[12,39,59,31,33,22,23,38,57,30,54],plu:[15,44,31],bold:[48,49,33,26,54],insecur:21,mathrel:33,colleg:46,repositori:[46,13,18],post:[44,12,39,14,31,3,19,20,53,43,27],"super":[42,12,18],llless:33,obj:10,nwarrow:33,slightli:[33,56,27,7],surround:[12,39,21,22,23,27],unfortun:[21,46],current_theme_templ:1,joomla:1,span:[33,28,4,34,35,49,23,57,25,37],downharpoonright:33,produc:[33,5,12,13,20,21,26,23,24,55,54,14,47,37,40,41,44,39,25,6,52,27,56,57],stretchi:[33,12],"float":[56,12],encod:[33,29],floar:56,rightsquigarrow:33,down:[46,9,25,23,56],shortparallel:33,wrap:42,often:[12,39,29,50,33,21,57,27],nsupseteq:33,git:[21,13,18,46],wai:[1,2,33,13,19,20,21,43,23,27,28,14,44,34,35,41,4,46,47,59,52,56,57],support:[11,12,13,39,29,21,18,33,36,2,3,15,5,31,45,24,56,57,41,58],transform:57,ngtr:33,avail:[0,1,2,15,5,12,13,20,21,23,24,55,27,28,34,35,39,41,42,4,36,46,48,33,6,52,56,57,59],width:[12,36,39,6,33,21,26,56,25,27],reli:[0,13,48,59,2,52,47,56],"30em":[39,27],wordpress:[1,7],editor:7,rell:26,rightthreetim:33,head:[1,2,52,21,7,56,9,41],longdiv:33,eqeref:[],form:[36,39,48,19,33,21,26,23,57,41,55],offer:[13,18,3],forc:[39,12,41,25,56],epsilon:33,hear:[20,44],so4:33,ismobil:30,"true":[4,31,33,41,8,12,13,15,26,23,55,27,14,32,56,40,30,42,44,45,39,6,22],maxmacro:26,reset:[6,14],displayalign:23,maximum:25,tell:[46,52,21,26,56,41],absenc:1,retir:13,featur:[11,12,36,46,58,33,3,52,20,47,38,56,42],rfloor:33,exist:[12,46,14,33,21,39,42,27],ddot:33,backsim:33,triangleq:33,check:[0,13,46,44,19,33,21,47,40,42],when:[0,2,4,5,7,8,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,33,6,52,53,55,56,57,58,59],abovewithdelim:33,role:57,test:[10,11,12,13,46,53,31,2,52,20,21,30,36,56,41,42],tie:[31,25,14],smallsmil:33,node:10,mathel:1,intend:[48,42,23],munderov:[12,57],positiontohash:[12,23],gvertneqq:33,consid:[0,13,33,18,51,4,21,3,56,57,30,55,59],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,26,23,27,14,47,39,30,43,44,46,59,51,52,56,57],push:[14,48,17,59,31,52,47,30],backward:[39,27],"5kb":26,mathrm:33,doteq:33,skip:[4,12,46,35],consum:19,known:[12,59],skin:1,displayind:23,millisecond:[0,39,14,51,19,5,6,30,27],decid:[12,41,6],middl:[33,21,12],depend:[12,14,31,52,47,7,56,41,58],decim:[33,32],readabl:48,nearrow:33,varpi:33,certainli:46,vee:33,decis:56,leftarrowtail:33,succnsim:33,sourc:[11,12,13,46,15,33,2,6,20,36,23,24,56,57,30,55,59],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:[47,12],item:[12,39,49,6,33,47,22,23,25,27],cooki:[10,31,18],div:[10,33,57,37,52],prevent:[33,12,28,39,21,18,6,4,34,35,22,23,41,26,27],outlin:18,slower:[56,39,27],hack:56,sign:[33,13,29,4,21,35,57,41],cost:[33,21,41,42,29],pmb:33,rightarrowtail:33,widehat:[33,12],xandi:42,dotsi:33,dotsm:33,appear:[20,12,45,46,29,47,33,32,19,4,21,35,26,23,52,7,39,41,55,6,27],dotso:33,repli:20,dotsc:33,dotsb:33,current:[0,12,30,46,1,44,42,56,21,7,39,40,41,25,9,27,55],backepsilon:33,ampersand:[33,29],inlinemath:[33,13,2,52,4,21,35,41],defici:36,amalg:33,mathsiz:33,gener:[33,12,30,29,21,58,55,31,15,5,37,47,57,41,25],mfrac:[21,57],explicitli:[33,12,13,29,47,18,4,21,35,23,41,42],modif:[59,41],address:[21,12,46,52],along:[33,48,59,19,20,37,40,25],wait:[0,12,30,46,14,44,48,17,59,18,2,52,20,47,31,23,53,40,41,25],box:[0,12,18,31,33,5,38,25],html_head:1,bracevert:33,shift:23,xtwoheadrightarrow:33,bot:33,queue:[44,45,14,53,16,17,59,31,52,47,48,30],overriden:30,digamma:33,varlimsup:33,commonli:[15,21,48],macintosh:30,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,28,59,52,4,34,35,36,25],marker:[33,29],myid:50,mobil:[12,13,18,30,24,56,41],arrowvert:33,memori:[53,55],bigr:33,visit:21,todai:48,subvers:[21,46],stylesheet:[0,45,14,44,17,31,52,53,23,7,56],handler:[0,45,48,2,31,52,53,23,57,41,25],xtofrom:33,current_skin:1,bigl:33,bigm:33,eqcirc:33,checkout:46,bigg:33,inputjax:[45,16,55,31,33,43,40,30,42],capit:16,peopl:21,bigtriangleup:33,enhanc:[12,18,57],minscaleadjust:[22,39,27],visual:[24,15,12,39,27],templat:[9,41,1,7],hphantom:33,easiest:[20,21,46,14,47],graphic:[48,56,46],prepar:[59,41,25],cap:33,uniqu:50,hline:33,pmatrix:33,whatev:[33,1,29,25,59,52,20,42],cal:[33,12],purpos:[47,12,57],getjaxbytyp:30,downharpoonleft:33,precsim:33,subseteqq:33,varprojlim:33,backslash:[33,26,23],topic:[16,11,41],stroke:27,phrase:[33,21,29],occur:[0,2,12,41,17,19,20,21,43,23,25,14,31,47,30,44,36,46,59,6,52,53,56],eqsim:33,pink:33,alwai:[12,14,16,59,33,47,41],multipl:[33,12,13,59],mpad:12,trianglelefteq:33,write:[44,29,48,59,52,21,24],fourth:59,mathsf:33,tild:33,xhtml:[21,36],map:[57,25],remap:12,max:33,clone:46,spot:[33,29],usabl:46,mac:[30,23],rowspan:36,mai:[0,1,2,3,4,5,41,7,12,13,16,20,21,22,23,25,27,29,47,39,30,42,44,36,46,55,33,52,53,56,57,59],underscor:[33,21],data:[10,0,12,45,46,14,47,42,20,21,43,55,39,40,30,25],grow:[56,12,39,27,1],goal:24,vartheta:33,baso4:33,explicit:[0,39,21,23,41,27],uparrow:33,geramond:33,inform:[0,12,15,1,44,48,33,31,19,20,47,23,40,41,25,57],"switch":[12,13,46,18,33,37,57],preced:[47,41,23],combin:[0,12,13,39,32,33,18,57,15,21,22,56,8,41,58,26,27],gamma:33,tall:12,lnsim:33,approx:33,showmathmath:22,addmmlclass:27,downarrow:33,lsh:33,tex2math:37,still:[44,12,15,39,14,1,48,59,36,51,20,22,23,38,56,41,58],pointer:[12,42],ttf:[12,46],dynam:[0,12,45,11,59,2,52,21,23,53,24,57,41],entiti:[33,36,18,29],snippet:[10,11,28,34,33,3,4,5,35,49,23,30],conjunct:13,group:[0,12,36,3],monitor:3,polici:46,mpcontext:[15,23],ignoreclass:[4,35],platform:[24,11,1,21],window:[12,45,39,14,47,2,6,19,5,23,52,56,30,27],"05em":33,main:[33,12,13,46,59,16,42,50,57,15,21,30,45,23,56,40,41,25,43],mathexampl:52,non:[10,0,12,29,17,33,21,56,57],jipsen:29,myinputjax:43,initi:[0,12,13,59,29,53,30,33,31,6,4,21,35,45,23,20,56,57,41,55,43],bound:33,safari:[12,2,18,56,30,58],half:47,now:[12,13,46,48,31,18,15,21,22,23,38,56,39],discuss:[10,46,41,2,3],nor:[5,49],term:[13,41,21,19],name:[0,31,4,5,10,12,13,29,15,18,19,20,21,26,23,25,27,14,30,2,33,47,35,39,40,41,42,43,44,36,46,49,50,54,55],opera:[18,30,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:24,varpropto:33,vec:33,varsupsetneqq:33,compil:[47,12],domain:[21,12,41,46],replac:[42,0,13,46,14,18,36,2,52,33,21,30,26,40,41,25,57],individu:[33,55,18,54,52],strikethrough:33,continu:[0,12,13,29,33,20,53,41,59],happen:[12,36,46,29,17,59,2,33,53,57],baselin:25,shown:[33,49,23,6,52],accomplish:[21,12,41,46,56],"3rd":21,space:[12,29,32,18,52,33,21,23,56,8,55,57],intermix:31,internet:[0,12,2,18,19,33,47,23,56,57,52,25,54],formula:[12,52,33,23,24,56,57],mathjax_zoom:38,correct:[47,12,13,2,23],integr:33,simeq:33,earlier:[12,39,59,31,21,26,56,41,27],migrat:[11,13],postfilt:12,bigstar:33,ajax:[0,45,16,33,31,20,47,30,43,41,59],mime:[36,55,21,43,40,30,25],underleftarrow:33,brower:[33,29],ord:[33,12],care:[29,32,2,33,21,54],ntrianglelefteq:33,couldn:47,x00b1:21,synchron:[0,14,11,48,17,59,2,52,20,47,31,53,30,44],mscarri:36,thing:[29,48,52,33,21,49],vdash:33,eqref:[33,12],mathop:[33,12],unwis:56,view:[12,36,46,16,2,15,21,37,24,39,41],think:[33,23,29,52],frequent:[4,20,35,29],first:[4,2,33,7,12,29,20,21,49,23,25,27,14,47,35,39,40,41,44,36,46,59,52,53,57],origin:[42,44,12,46,29,17,33,2,52,20,21,23,55,40,41,25,27],lfloor:33,oni:46,directli:[12,46,2,59,18,52,33,47,43,7,57],onc:[44,46,14,0,33,31,52,15,21,37,56,40,25,59],arrai:[31,4,5,8,12,30,17,18,20,26,23,25,27,28,14,32,34,35,37,56,40,41,43,44,39,47,49,33,54,22,57,58],yourself:[46,21,17,33,47,23,41],submit:3,formatnumb:26,open:[11,36,46,6,33,21,7,24,9],ios4:18,size:[12,39,50,18,52,33,22,23,56,41,25,26,27],given:[0,1,33,10,12,14,17,18,19,20,21,49,23,25,29,47,38,40,30,42,44,55,50,57,59],convent:25,ifmodul:[12,46],adjac:18,paramt:[33,12],leftrightharpoon:33,circl:33,white:50,conveni:[21,42,23],includ:[0,1,2,4,5,6,8,12,13,14,15,16,18,20,21,26,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,22,45,46,47,48,49,50,51,52,54,56,57,58,59],hub:[0,2,4,5,6,8,12,13,15,16,19,20,21,26,23,25,27,28,29,30,31,32,34,35,37,38,40,41,22,45,39,47,55,33,51,52,54,56,57,58,59],especi:[56,12,57],"public":[44,46],copi:[12,13,46,29,36,2,3,15,21,30,43,24,41],specifi:[31,4,5,6,8,10,12,13,14,17,18,20,21,26,23,27,29,44,30,33,47,35,38,40,41,22,39,48,49,50,51,53,56,57,58,59],forward:12,lhd:33,enclos:[12,39,50,33,23,57,27],quad:33,than:[0,2,4,5,7,8,12,13,29,15,17,18,20,21,26,23,24,55,54,14,30,31,33,32,35,39,40,41,42,43,44,36,46,48,50,6,52,53,56,57,59],serv:[21,18],wide:[24,39,57,46,27],undefinedfamili:[39,27],balanc:[4,12],were:[12,13,55,52,20,56,25,27],posit:[12,39,17,18,33,23,27],seri:[59,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,59,33,47,42,54],dash:[50,39,27],properli:[10,0,12,13,46,21,18,59,2,52,4,5,36,47,55,56,30,42],engin:[24,11,12],squar:[33,49,18],greek:12,npreceq:33,consortium:24,note:[0,2,33,5,7,12,41,21,49,23,55,26,27,29,44,47,35,39,30,43,4,46,50,6,52,56,57,58,59],other:[0,1,31,4,5,12,13,14,15,17,18,19,20,21,43,23,24,55,27,29,30,47,35,37,39,41,42,44,36,46,48,33,52,53,56,57,58,59],x2260:21,take:[10,0,12,13,14,1,47,59,31,3,52,33,5,26,23,53,56,41],emnu:6,noth:[21,12,14,47],channel:[20,48],updownarrow:33,begin:[20,12,46,29,33,31,52,4,26,56,57,41,59],sure:[44,12,13,46,33,18,3,52,4,21,35,56,41,59],windowset:6,normal:[15,39,14,50,2,33,4,21,35,23,57,27],buffer:26,compress:41,beta:[33,12,41],pair:[10,0,14,49,50,33,4,35,26,20,40,30,25,54],fileurl:0,beth:33,hotfix:41,latex:[11,12,29,48,33,4,21,24,57,41],renam:13,textarea:[4,35],later:[44,12,30,39,29,14,17,59,33,47,36,41],drive:46,typeset:[0,31,4,6,12,18,19,20,22,23,24,55,27,28,47,35,38,30,45,39,34,48,59,51,52,53,56,57],badg:3,sigma:33,mathfrak:33,showmathmenu:[39,23],downdownarrow:33,show:[33,12,46,6,5,3,52,15,47,49,23,9,21,54],autoreset:14,cheap:27,parentnod:[18,2],newcomand:12,concurr:31,permiss:[21,46,29],htmlcss:25,isfirefox:30,corner:[45,23,19],xml:[24,48,12],onli:[0,1,2,3,4,5,41,12,13,15,18,21,49,23,24,55,27,29,33,47,35,39,40,30,44,46,48,50,52,56,57],slow:[56,12,25],activ:[12,13,46,14,48,3,52,15,53,36,57],enough:[12,36,59,21,49,56,41],inlinedelimit:33,otim:33,black:[33,12],offici:[12,41],geq:33,mypic:[4,34,35,28,49],nearli:[15,33,41,54],variou:[0,30,1,44,16,50,19,20,5,23,40,41,57,54],get:[2,4,10,11,12,29,18,19,21,26,23,25,27,14,31,47,39,41,42,44,36,46,33,52,56,59],soon:[12,41,2,23,52],cannot:[33,29],ncong:33,lighter:27,theta:33,requir:[0,12,13,15,14,47,30,33,2,51,4,21,35,43,59,20,24,40,41,25,57],truli:52,prime:[33,12],reveal:12,lceil:33,mathpunct:33,rerend:[40,30,55,52],enspac:33,hostil:21,intermitt:[45,19],shortmid:33,qquad:33,retypeset:52,where:[0,31,3,15,5,10,12,13,29,19,20,21,22,25,26,27,14,47,30,39,40,41,33,45,46,55,50,52,53,56,57],wiki:[1,48,2,33,21,57,41],latexmathml:29,keyboard:48,ismac:[30,31],concern:[57,30,29],infinit:[12,26],detect:[18,12,2,14],parent:[10,42],enumer:33,label:[12,6,33,26,56,54],behind:33,between:[33,12,30,39,14,29,47,59,18,6,20,21,56,57,41,55,27],maltes:33,"import":[0,12,46,15,59,18,20,53,41],across:[48,56],assumpt:33,moveright:33,longleftrightarrow:33,vdot:33,screen:[0,12,39,59,18,19,15,24,52,25,27],negmedspac:33,come:[33,13,46,59,2,15,47,36,56,57,41],leftleftarrow:33,fit:[20,6],timout:0,pertain:21,audienc:[56,36],inconsist:13,overbrac:33,mani:[33,12,30,53,50,18,4,47,35,56,41,59],among:41,endtoggl:[33,12],color:[12,48,50,18,33,49,23,38],operatornam:[33,12],period:[0,45,46],colorbox:[33,12],colon:[33,50],autmat:33,cancel:[33,12,14],typic:[33,46,29,4,21,40,41],"70kb":41,bigcirc:33,msrow:36,damag:21,needlessli:47,tabel:56,myserv:41,rebuild:30,mstyle:12,mark:[0,12,36,29,50,33,4,21,35,37,57,27],succapprox:33,mtextfontinerhit:12,fade:5,arcsin:33,xrightharpoonup:33,processenviron:4,breve:33,texfont:5,blacktriangl:33,former:32,those:[15,5,12,41,17,20,21,49,23,24,25,14,33,47,40,30,43,44,36,46,55,50,52,57,59],"case":[2,33,12,13,16,20,21,49,23,55,54,14,47,39,41,42,46,32,25,50,52,56,57,59],kappa:33,tostr:14,oldstyl:33,addtext:10,trick:33,invok:56,eqnchunk:[12,39,27],invoc:41,margin:[50,26],tbinom:33,advantag:[12,13,1,59,56,41],barwedg:33,leadsto:33,mlongdiv:36,worri:[20,57],destin:30,updatemath:52,bigwedg:33,myclass2:[4,35],develop:[13,46,48,3,36,41],author:[12,13,29,19,33,21,43,23,38,24,57],media:[50,41,46],postjax:[57,23],same:[4,15,7,12,13,18,20,21,26,23,25,27,28,29,44,34,35,41,33,46,59,53],html:[1,2,4,5,8,10,11,12,13,16,18,20,21,49,23,25,27,28,29,30,31,33,34,35,36,37,39,9,41,15,45,46,48,50,6,52,53,54,56,57,58],pad:[10,33,50,12],knuth:48,mathvari:[12,39,57,27],document:[0,2,33,41,11,12,13,16,21,23,24,25,29,37,30,4,36,46,48,52,56,57],finish:[12,48,59,2,52,53,30],vvdash:33,nest:[12,45,18,4,36,27],availablefont:[5,41,39],someon:33,longleftarrow:33,capabl:[16,24,56],formaterror:30,improv:[12,13,18,3,23,56,41],extern:[0,45,47,59,20,53,30],gnsim:33,submenu:[12,23,6,7],appropri:[15,12,33,20,37,40,25,57],macro:[12,18,33,21,26,23,41,54],mml_svg:[15,12,41],leftharpoonup:33,eqnchunkdelai:[39,27],overwithdelim:33,without:[0,12,13,39,47,48,33,20,5,30,36,23,57,41],model:[11,12,45,46,16,31,33,56,57,42],bigotim:33,stixfont:5,mml2jax:[12,36,21,15,34,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:59,strikeout:33,widest:[21,36],asciimathml:[12,29],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,29],read:[13,46,48,49,18,20,21,36,41],outermost:49,boldsymbol:[33,12],messsag:19,getjaxbyinputtyp:30,moo:42,world:[24,47,41],lasterror:30,mod:[33,12],sum_:57,blackberri:18,whitespac:12,cdot:[33,12],previewfilt:12,fontstyl:12,integ:[33,30],server:[33,12,13,46,2,18,15,21,39,41],either:[0,12,13,46,1,44,16,49,50,2,33,4,21,35,26,38,20,56,30,41,58],output:[31,15,41,8,11,12,13,18,20,21,22,23,25,27,29,45,37,40,30,42,33,36,39,48,55,50,6,52,54,56,57,58],rollov:18,manag:[10,45,46,1,47,48,31,19,33,21,57,55],lesssim:33,searrow:33,sqcup:33,constitut:16,pod:33,slice:14,definit:[0,12,39,50,18,51,33,15,22,6,38,24,26,27],iff:33,shoveright:33,inputid:55,inject:12,dashleftarrow:33,mathcal:33,complic:[48,49,36,58,56],refer:[42,11,12,30,46,15,21,31,33,2,52,20,5,26,47,53,40,41,44,43,55],arrow:[33,12],power:[59,3],inspect:30,broken:57,formatid:26,fulli:[21,59,36],regexp:[4,35],"throw":[25,40,43,2],trianglerighteq:33,comparison:[59,30],central:23,ibook:[56,12],firstnam:47,ddddot:33,stretch:33,act:[33,48,59,20,47,26,23,57,27],industri:48,needsupd:[40,55,52],processor:[31,33,8,12,21,22,25,26,54,29,32,41,15,36,39,48,50,6,27,56,57,58,59],hookrightarrow:33,nobreakspac:33,routin:[10,0,12,53,47,43,40,30,25],nsupseteqq:33,effici:[42,27,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,26,23,24,27,28,29,30,32,34,35,37,38,39,9,41,22,36,46,47,48,49,33,51,52,53,56,58,59],sqsupseteq:33,log:[33,21,46,19],area:[12,26,19],aren:[33,12],fontwarn:[5,12,23,54],lor:33,strict:46,compliant:[13,18],interfac:[12,46,1,21,7,24,9],low:14,lot:[20,12,26,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,27],pull:46,mathml:[2,33,7,8,9,11,12,18,21,23,24,55,54,29,40,41,15,36,48,25,52,27,56,57,58],furthermor:[13,59,41,23],possibl:[0,12,36,46,14,29,21,50,18,33,19,15,5,23,47,56,57,41,42,59],"default":[0,31,4,5,6,8,12,13,14,15,19,21,26,23,25,27,28,29,30,34,35,37,38,39,40,41,43,22,46,32,33,51,54,56,57,58],processescap:[4,13,33,41],buildrel:33,notag:33,asiimath2jax:29,embed:36,expect:[39,59,52,33,23,41,27],taylor:21,creat:[0,31,3,33,10,19,20,43,25,14,47,40,42,44,45,46,48,55,50,6,53,57,59],certain:[20,44,53],leftrightsquigarrow:33,risingdotseq:33,varliminf:33,file:[0,1,2,15,5,7,8,9,12,13,14,17,18,19,20,21,26,23,25,27,29,44,31,33,47,30,37,39,40,41,43,22,45,46,32,48,49,50,53,54,55,56,57,58,59],momentarili:30,outputjax:[45,16,55,31,43,30,25],fill:[56,58],again:[33,0,30,55,52],iiiint:33,googl:3,pmod:[33,12],reduct:[56,12],field:12,valid:[47,13],getscript:[10,12],you:[1,2,3,4,5,7,8,12,13,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,37,39,9,41,42,43,15,36,46,47,48,49,50,6,52,53,54,56,57,58,59],trash:55,poor:56,resolut:24,registri:12,sequenc:[11,12,30,46,17,33,31,20,53,26,41],symbol:[33,21,26,29,32],begingroup:[33,12],dashv:33,track:[57,25,3],menuset:[15,23,38],reduc:[33,12,41],mathcolor:33,lbrace:33,eqchunkdelai:[39,27],directori:[0,12,46,15,53,48,31,18,19,20,21,43,23,55,39,40,41,25],descript:[12,28,34,2,4,5,35,45,23],lbrack:33,scroll:9,calle:42,potenti:59,extpfeil:[33,12],escap:[33,26],dst:30,negthickspac:33,represent:[57,55,52],all:[0,1,2,4,5,11,12,13,15,18,19,20,21,26,23,24,25,27,28,14,44,30,31,34,35,36,39,41,42,43,22,45,46,47,48,33,53,54,56,57,58,59],consider:41,illustr:52,dollar:[33,13,29,4,21,35,41],improperli:4,code:[0,31,3,4,7,10,11,12,13,15,17,20,21,43,23,25,28,14,30,2,33,34,35,41,44,45,47,48,49,50,52,53,59],abil:[12,13,46,48,18,33,56,57],follow:[31,15,12,13,16,18,20,21,26,25,27,14,47,39,40,41,42,43,33,46,49,50,52,54,57],alt:[12,2,23],disk:[15,21,41,46],multlinewidth:26,scr:33,articl:48,init:42,program:[45,1,53,16,55,59,31,21,24,57,42],smile:33,introduc:[21,12,41,56],global:[12,45,14,16,52,33,56],multlin:[33,12,26],vert:33,far:[0,44,46,29,19],renewcommand:33,"1px":[10,33,50,12],verb:33,mechan:[44,14,17,33,31,20,53,42,59],loadcomplet:[33,0,30,41,43],veri:[38,7],strang:36,alterant:48,list:[1,31,4,5,6,7,8,9,12,30,16,20,21,26,23,25,27,28,14,34,35,38,39,40,41,22,46,32,48,55,33,51,52,57,58,59],"_html":56,emul:[56,12],adjust:[12,39,2,52,22,7,9,41,27],displaylin:33,small:[12,39,18,19,33,22,57,26,27],dimens:[33,12,18,23],getalljax:[30,52],difficulti:33,lll:33,tex:[1,2,4,5,7,8,9,11,12,13,18,20,21,26,23,24,27,28,29,30,36,37,39,40,41,43,15,45,46,48,33,52,54,56,57,59],zero:[5,17],design:[36,2,3,15,24,9],pass:[0,12,13,15,14,44,17,59,18,6,20,47,31,57,30,42,54],overlin:33,further:[17,59,56,40,25,57],what:[0,31,3,4,5,6,11,12,30,14,18,21,26,23,24,27,28,29,34,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,24,39,9,41],delet:[33,39],version:[2,3,15,41,11,12,13,18,21,26,25,27,29,31,47,38,39,40,30,43,33,45,46,55,52,56],sup:33,row:12,method:[10,0,12,13,42,14,44,17,59,19,20,47,30,43,52,53,40,41,25,55],hasn:[0,13,31,19,40,25],full:[0,12,47,16,18,2,52,15,21,23,24,57,41],themselv:[12,45,31,15,21,49,30],geqslant:33,modular:[24,12,36],ggg:33,trunk:46,ineffici:[42,23],modifi:[11,12,13,15,1,52,33,19,20,21,30,43,41,25],valu:[0,31,4,5,6,8,10,17,18,20,22,23,25,26,27,28,14,32,34,35,38,30,42,33,36,39,47,49,50,51,52,54,57,58,59],search:[24,11,30,3],sender:20,prior:[33,56,36,2,23],amount:[33,5,30,26,14],action:[0,2,33,12,41,29,17,19,20,43,25,14,31,47,38,40,30,44,45,48,59,52,53,57],mathjax_wikipedia:2,mml_htmlormml:[13,1,2,15,21,7,56,9,41],llap:33,chunki:[39,27],via:[0,1,2,4,5,12,13,18,19,20,21,43,23,55,54,14,31,35,38,39,41,42,15,36,46,59,57],shorthand:52,equalrow:12,int_0:33,filenam:[13,12,41,47],href:[33,12,49,18],inappropri:[20,12],emptyset:33,famili:[33,0,39,27],decrement:17,establish:15,select:[12,36,46,6,15,56,39,30,58,27],hexadecim:33,proceed:[59,49],x41:33,distinct:16,ctrl:23,regist:[0,30,44,48,33,31,20,53,43,40,41,25,57],two:[20,12,15,29,53,49,50,33,4,21,26,23,41,59,54],splash:12,taken:[33,12,59,52,20,56],imath:33,basi:[56,41,58],toggl:[33,12],more:[15,5,41,7,9,12,13,17,18,21,22,23,24,27,14,33,47,37,39,40,30,42,43,44,46,48,49,50,52,53,56,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,30,46,14,29,44,48,17,50,33,21,23,47,53,56,57,41,42],webkit:[12,30,18],upsilon:33,mathml3:[56,12,36],cach:[20,41],showmathmenumsi:[22,18,23],none:[44,28,39,14,47,30,4,34,35,26,23,57,41],eta:33,mmlorhtml:[12,15,23,56,58,54],det:33,dev:3,histori:[20,44,31,48],remain:[15,48],paragraph:[12,39,21,52,33,5,57,27],caveat:[21,25,46],def:[33,26,42],deg:33,mathtip:[33,12],scan:[12,30,23],myspan:49,challeng:15,registr:43,share:[12,46,3,21,23,41],accept:[47,14,52],succneqq:33,minimum:[39,30,22,18,27],unreli:13,explor:[0,12,2,18,19,33,47,23,56,57,52,25,54],sharp:33,mathinput:52,huge:33,cours:[13,59,41,36],newlin:[33,39,18,27,19],awkward:42,secur:[21,2,46],programmat:[57,37],anoth:[44,46,59,17,33,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,25,27,45,37,38,39,30,33,36,46,48,55,50,51,52,54,56,57,58],unabl:5,regener:[55,52],resourc:18,referenc:[5,26],algebra:48,iphon:18,variant:[48,12],searpat:4,reflect:[31,52],plane:12,mstack:36,blacker:27,impliedbi:33,associ:[57,12,39,14,55,52,33,47,22,40,30,25,43,27],curlywedg:33,stabil:12,circumst:12,github:[13,46],footer:41,confus:[21,12,13],ambigu:16,caus:[0,33,5,12,41,19,20,21,26,23,25,29,44,47,35,36,40,30,4,45,46,55,59,6,52,56,57],callback:[0,12,45,14,44,16,17,59,31,52,20,47,48,53,40,30,25,55],firefox3:39,alphabet:12,merror:[50,12],unrhd:33,help:[11,12,13,46,3,21,23,56,41,6],autoload:33,trade:[56,41],through:[44,12,13,46,33,18,20,53,36,56,57,41,42,59,54],hierarchi:[41,46],suffer:[56,12],paramet:[0,31,15,41,10,12,13,29,17,18,19,21,26,23,25,54,28,14,34,38,40,30,42,43,44,47,55,33,52,56],style:[0,31,4,5,6,10,11,12,18,19,21,49,23,27,33,35,38,30,22,39,48,50,51,57],arial:[33,39,27],x221a:36,processupdatetim:30,x221e:57,late:[48,12,2],isreadi:[45,31],pend:17,amsmathaddit:59,mathplay:[12,2,18,6,15,23,56],might:[0,12,13,46,47,59,36,3,20,21,26,57,41,25,27],alter:[4,55,52],finer:12,cee:[33,12],good:[59,2,27,3],"return":[10,0,36,42,14,44,17,59,19,20,47,26,52,53,40,30,25,43,55],textstyl:33,hslash:33,getelementbyid:52,wilipedia:48,rlap:33,detach:12,equationnumb:[33,12,26],xtwoheadleftarrow:33,redesign:[56,12],mathscr:33,instruct:[49,21,13,2,1],critic:46,bigcup:33,easili:[24,21,57,48],token:12,x2212:[21,57],found:[0,46,47,3,21,23,56,40,25],unicod:[12,36,39,33,5,27],x2211:57,subsystem:31,interleav:12,originaltext:55,weight:[12,49,42],setrender:[12,30],hard:[46,18,3,15,21,41],realli:[47,23],nless:33,connect:[12,47,15,21,57,41],math2:[33,12],math1:[33,12],beyond:[33,3],orient:[16,42,45,31],ismathjax:12,nleq:33,mhchem:[33,12],shortcom:53,skiptag:[4,12,35],print:[24,56,50,46,12],occurr:53,msie:[30,58],foreground:50,assist:[15,12],safari3:39,advanc:[16,11,41,24],offsetx:[39,27],symbian:18,mml:[12,41,58,15,21,45,56,40,30,55,57],reason:[0,36,29,47,59,2,19,33,21,26,56,30,43],base:[12,13,46,14,1,53,16,31,2,56,5,30,45,55,24,39,41,42,43,27],put:[0,12,13,46,29,53,33,21,23,56,41,54],mathr:33,processupdatedelai:30,offseti:[39,27],ispc:[30,31],succnapprox:33,stanard:33,texerror:12,drupal:1,msbm10:21,taht:22,showprocessingmessag:[23,54],perhap:[47,41],bumpeq:33,perman:33,elementjax:[12,45,16,55,31,43,40,25],stixgener:[33,39,27],getelementsbytagnam:2,assign:[4,47,35],major:[24,56,12,41,2],notifi:20,boxplu:33,upper:33,feel:3,exchang:48,lastnam:47,number:[0,1,31,15,5,41,12,13,18,19,21,26,23,25,27,14,47,39,40,30,43,33,45,46,32,49,59,52,55,56],grtaphic:57,fadeoutstep:5,done:[12,17,59,31,33,21,57,41],construct:[57,59],blank:[44,14],stabl:[21,41,46],miss:[33,12,14,29],differ:[33,12,30,46,14,47,58,59,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,25,31,35,37,40,30,15,46,55,33,52,56,57,59],interact:[12,30,39,21,24,57,41,55,27],smoother:5,least:[30,41,57,29],statement:[59,14],natur:[24,21,33,46,57],illeg:[49,41,18],store:[10,44,12,13,39,14,55,59,18,52,47,30,45,37,38,40,41,25,57],xmln:[21,12],option:[4,5,6,41,7,8,11,12,13,15,21,26,23,27,28,29,34,35,37,38,30,42,43,22,39,32,49,33,51,54,56,57,58],nleftarrow:33,eqn:26,ntrianglerighteq:33,selector:[50,23,19],tex2jax_process:4,part:[4,2,15,7,12,29,20,21,26,23,24,25,14,41,42,33,36,46,59,53,56,57],pars:[33,12,18,29],mmltoken:33,binom:33,cosh:33,kind:57,aaa:26,prebuilt:21,whenev:[44,36,46],remot:46,remov:[44,12,30,39,14,52,55,33,18,19,4,5,35,23,57,41,25,27],dtd:21,bridg:[13,55],arrang:14,toward:12,markup:[0,36,29,48,33,21,57,27],ffff88:50,comput:[39,48,33,56,46,30,27],nleqslant:33,packag:[46,29,48,33,26,37,41],expir:10,"null":[10,0,45,42,14,44,2,18,19,5,43,23,52,55,39,40,30,25],built:[11,13,2,56],equival:[10,14,59,52,15,47,49],lim:33,self:[21,12,36,18],ell:33,also:[2,3,4,10,12,13,29,16,19,20,21,22,23,55,27,14,47,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,50,18,33,20,21,31,43,56,57,41,42],plan:21,rho:33,alpha:33,rhd:33,vardelta:33,renewenviron:[33,12],clear:[44,12,39,14,31,19,20,27],tpl:1,h2o:33,exp:33,usual:[12,29,14,47,59,33,5,43,23,57,41],leftroot:33,cdata:18,nshortparallel:33,carefulli:[49,39,27,52],cdn:[33,12,13,46,1,18,2,52,15,21,37,7,56,9,41],flicker:[12,39,27],finv:33,particularli:[15,12,46],rightleftarrow:33,font:[0,33,5,11,12,13,18,19,21,49,23,24,25,26,27,39,41,46,48,50,6,52,53,56,57],find:[12,30,3,52,33,5,37,7,57,41],preremoveclass:23,cell:56,execut:[0,14,44,17,33,31,20,47,57,41,59],pretti:46,solut:[21,57,46,3],delayedx:14,queu:[17,59,41,14,44],factor:[12,39,18,22,23,27],noerror:[15,21,12,33],jaxfil:43,tagsid:[12,26,54],precnsim:33,express:[20,12,39,44,33,52,4,21,35,26,23,56,25,59,27],strut:33,nativ:[12,36,16,2,15,24,56,57,58],mainten:13,rest:[0,36,59,52,33,21,24,57],donald:48,restart:[12,46,17,59,4,35,41],ie9:[46,12,18,56],ie8:[56,12,18],ie7:[56,12],acut:33,vmatrix:33,common:[11,12,13,29,1,21,48,49,33,36,15,5,30,43,41],set:[0,2,4,5,6,8,10,12,13,14,15,18,19,20,21,26,23,55,27,28,29,44,30,31,32,33,34,35,37,38,39,41,42,22,45,46,47,48,49,50,51,52,53,54,56,57,58,59],overrightarrow:33,startup:[11,12,45,30,2,59,18,52,20,31,43,23,41],see:[0,31,3,4,5,6,7,9,12,13,14,15,17,18,20,21,26,23,25,27,28,29,44,30,33,34,35,37,38,39,40,41,22,36,46,47,48,50,51,52,53,54,56,57,59],barb:33,sec:33,arg:33,ams_hml:41,disadvantag:56,langl:33,inconveni:13,someth:[33,46,3,52,4,21,23],particip:3,won:[12,46,59,18,33,56,41],columnspan:36,subscript:[33,21,12,18],experi:23,altern:[0,29,33,47,57,42],numer:[33,30,36],complement:33,javascript:[0,1,2,15,5,6,7,11,13,16,20,21,26,23,24,55,27,14,33,47,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:31,varsigma:33,unstar:33,last:[0,46,14,17,50,33,30,25,54],delimit:[33,12,13,29,18,4,21,35,57,41],hyperlink:57,mathzoom:[12,50,15,38,25,54],event:[0,12,15,48,2,18,51,52,20,53,31,23,57,25,6],nvdash:33,grei:[33,31],context:[12,14,6,4,35,23],overset:33,hbar:33,whole:[53,30,45,52],load:[0,1,2,15,8,9,11,12,13,17,18,19,20,21,26,23,24,25,27,14,31,47,30,37,56,39,40,41,43,44,45,46,32,48,33,52,53,22,57,59],markdown:[48,21,33,57],simpli:[15,13,46,14,29,47,30,17,33,52,4,34,35,28,23,24,40,41,25,43,37],point:[33,17,41,32,21],instanti:42,priorit:[12,14],usemathmlspac:8,fcolorbox:[33,12],header:[12,41,46,1,7],suppli:[30,55,23,14],bigve:33,mistak:49,zeta:33,throughout:33,vertic:[4,35,25,23],notaion:11,gneq:33,devic:[12,13,18,24,56,41],due:[12,13,39,27],empti:[12,45,39,14,59,31,23,57],sinc:[0,33,41,12,13,29,15,17,18,20,21,22,23,26,14,30,42,44,36,39,50,52,53,56,57,59],invis:[33,46],fire:[31,41,2,52,47],imag:[12,13,46,49,34,48,18,2,4,5,35,28,24,39,41,25],descib:29,coordin:[17,57,59],understand:[15,57],demand:15,urcorn:33,sqcap:33,blacksquar:33,look:[1,4,3,33,7,10,12,14,19,21,54,29,35,39,30,44,36,46,50,52,27,57],bcancel:[33,12],solid:[10,33,50],histor:56,pitchfork:33,lvert:33,"while":[10,0,13,46,21,58,33,2,32,20,5,36,23,53,57,41,44,59],blacktriangleleft:33,nprec:33,behavior:[12,13,46,23,39,41,27],circlearrowright:33,bookmarklet:41,everyon:[20,27],loop:[12,26,55],pack:18,subsect:[26,43],measuredangl:33,readi:[15,45,33,31,20,43,40],jpg:[4,34,35,28,49],biguplu:33,itself:[31,33,41,12,13,17,20,23,55,54,14,45,40,30,42,44,36,46,25,50,56,57,59],peramet:40,rightarrow:33,minim:25,xleftarrow:33,belong:12,shorten:19,shorter:18,am_htmlormml:[15,21,12,41],redisplai:19,htmlcsslast:25,conflict:[33,57,18],higher:41,upuparrow:33,optim:[56,12,18],wherea:33,domin:48,alert:[20,47,59,14],moment:[21,40,46],temporari:41,user:[31,3,15,5,6,11,12,41,19,20,21,22,23,24,27,14,2,37,38,39,30,33,36,46,51,52,56,57,58],robust:[20,48],stack:26,recent:[24,2],lower:[12,45,16,18,31,19,33,23],task:33,older:[41,36],entri:[12,48,17,50,18,33],searchabl:24,chemistri:12,person:47,textit:33,expens:[56,57],normals:33,scriptsiz:33,fallingdotseq:33,explan:[33,21],rvert:33,obscur:[18,19],mathinn:33,amp:[33,18,29],regardless:[12,52],seriou:57,cup:33,setscript:10,blacklozeng:33,endgroup:[33,12],ffeeee:33,rgb:33,input:[31,15,41,7,8,40,12,13,18,20,21,26,23,25,54,29,32,45,37,9,30,42,43,33,36,48,55,59,52,56,57],subsequ:[33,40,25],oslash:33,asciimath:[11,12,29,32,48,15,21,35,24,57,41,54],konqueror:[56,30],big:[33,54],moodl:1,intuit:48,tomathml:[15,55],game:33,insert:[33,12,28,39,14,2,4,34,35,43,23,7,9,30,25,57,27],bit:[12,42],diagup:33,success:[56,12],semi:50,varkappa:33,signal:[44,12,45,14,53,16,31,20,47,30,43,48,41],asciimath2jax_process:35,resolv:[12,18],collect:[14,48,50,47,55,59],"boolean":30,popular:[21,37,1],swarrow:33,asciimath2jax_ignor:35,scrip:13,stackrel:33,simplifi:18,creation:[40,31],some:[1,2,33,5,41,12,13,14,16,17,20,21,22,23,24,25,26,27,29,47,39,40,30,42,43,36,46,55,59,52,54,56,57,58],back:[46,29,21,55,33,5,35,25],emph:33,urgent:41,sampl:[33,46,53,50,31,52,20,21,23],instal:[11,12,13,46,21,18,56,33,5,7,24,39,41],scale:[12,39,18,33,22,23,24,27],per:12,substitut:26,mathemat:[0,31,4,5,6,7,9,12,30,15,18,20,21,26,23,24,25,27,28,29,34,35,37,38,39,40,41,43,22,36,46,48,55,33,51,52,56,57,59],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,59,19,47],run:[0,2,4,5,8,12,30,17,20,21,26,23,27,28,14,44,31,32,34,35,39,41,22,36,46,47,59,52,53,57,58],doteqdot:33,odot:33,step:[12,1,21,31,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,31,22,23,56,57,41,43],file3:59,file2:[0,59],file1:[0,59],file4:59,bmod:[33,12],within:[0,31,33,5,41,12,13,29,16,18,21,26,25,14,47,35,37,30,42,4,36,46,52,53,57],prec:33,notat:[12,29,48,33,21,24,57,41],isjax:[12,30],announc:53,inclus:[39,27],triangl:33,question:[21,43,3],fast:[13,41,18],custom:[33,29,18,19,15,21,24,56],referenec:30,perp:33,plane1:12,suit:[13,5,32,36,41,21],nativemml:[12,36,48,58,6,15,22,56,57,30,25,54],overleftrightarrow:33,ulcorn:[33,12],doctyp:[21,36],reorgan:12,poster:44,atop:33,loadhook:[0,12,30,47],serif:[0,39,27],link:[12,13,46,1,21,16,18,33,5,26,53,41],translat:[25,40,43,18,57],delta:33,line:[33,12,13,46,1,32,48,18,2,35,4,21,31,28,54,56,39,57,41,27],consist:[36,29,59,33,49,56],rmoustach:33,apricot:33,divideontim:33,geqq:33,similar:[53,46,14],xmapsto:33,enlarg:38,constant:[20,26],parser:12,xlink:12,doesn:[15,46,14,29,55,33,20,23,39,41,42,27],repres:[10,33,28,34,48,50,19,4,5,35,49,23,24,57,25,21],"char":33,mathdiv:[10,47,59,52],opera10:39,guarante:[0,59,52,17],ebook:[56,12],gecko:[12,30],phantom:33,bigoplu:33,iiint:33,titl:[21,52],sequenti:[53,59,31],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,27],msup:[21,57],eqnchunkfactor:[39,27],alttext:34,varsubsetneqq:33,eval:14,fisher:33,newcommand:33,svn:[21,13,46],rightharpoonup:33,land:33,algorithm:12,mimetyp:[55,40,43,25],svg:[12,48,18,6,15,54,56,57,41,27],supseteqq:33,liminf:33,depth:[33,12],dot:[33,12],doublebarwedg:33,hello:47,prototyp:42,mathjax_displai:50,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,30,48],actiontyp:[39,27],unzip:46,whichev:33,xxxxxxxx:[21,46],mous:[12,39,18,51,15,6,38,57,25,27],doublecap:33,untouch:33,skew:33,tri:[0,13,39,33,22,27],ischrom:30,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,27],pleas:[49,3],impli:33,smaller:[15,0,12,18,57],fortun:20,getjaxfrommath:25,exten:29,aperson:47,jump:[12,31],unpost:12,download:[0,12,13,46,21,18,5,23,24,57,41],hspace:33,click:[33,12,6,15,23,38,7,57,25],append:[10,46],compat:[33,12,39,48,18,4,26,23,56,41,27],appendchild:[10,2],turn:[10,44,12,13,15,14,4,35,36],compar:[56,12],access:[44,12,46,1,47,55,33,18,6,15,21,24,56,41,42,59],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,24,25,26,27,29,30,31,33,47,35,36,37,39,40,41,42,43,44,45,46,48,50,6,52,53,54,56,57,58,59],vargamma:33,closur:[47,14,52],leq:33,intercept:21,let:[12,13,46,49,6,33,21,36,23,30,58],sinh:33,safer:12,becom:[12,13,46,14,59,3,20,36,56,42],altough:47,tex4ht:57,rtime:33,convert:[11,36,14,29,33,2,19,4,37,24,57,25],convers:[33,29],scriptlevel:12,larger:[12,39,15,21,56,57,41,27],technolog:[24,15,3],zscale:23,circledast:33,chang:[1,2,33,41,12,13,18,19,21,26,23,55,27,32,39,40,30,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,30,58],rgroup:33,tau:33,appli:[12,46,33,22,56,39,41,42],iskonqueror:30,lessgtr:33,api:[16,11,12,24,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,26,23,25,27,28,29,44,30,31,34,35,37,39,40,41,42,43,22,45,46,47,55,33,6,52,56,57,59],zip:[21,18,46],commun:[20,11,12,3,21],chi:33,doubl:[33,12,15,26,23,38,25],upgrad:[5,46,3,11],varphi:33,next:[29,53,52,33,32,30,55],implic:46,few:[12,46,29,33,21,37],msqrt:[21,57],postprocess:43,bowti:33,panel:33,subsetneq:33,failur:12,preformat:18,src:[15,13,1,21,30,49,33,2,52,4,34,35,28,37,7,56,9,41,59],appropr:12,lippman:29,aquamarin:33,projlim:33,"4ac":21,rare:59,applyfunct:12,versionatleast:30,account:10,alik:2,retriev:10,augment:[42,40,43,25,12],scalabl:[48,56,57],underwai:59,annot:12,halt:53,thin:[12,26],assum:[12,52],eqchunkfactor:[39,27],control:[4,15,5,6,8,12,41,21,26,23,27,28,34,35,38,56,39,30,33,46,32,50,51,22,58],bittersweet:33,tap:12,lesseqgtr:33,tar:46,process:[0,2,4,10,11,12,13,17,18,19,20,21,26,23,25,27,28,29,30,31,34,35,37,40,41,43,15,36,39,47,55,33,6,52,54,56,57,58,59],dfrac:33,newmath:52,divis:12,high:[24,56,57],tag:[1,2,4,41,7,12,13,18,20,21,26,23,25,54,29,31,34,35,37,40,30,33,36,46,49,52,55,56,57],tab:46,tan:33,delai:[0,12,30,39,15,14,44,51,19,20,23,38,57,41,6,27],fontwarns:50,gcd:33,pure:36,importat:16,lgroup:33,getelementsbytagnamen:2,subdirectori:[46,40,25,55],instead:[33,13,46,29,47,17,59,18,52,20,21,26,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,25,19,43,55,40,42,27],mspace:[33,21,12,36,18],"_svg":56,anothermethod:42,frak:33,filtertext:19,redund:[12,42,23],essenti:[15,33,57,42,29],bind:12,correspond:[12,41,39,33,37,30],element:[31,15,5,10,12,41,18,20,21,26,23,25,27,44,33,35,40,30,42,4,45,39,49,50,51,52,53,55,56,57,59],reredn:55,newextarrow:33,allow:[1,2,4,6,12,13,15,18,19,20,21,26,23,24,25,27,33,47,38,39,41,42,44,46,48,49,50,51,59],fallback:[39,46],mjx:[10,26],fastest:[56,12],nonumb:33,scriptstyl:33,nsucc:33,comma:[50,2,33,23,41,54],dagger:33,mathjax_tooltip:[39,27],movabl:[9,1],chosen:[56,58],clickabl:33,coth:33,varxi:33,pretransl:[43,25],therefor:33,pixel:[48,39,12,25,27],multimap:33,crash:[12,23],sqsubseteq:33,handl:[0,2,33,5,41,12,13,29,18,20,43,23,25,14,45,30,4,36,48,59,51,53,56,58],auto:26,nokia:18,innermost:49,dai:[10,12],maxbuff:26,front:[15,18],successor:37,gggtr:33,somewher:41,anyth:[20,54,39,27,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,27],bump:12,chunk:[39,27],nointerest:44,meta:[56,12],"static":42,our:[13,46,18,3,21,9],meth:30,ie6:39,special:[15,12,30,29,47,50,33,4,21,35,36,23,53,24,56,57,41],out:[0,12,13,46,59,52,20,5,56,39,57,27],variabl:[45,14,16,42,31,52,33,47,56,25],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,24,25,27,28,29,30,31,34,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:47,indent:[26,23],could:[0,12,13,29,47,16,55,33,36,3,52,20,21,30,26,57,41,25,59],ask:[12,3,52,21,26,57,41,25],succ:33,timer:31,keep:[13,46,1,29,48,52,33,21,57,41,25],gtreqqless:33,length:2,outsid:[4,56,12],"0em":[50,23],retain:[33,27],softwar:[24,21,57,15],rbrace:33,blogger:1,rbrack:33,qualiti:[24,56,57],spadesuit:33,date:[13,41,18,46,21],uplu:33,clubsuit:33,bigsqcup:33,suffic:21,prioriti:14,"long":[12,39,59,18,6,33,21,27],start:[0,31,33,41,7,9,11,12,13,29,20,21,49,23,25,14,40,30,44,46,59,53,57],unknown:[12,36],respond:[44,27,39,23,3],flag:[12,23],system:[46,1,21,16,31,3,33,5,56,24,39,27],messag:[0,12,13,46,48,15,21,16,33,31,19,20,5,45,23,53,30,44,43],attach:[44,33,51,20,53,23,25],attack:21,termin:[4,35],man:21,"final":[13,47,33,21,49,24,57,25],rsh:33,supset:33,"1em":[50,36,27],gtreqless:33,hdashlin:33,exactli:12,haven:12,blind:57,ipad:18,preceq:33,gtrdot:33,lion:12,structur:[0,45,14,47,48,52,20,21,30,54,40,41,25,27],charact:[33,12,36,39,29,32,48,50,18,4,5,35,26,23,56,57,27],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:30,have:[0,1,31,3,4,5,12,13,14,15,18,20,21,22,23,25,26,54,29,30,2,47,35,38,39,41,42,44,36,46,32,55,33,52,53,56,57,59],tabl:[56,12,36,29],close:[12,36,21,2,18,3,15,5,54],nsim:33,border:[10,33,50,12],gdef:[33,12],issu:[0,12,30,3,19,36,23,56,57,41],min:33,mid:33,fontdir:25,which:[1,31,4,9,12,13,14,15,18,19,20,21,26,23,25,27,28,29,30,2,33,34,35,36,37,38,39,40,41,42,44,45,46,47,49,50,52,54,55,56,57,59],hbox:[4,33,12],mit:33,singl:[0,12,13,14,29,52,16,50,18,33,4,21,35,45,53,24,41,59],declaremathoper:33,mathjax_preview:[12,28,4,34,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,31,26,23,41],gather:[33,12],request:[0,12,14,44,31,33,18,20,47,41,59],face:[39,3,33,5,26,46,54],inde:[56,12,54],movablelimit:[12,18],nmid:33,determin:[33,12,30,1,31,4,32,23,56,41,25],flux:59,mtextfontinherit:[39,27],occasion:41,fact:[44,12,13,43],atopwithdelim:33,backsimeq:33,mathjax_messag:19,text:[1,2,4,5,7,9,10,12,13,15,18,19,20,21,26,23,24,55,27,28,29,31,33,34,35,37,40,41,22,39,47,48,49,50,52,56,57,59],verbos:[48,47,23],bring:57,woth:36,curlyeqsucc:33,highest:[56,12],locat:[0,12,13,46,5,30,33,31,52,4,34,35,28,23,20,57,41,25,21,37],jax:[31,15,41,8,12,13,16,18,20,26,23,25,27,29,33,32,37,40,30,42,43,22,45,39,48,55,50,52,54,56,57,58],much:[12,53,48,20,32,56,41],vartriangleright:33,should:[2,4,41,7,9,12,13,29,15,17,21,26,23,25,14,33,47,35,37,40,30,43,44,36,46,48,49,50,6,52,56,58,59],imagefont:[5,12,39],vartriangleleft:33,suppos:[13,12,41,52,47],"5px":[10,33],triangleright:33,"5pt":21,local:[33,12,46,14,21,59,2,52,15,5,23,41],hope:[5,13],meant:14,move:[12,13,46,22,23,39,27],overleftarrow:33,woff:[12,46],looparrowright:33,increas:[12,13,18],lucki:33,leqslant:33,smash:33,unprocess:[30,55,52],enabl:[33,12,13,39,29,1,4,21,35,7,56,9,41,27],organ:57,frown:33,stuff:30,she:56,contain:[0,1,2,4,5,10,30,15,16,17,19,20,21,26,23,25,27,28,14,33,34,35,39,40,41,43,44,45,46,47,55,50,52,56,57,59],typset:12,conform:21,frame:19,apolog:13,temporarili:19,troubl:21,issafari:30,mathord:33,statu:[0,46,47],error:[0,12,13,29,33,36,2,3,15,21,43,23,40,30,25],jmath:33,pattern:[4,35,23],misus:56,thumb:59,gtrsim:33,favor:[13,23],state:[40,25,59],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,30],texttip:[33,12],"2px":33,entir:[30,41,23,52],closebox:5,ker:33,addit:[0,33,5,12,13,29,17,18,20,21,23,55,14,47,40,30,15,36,25,50,52,59],skipstartuptypeset:23,plugin:[1,6,33,23,7,24,56,57],admin:[9,7],nabla:33,equal:[33,12,30,42,59],gnapprox:33,etc:[12,48,59,52,33,23,41],instanc:[10,30,55,59,4,35,43,41,42],equat:[4,15,12,18,21,22,23,24,55,26,27,28,32,35,39,30,33,46,34,25,52,56,57],class3:[4,35,42],eth:33,darker:27,limiti:46,lmoustach:33,onchang:52,comment:[33,50,18,15,21,23,41],varnoth:33,arriv:[20,53],solv:41,harpoon:33,arguement:47,respect:[22,39,14,27],showmathplay:6,quit:[56,52],showfontmenu:6,"55em":33,quotat:50,anomali:12,compos:36,defint:33,compon:[0,31,15,6,41,13,16,20,21,24,25,54,29,33,45,40,30,42,44,36,50,51,53,57],treat:[33,21,12,29],immedi:[0,12,17,33,2,52,20,31,41,59],incldu:57,smallsetminu:33,both:[0,13,59,29,47,48,31,33,18,15,21,30,36,23,7,56,9,41,42,57],alignat:33,varsupsetneq:33,otf:[46,12,18],psi:33,x_2:33,togeth:[13,14,59,15,36,30],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,50,33,21,23],contextu:[11,12,45,39,58,55,6,15,22,23,38,56,57,36,25,27],studentdisplai:52,defin:[31,15,5,6,41,12,13,20,21,22,23,25,26,27,29,2,47,38,40,30,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,24,9,41],archiv:[21,46],substanti:[13,41,56],revis:46,unneed:27,greater:[33,56,29],formattag:26,welcom:3,displaystyl:[33,32,52],parti:[20,21],cross:46,sqrt:[33,21,12,57],getx:42,extensiondir:43,oint:33,supsetneq:33,android:18,cssid:[33,18],difficult:[47,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,26],effect:[17,59,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,50,23,56],well:[15,36,46,14,47,50,3,33,20,21,35,43,23,52,53,56,41],exampl:[0,2,3,4,5,6,8,10,12,13,14,17,18,20,21,22,23,25,26,27,28,29,30,32,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,30,46,14,48,17,59,31,52,33,36,23,41],achiev:12,choos:[33,21,12,56],undefin:[33,21,14,47],setx:42,subsetneqq:33,sibl:18,latest:[13,46,1,2,3,52,33,21,37,7,56,9,41],curlyeqprec:33,paus:[30,46],less:[33,46,29,4,21,35,39,57,30,27],obtain:[33,12,13,46,52,15,21,23,57,41,25],mistaken:57,mathclos:33,mathoutput:52,simultan:[59,31],web:[1,2,33,5,11,12,13,18,20,21,23,24,55,29,31,37,39,41,44,46,48,59,52,53,56,57],preprocessor:[15,12,13,29,21,30,33,36,31,45,4,34,35,28,23,52,57,41,54,37],current_them:1,detai:12,smith:47,textbf:33,cdotp:33,add:[42,15,12,13,14,1,17,50,33,4,5,35,43,23,55,56,25],cleanup:12,schedul:47,match:[44,12,39,4,35,22,27],rememb:27,webpag:37,piec:18,ntriangleright:33,punctuat:18,cpan:33,know:[44,12,47,33,20,21,40,41,25,57],cfrac:33,press:[23,52],sourceel:[20,55,25,52],tick:[33,21,35,29],recurs:[30,18],string:[0,14,44,49,50,33,19,4,35,26,23,20,30,55],loss:41,nofont:5,like:[2,4,12,29,17,18,19,20,21,24,27,14,33,47,35,37,39,40,41,44,36,46,32,48,50,52,53,54,56,57,59],lost:47,messagehook:[20,44,12,30],necessari:[12,30,2,21,24,56,41],resiz:56,page:[1,2,4,5,7,10,11,12,13,15,16,18,19,20,21,26,23,24,25,28,29,30,31,34,35,37,39,9,41,44,36,46,47,48,55,33,6,52,53,56,57,59],didn:33,captur:48,linux:[30,23],"export":55,superclass:42,proper:[33,44,12,30],home:[48,0,12,29],peter:29,librari:[16,59,45,46],glyph:[48,33,12],kern:33,rspace:33,leak:55,avoid:[12,13,29,49,18,33,36,23,56,57],thank:29,tooltip:[33,12,39,27],checkmark:33,leav:[10,29,52,33,26,58],overlai:12,uselabelid:26,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,25,27],simpler:19,varepsilon:33,about:[3,33,5,41,12,13,29,15,18,20,21,23,25,14,32,39,40,30,44,46,47,52,53,57],ams_html:[33,13,52,15,37,41],actual:[10,0,12,30,14,29,17,33,52,20,47,36,59,23,40,41,25,57],column:[12,26],mathajx:13,mod_head:[12,46],mapsto:33,constructor:42,fals:[44,12,54,39,2,33,18,6,4,32,26,23,55,8,30,42,40,27],disabl:[33,12,13,39,23],eqalign:33,own:[33,12,13,46,59,21,16,32,18,3,15,5,53,56,40,41,25,57,54],amsmath:[33,12,13,59,15,21,26,41],circledr:33,automat:[12,39,17,59,19,33,21,26,56,57,41,42,43,27],bigtriangledown:33,guard:23,"_htmlormml":[56,58],vphantom:33,merg:[10,30],w3c:12,transfer:[21,46],appl:12,bigcap:33,inner:12,arg1:47,"var":[10,33,14,59,2,52,20,47,42],arg2:47,"function":[0,12,30,59,14,44,48,17,33,2,52,20,47,31,26,53,57,41,42,43],propto:33,unexpect:23,precnapprox:33,unbalanc:12,studentansw:52,bodi:[0,13,52,21,40,41,25],gain:[56,12],posttransl:[43,25],inlin:[4,21,35,13],bug:[10,12,13,46,18,3,19,21,23,57,41],count:[12,2],made:[46,59,3,33,53,57,55,54],bbbk:33,whether:[33,12,28,39,47,30,58,2,32,52,4,34,35,26,23,8,41,55,6,27],wish:[13,47,50,2,3,33,21,30,56,41],displai:[4,5,10,11,12,41,18,19,20,21,26,23,24,25,27,28,29,32,35,37,39,30,33,36,46,48,55,6,52,56,57],distract:12,underleftrightarrow:33,asynchron:[0,45,14,44,48,17,59,52,20,47,53,30],gtrapprox:33,below:[1,4,5,6,8,10,12,41,21,26,23,25,27,28,34,35,38,40,30,22,39,32,49,33,51,53,55,57,58],limit:[10,0,36,33,32,26,41],otherwis:[0,12,45,14,55,33,19,15,21,30,7,56,40,41,42],problem:[12,13,46,29,47,18,3,52,33,21,36,56,57,41],x03c0:57,"int":33,imagedir:25,dure:[12,39,14,31,18,20,43,23,30,55,27],novemb:13,implement:[10,0,12,13,15,16,58,33,20,47,43,56,40,36,42,57],nolimit:33,inf:33,rightleftharpoon:33,probabl:[20,47,41,29,1],oplu:33,helpurl:6,definecolor:[33,12],immateri:59,percent:[22,39,27],detail:[0,4,5,6,7,11,12,13,29,15,17,18,20,21,22,23,27,28,14,30,34,35,37,38,39,9,41,44,36,46,33,51,52,53,56,57,59],arctan:33,book:48,futur:[0,3,19,20,53,56,30,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,25,57,27,37],thicksim:33,msgroup:36,stai:[56,41],sphinx:1,scientif:48,reliabl:[13,12,41,2,56],rule:[12,59,33,5,23,8],mathjax_mathml:2,portion:[57,39,27,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&#8217;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&#8217;s New in MathJax v1.1","The MathJax.Message Object","Using Signals","Getting Started","The NativeMML output processor","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The TeX input processor","The SVG output processor","The jsMath2jax Preprocessor","MathJax AsciiMath Support","The MathJax.Hub Object","The MathJax Startup Sequence","The AsciiMath input processor","MathJax TeX and LaTeX Support","The mml2jax Preprocessor","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","Using Callbacks","Glossary","Describing HTML snippets","CSS Style Objects","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","Using Queues"],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","mathjax","api/outputjax","options/TeX","options/SVG","options/jsMath2jax","asciimath","api/hub","startup","options/AsciiMath","tex","options/mml2jax","options/asciimath2jax","mathml","jsMath","options/MathZoom","options/HTML-CSS","api/inputjax","configuration","api/object","api/jax","api/signal","api/variable","installation","callbacks","glossary","HTML-snippets","CSS-styles","options/MathEvents","typeset","synchronize","options/index","api/elementjax","output","model","options/MMLorHTML","queues"]})
\ No newline at end of file
diff --git a/docs/source/output.rst b/docs/source/output.rst
index 5acf5fcae..8c1d37c67 100644
--- a/docs/source/output.rst
+++ b/docs/source/output.rst
@@ -150,11 +150,49 @@ NativeMML output processor, you are making a trade-off: gaining speed
 at the expense of quality and reliability, a decision that should not
 be taken lightly.
 
+.. _automatic-linebreaking:
+
+Automatic Line Breaking
+=======================
+
+The HTML-CSS and SVG output processors implement (most of) the MathML3
+automatic line-breaking specification.  (The NativeMML output
+processor relies on the browser's native MathML support to handle line
+breaking when it is used.)  Since line-breaking takes extra processing
+and so can slow down the mathematical output, it is off by default,
+but you can enable it by adding
+
+.. code-block:: html
+
+    <script type="text/x-mathjax-config">
+    MathJax.Hub.Config({
+      "HTML-CSS": { linebreaks: { automatic: true } },
+             SVG: { linebreaks: { automatic: true } }
+    });
+    </script>
+
+to your page just before the ``<script>`` tag that loads
+``MathJax.js`` itself.
+
+Note that line breaking only applies to displayed equations, not
+in-line equations (unless the in-line euqation is itself longer than a
+line), and that the line-breaks are only computed once when the
+equation is initially typeset, and do not change if the user changes
+the window size, or if the container changes size for some other
+reason.
+
+You can control what width is used to determine where the line breaks
+shoud occur using the ``container`` parameter of the ``linebreaks``
+block.  By default it is the width of the containing element, but you
+can make it a fixed width, or make it a percentage of the container.
+See the :ref:`HTML-CSS configuration <configure-HTML-CSS>` or
+:ref:`SVG configuration <configure-SVG>` pages for more details.
+
 
 .. _html-css-with-ie8:
 
-HTML-CSS with IE8 and IE9
-=========================
+HTML-CSS with IE
+================
 
 The performance of MathJax in Internet Explorer 8 and 9 has been
 substantially improved in version 2.0.  The HTML-CSS output processing