www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 8e0833caac6a1eb8f119faa2f99514958312dcf6
parent a9ba6f6e19766ab322751e46c4ab7c192dc933bd
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Fri, 31 Dec 2010 16:46:12 -0500

Remove references to fonts.zip because the fonts will now be part of the repo

Diffstat:
Mdocs/html/_sources/installation.txt | 64++++++++++++++++++++--------------------------------------------
Mdocs/html/installation.html | 51++++++++++++++++++++-------------------------------
Mdocs/html/objects.inv | 0
Mdocs/html/searchindex.js | 4++--
Mdocs/rst/installation.rst | 64++++++++++++++++++++--------------------------------------------
5 files changed, 62 insertions(+), 121 deletions(-)

diff --git a/docs/html/_sources/installation.txt b/docs/html/_sources/installation.txt @@ -23,10 +23,10 @@ The easiest way to get MathJax and keep it up to date is to use the `Git .. code-block:: sh git clone git://github.com/mathjax/MathJax.git mathjax - cd mathjax - unzip fonts.zip -to obtain and set up a copy of MathJax. +to obtain and set up a copy of MathJax. Note that there is no longer +a ``fonts.zip`` file, and that the ``fonts`` directory is now part of +the repository itself. Whenever you want to update MathJax, you can now use @@ -43,24 +43,19 @@ date or out of date). If MathJax needs updating, use cd mathjax git pull origin - # if fonts.zip is updated, do the following as well: - rm -rf fonts - unzip fonts.zip -to udpate your copy of MathJax to the current release version. If the -``fonts.zip`` file has been updated, you will need to remove the old fonts -directory and unpack the new one bring your installation up to date. If you keep -MathJax updated in this way, you will be sure that you have the latest bug fixes -and new features as they become available. +to udpate your copy of MathJax to the current release version. If you +keep MathJax updated in this way, you will be sure that you have the +latest bug fixes and new features as they become available. This gets you the current development copy of MathJax, which is the -"bleeding-edge" version that contains all the latest changes to MathJax. At -times, however, these may be less stable than the "release" version. If you -prefer to use the most stable version (that may not include all the latest -patches and features), use ``git tag -l`` to see all versions and use ``git -checkout <tag_name>`` to checkout that version of MathJax. When you want to -upgrade to a new release, you will need to repeat this for the latest release -tag. +"bleeding-edge" version that contains all the latest changes to +MathJax. At times, however, these may be less stable than the +"release" version. If you prefer to use the most stable version (that +may not include all the latest patches and features), use ``git tag +-l`` to see all versions and use ``git checkout <tag_name>`` to +checkout that version of MathJax. When you want to upgrade to a new +release, you will need to repeat this for the latest release tag. .. _getting-mathjax-svn: @@ -76,10 +71,10 @@ latest revision using ``svn``, use the commands .. code-block:: sh svn checkout http://svn.github.com/mathjax/MathJax.git mathjax - cd mathjax - unzip fonts.zip -to obtain and set up a copy of MathJax. +to obtain and set up a copy of MathJax. Note that there is no longer +a ``fonts.zip`` file, and that the ``fonts`` directory is now part of +the repository itself. Whenever you want to update MathJax, you can now use @@ -95,16 +90,10 @@ use cd mathjax svn update - # if fonts.zip is updated, do the following as well: - rm -rf fonts - unzip fonts.zip -to udpate your copy of MathJax to the current release version. If the -``fonts.zip`` file has been updated, you will need to remove the old -fonts directory and unpack the new one bring your installation up to -date. If you keep MathJax updated in this way, you will be sure that -you have the latest bug fixes and new features as they become -available. +to udpate your copy of MathJax to the current release version. If you +keep MathJax updated in this way, you will be sure that you have the +latest bug fixes and new features as they become available. This gets you the current development copy of MathJax, which is the "bleeding-edge" version that contains all the latest changes to @@ -118,23 +107,10 @@ archive files as described below. You can use svn checkout http://svn.github.com/mathjax/MathJax.git@nnn mathjax to check out revision number `nnn`, but it is not easy to tell what -revision number is associated with a particular release. GitHub's +svn revision number is associated with a particular release. GitHub's ``svn`` service doesn't appear to allow you to sepecify a particular tagged version. -.. If you prefer to use the most stable version (that - may not include all the latest patches and features), use - -.. .. code-block:: sh - - svn co http://mathjax.svn.sourceforge.net/svnroot/mathjax/tags/mathjax-1.0.1 mathajx - cd mathjax - unzip fonts.zip - -.. to obtain the version 1.0.1 release. When you wish to update to a new - release, you will need to check out a new copy of MathJax with the new - release number. - .. _getting-mathjax-zip: diff --git a/docs/html/installation.html b/docs/html/installation.html @@ -58,11 +58,11 @@ is easier to keep your installation up to date with these tools.</p> <span id="getting-mathjax-git"></span><h2>Obtaining MathJax via Git<a class="headerlink" href="#obtaining-mathjax-via-git" title="Permalink to this headline">¶</a></h2> <p>The easiest way to get MathJax and keep it up to date is to use the <a class="reference external" href="http://git-scm.com/">Git</a> version control system to access our <a class="reference external" href="http://github.com/mathjax/mathjax">GitHub repository</a>. Use the commands</p> <div class="highlight-sh"><div class="highlight"><pre>git clone git://github.com/mathjax/MathJax.git mathjax -<span class="nb">cd </span>mathjax -unzip fonts.zip </pre></div> </div> -<p>to obtain and set up a copy of MathJax.</p> +<p>to obtain and set up a copy of MathJax. Note that there is no longer +a <tt class="docutils literal"><span class="pre">fonts.zip</span></tt> file, and that the <tt class="docutils literal"><span class="pre">fonts</span></tt> directory is now part of +the repository itself.</p> <p>Whenever you want to update MathJax, you can now use</p> <div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax git remote show origin @@ -73,24 +73,19 @@ lines of data, but the last line should tell you if your copy is up to date or out of date). If MathJax needs updating, use</p> <div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax git pull origin -<span class="c"># if fonts.zip is updated, do the following as well:</span> -rm -rf fonts -unzip fonts.zip </pre></div> </div> -<p>to udpate your copy of MathJax to the current release version. If the -<tt class="docutils literal"><span class="pre">fonts.zip</span></tt> file has been updated, you will need to remove the old fonts -directory and unpack the new one bring your installation up to date. If you keep -MathJax updated in this way, you will be sure that you have the latest bug fixes -and new features as they become available.</p> +<p>to udpate your copy of MathJax to the current release version. If you +keep MathJax updated in this way, you will be sure that you have the +latest bug fixes and new features as they become available.</p> <p>This gets you the current development copy of MathJax, which is the -&#8220;bleeding-edge&#8221; version that contains all the latest changes to MathJax. At -times, however, these may be less stable than the &#8220;release&#8221; version. If you -prefer to use the most stable version (that may not include all the latest -patches and features), use <tt class="docutils literal"><span class="pre">git</span> <span class="pre">tag</span> <span class="pre">-l</span></tt> to see all versions and use <tt class="docutils literal"><span class="pre">git</span> -<span class="pre">checkout</span> <span class="pre">&lt;tag_name&gt;</span></tt> to checkout that version of MathJax. When you want to -upgrade to a new release, you will need to repeat this for the latest release -tag.</p> +&#8220;bleeding-edge&#8221; version that contains all the latest changes to +MathJax. At times, however, these may be less stable than the +&#8220;release&#8221; version. If you prefer to use the most stable version (that +may not include all the latest patches and features), use <tt class="docutils literal"><span class="pre">git</span> <span class="pre">tag</span> +<span class="pre">-l</span></tt> to see all versions and use <tt class="docutils literal"><span class="pre">git</span> <span class="pre">checkout</span> <span class="pre">&lt;tag_name&gt;</span></tt> to +checkout that version of MathJax. When you want to upgrade to a new +release, you will need to repeat this for the latest release tag.</p> </div> <div class="section" id="obtaining-mathjax-via-svn"> <span id="getting-mathjax-svn"></span><h2>Obtaining MathJax via SVN<a class="headerlink" href="#obtaining-mathjax-via-svn" title="Permalink to this headline">¶</a></h2> @@ -98,11 +93,11 @@ tag.</p> to use GitHub&#8217;s <tt class="docutils literal"><span class="pre">svn</span></tt> service to obtain MathJax. If you want to get the latest revision using <tt class="docutils literal"><span class="pre">svn</span></tt>, use the commands</p> <div class="highlight-sh"><div class="highlight"><pre>svn checkout http://svn.github.com/mathjax/MathJax.git mathjax -<span class="nb">cd </span>mathjax -unzip fonts.zip </pre></div> </div> -<p>to obtain and set up a copy of MathJax.</p> +<p>to obtain and set up a copy of MathJax. Note that there is no longer +a <tt class="docutils literal"><span class="pre">fonts.zip</span></tt> file, and that the <tt class="docutils literal"><span class="pre">fonts</span></tt> directory is now part of +the repository itself.</p> <p>Whenever you want to update MathJax, you can now use</p> <div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax svn status -u @@ -112,17 +107,11 @@ svn status -u use</p> <div class="highlight-sh"><div class="highlight"><pre><span class="nb">cd </span>mathjax svn update -<span class="c"># if fonts.zip is updated, do the following as well:</span> -rm -rf fonts -unzip fonts.zip </pre></div> </div> -<p>to udpate your copy of MathJax to the current release version. If the -<tt class="docutils literal"><span class="pre">fonts.zip</span></tt> file has been updated, you will need to remove the old -fonts directory and unpack the new one bring your installation up to -date. If you keep MathJax updated in this way, you will be sure that -you have the latest bug fixes and new features as they become -available.</p> +<p>to udpate your copy of MathJax to the current release version. If you +keep MathJax updated in this way, you will be sure that you have the +latest bug fixes and new features as they become available.</p> <p>This gets you the current development copy of MathJax, which is the &#8220;bleeding-edge&#8221; version that contains all the latest changes to MathJax. At times, however, these may be less stable than the @@ -133,7 +122,7 @@ archive files as described below. You can use</p> </pre></div> </div> <p>to check out revision number <cite>nnn</cite>, but it is not easy to tell what -revision number is associated with a particular release. GitHub&#8217;s +svn revision number is associated with a particular release. GitHub&#8217;s <tt class="docutils literal"><span class="pre">svn</span></tt> service doesn&#8217;t appear to allow you to sepecify a particular tagged version.</p> </div> diff --git a/docs/html/objects.inv b/docs/html/objects.inv Binary files differ. diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{Load:[0,0,1],getAllJax:[32,0,1],Log:[15,0,1],Subclass:[33,0,1],Delay:[23,0,1],Init:[33,0,1],Interest:[24,0,1],Translate:[34,0,1],Config:[32,0,1],addElement:[10,0,1],Styles:[0,0,1],ExecuteHook:[24,0,1],loadTimeout:[0,0,1],Resume:[14,0,1],Update:[32,0,1],loadComplete:[0,0,1],loadHook:[0,0,1],formatError:[32,0,1],call:[14,0,1],getJaxByInputType:[32,0,1],PreProcess:[32,0,1],Post:[24,0,1],has:[33,0,1],Signal:[23,0,1],executeHooks:[23,0,1],Set:[15,0,1],Insert:[32,0,1],addText:[10,0,1],TextNode:[10,0,1],Augment:[33,0,1],Clear:[15,0,1],Register:[34,0,1],noTranslate:[34,0,1],Typeset:[32,0,1],Queue:[23,0,1],NoInterest:[24,0,1],Suspend:[14,0,1],getJaxByType:[32,0,1],Push:[14,0,1],Element:[10,0,1],fileURL:[0,0,1],wait:[14,0,1],reset:[23,0,1],getJaxFor:[32,0,1],loadError:[0,0,1],Process:[32,0,1],Text:[45,0,1],Reprocess:[32,0,1],Startup:[34,0,1],SourceElement:[45,0,1],can:[33,0,1],MessageHook:[24,0,1],isJax:[32,0,1],isa:[33,0,1],Require:[0,0,1]}},terms:{acut:35,lvertneqq:35,reprocess:[32,45,43],mathjax_msie_fram:15,interchang:[],four:[17,49,30],prefix:[10,17,12],asymp:35,blacktriangledown:35,webfont:[5,37,17],whose:[4,26,32,21,43],under:36,preprocess:[47,32,25,43],sped:[],gimel:35,everi:[16,32],mskip:35,arcco:35,dotplu:35,affect:[45,32,30,12],isforefox:32,look:[10,35,36,37,23,1,24,41,3,15,4,17,12,6,47,32,43],eqnarrai:35,cmd:19,bigodot:35,ominu:35,math:[25,35,9,10,11,32,15,16,17,34,19,20,22,2,38,28,29,30,8,12,4,36,37,39,42,43,44,46,47],nparallel:35,showcontext:42,direct:[5,36,37,30],enjoi:[],thinspac:35,second:[0,36,30,23,26,41,44,4,5,40,19,16,8,21,49],ngeq:35,even:[0,36,23,24,14,35,2,43,16,26,40,12,44,20,47,32,49],hide:43,prejax:[47,19],neg:35,introspect:[],children:36,yoursit:2,caseywstark:[],"new":[10,24,12,30,23,43,33,49,25,3,15,16,44,18,42,45,20,8,32,21,47],net:[],mhtml:1,told:44,limsup:35,scriptscriptstyl:35,abov:[10,35,37,30,23,17,49,2,43,4,5,19,26,46,33],lessapprox:35,never:[30,2],richest:[],here:[10,24,27,23,26,49,2,43,16,17,34,19,6,32,45],met:25,lneqq:35,path:[0,1,17,6,31,12],noundefin:[35,17,12,2],interpret:[35,46,30],nrightarrow:35,forum:[17,3],bookmarklet:12,precis:[],rceil:35,indutri:[],backprim:35,circleddash:35,mathstrut:35,unix:30,brower:35,thinmathspac:36,highli:20,describ:[10,30,23,17,39,41,25,43,35,5,40,26,46,47,32],would:[35,5,7,9,10,32,14,17,40,19,45,18,22,23,26,29,30,12,33,4,37,38,41,42,43,46,47,48,49],bleed:30,vartriangl:35,ltime:35,varlambda:35,call:[0,1,2,35,5,7,32,14,15,16,18,19,21,22,23,24,26,29,30,8,12,33,34,4,37,38,39,45,49,42,43,44,9,47,48],typo:[],recommend:[46,47,30],vcenter:35,preview:[4,38,47,22,19],type:[0,1,2,4,6,8,10,32,16,17,34,19,45,31,12,36,21,49,43,44,46,47],until:[0,22,24,49,25,4,26,19,16,38,12],notin:35,displaymath:[4,12],notic:[35,12],warn:[0,5],jpg:[4,38,40,22],hold:[0,40,19,29,47,32],unpack:[17,30],slowest:46,must:[0,36,37,5,39,14,35,15,4,17,18,19,29,44,46,12,24,41],fbox:35,join:[16,35],centerdot:35,setup:[20,17,36,12],work:[10,11,36,30,26,35,2,3,43,16,17,28,44,20,46,12,33],cc0000:[41,19],textjavascript:[],tag_nam:30,root:[35,0,25],overrid:[33,5,8,34,21],mathmenu:[9,41,12,37,42],give:[24,17,41,2,16,5,40,12,18],indic:[0,12,26,14,35,25,16,17,24,34,19,45,8,32,21,47],mauch:[],impair:20,liter:4,want:[16,37,30,23,26,13,33,35,3,15,4,17,48,19,43,46,31,12,21,49],david:[],setminu:35,foirefox:[],quot:[4,37,19],hom:35,heartsuit:35,how:[0,1,2,3,35,5,6,14,15,17,40,19,22,23,24,38,29,30,32,4,37,42,44,9,47],sever:[0,30,49,43,26,47,12,21],answer:[3,43],verifi:[17,30,3],config:[25,35,5,6,7,31,9,12,15,16,17,18,19,21,22,2,26,28,29,8,32,34,4,37,38,41,42,43,46,48,49],updat:[30,1,49,43,32,45],showrender:42,lai:[46,47],diagdown:35,after:[0,37,23,26,14,49,2,42,15,16,17,34,19,43,44,30,47,12,24],befor:[0,1,3,35,6,14,15,16,40,19,18,23,24,26,29,30,32,33,34,4,36,37,39,49,43,44,46,47],wrong:36,unwis:46,konqueror:[46,32],parallel:[35,49],types:[],alignedat:35,attempt:[0,36,42],third:[49,36],leftarrow:35,perform:[24,12,23,26,39,14,49,25,3,27,16,5,34,19,43,44,32,45],greasekit:2,maintain:[16,26,19,3,44],environ:[35,3,4,17,18,12],incorpor:[],enter:[35,47,36,43],first:[16,36,49,23,26,35,2,44,43,4,17,24,40,19,6,8,12,21,47],order:[24,22,17,39,14,49,15,4,5,19,26,46,38,32,33,47],oper:[0,4,5,7,9,14,15,16,17,18,20,22,38,29,37,34,24,27,30,26,39,49,42,43,46,48],approxeq:35,endors:[],over:[10,0,37,42,43,35,17,19,29,47],fall:[5,49,17],becaus:[16,36,37,26,35,2,15,4,17,40,43,30,47,12,24,49],boxtim:35,textrm:35,appar:[46,49],afil:26,flexibl:[49,40],vari:46,smallint:35,fit:[16,42],fix:30,strang:36,better:[17,12,42],boxminu:35,drawback:46,upharpoonleft:35,persist:3,comprehens:39,easier:[24,36,30,49,35,33],moveleft:35,them:[10,0,36,30,49,17,14,35,4,5,18,12,26,16,47,32,24,41],thei:[0,2,3,35,5,7,32,13,14,16,17,40,19,18,22,24,25,26,29,30,12,34,4,36,37,38,39,41,42,43,44,9,47,48,49],precapprox:35,safe:[10,2,43],"break":[35,44,49,36],mtext:[35,17],wedg:35,widetild:35,choic:[46,32,12],dbinom:35,outputel:[],leftharpoondown:35,accommod:[],timeout:[0,23],each:[16,12,30,23,24,49,25,43,4,17,44,47,32],debug:15,side:[18,15,19,6],mean:[16,22,1,24,13,35,2,43,4,26,19,44,20,38,12],leqq:35,createel:2,resum:[14,49],leqalignno:35,mathopen:35,looparrowleft:35,logo:[],goe:[35,44,49],newli:[10,16,33],content:[10,47,36,1,39,25,49,2,43,4,17,40,19,6,46,31,32,33,8],laid:[],reader:20,forth:27,impract:30,multilin:35,love:[],situat:12,free:[45,3],standard:[35,39,41,16,17,20,46,47,12],lneq:35,angl:35,moment:[17,30],isn:16,temporari:34,isa:33,subtl:43,confus:[],mathbb:35,rang:47,mathbf:35,render:[36,25,42,4,19,20,46,47,12,48,28],yourcolleg:30,restrict:[35,30],hook:[16,0,23,24],noerror:[35,17,12,2],alreadi:[0,23,44,35,2,3,15,16,26,6,31,43,33,49],messag:[0,12,30,39,17,13,35,25,15,16,5,27,34,19,44,32,24],primari:46,tooltop:37,top:[27,30,35,17,46,12],sometim:[],underlin:35,master:44,too:[4,17,2],eqn:[],john:26,listen:[16,24,32,23],thickapprox:35,namespac:[17,12,2,23,43],tool:[49,30],tagind:18,consern:[],gtrless:35,somewhat:44,technic:39,past:[16,20,44,24],filesmatch:30,consequ:9,provid:[10,0,36,23,1,24,14,35,15,16,26,40,12,44,20,47,32,33,49,43],eqalignno:35,x2212:[17,47],tree:40,iota:35,project:[39,3],matter:[16,28],minut:30,mathtt:35,ldotp:35,modern:[20,5,12,46,11],mind:[35,1],manner:46,increment:14,seem:[26,36],rightrightarrow:35,ldot:35,ngeqq:35,latter:[16,47,40,12],client:37,supset:35,picki:[],though:[23,2,35,44,40,19,47],object:[0,25,5,10,11,32,13,14,15,16,40,19,21,23,26,29,8,12,33,34,24,27,37,39,45,41,42,43,44,9,47,49],regular:[4,19],phase:[],previewtex:[],grave:35,don:[36,26,49,2,43,16,5,46,32],dom:[10,45,49,43,16,44,34,19,32,21],doe:[35,36,23,45,2,16,26,9,48,12,20,46,8,32,21,47],declar:[36,37,41,42,5,9,29],tfrac:35,unchang:[48,43],sum:[35,23],dot:35,asid:[],delaystartupuntil:[25,19],lnapprox:35,syntax:[35,33],mediawiki:1,isopera:32,shownam:26,asynchon:43,involv:[17,12,3,44],consolid:20,layout:45,firstnam:26,mathchoic:35,ismsi:[32,25],menu:[36,37,25,42,9,19,29,6,46,31,45,47],explain:[17,12,44],configur:[25,35,5,6,7,8,11,12,16,17,18,19,20,21,22,2,26,28,29,30,31,32,34,4,36,37,38,40,9,46,47,48],apach:30,configut:40,theme:[1,6],rich:20,folder:[17,37,30],predecessor:[],infti:[35,47],report:[36,19,3],circeq:35,prepocess:[],subseteq:35,fadeouttim:5,bar:[35,33,23],patch:30,reload:42,bad:[],replacechild:2,neq:35,respond:[24,19,3],dashrightarrow:35,elimin:19,precneqq:35,result:[36,37,23,26,45,49,43,35,17,46,8,32,21,47],respons:[17,8,12,23,24],fail:[0,12,46,34,26],exectu:23,best:[0,47,12,49,46],awar:[35,0,49,36],subarrai:35,varinjlim:35,wikipedia:[39,2],circledcirc:35,gneqq:35,approach:[26,47,12,1,43],attribut:[10,41,35,38,40,47],blacktriangleright:35,extend:[20,47],jaxlist:[],synchon:16,extens:[0,25,35,5,32,16,17,18,19,22,2,38,28,29,12,34,4,27,39,41,42,43,49],add:[33,35,1,17,14,41,2,4,5,19,45,46,21],preprocessor:[35,22,38,25,27,4,17,36,19,12,47,32,43,28],advertis:[],intop:35,cot:35,triggerr:[],howev:[30,41,2,3,43,35,26,19,46,47,12,33,49],against:24,browser:[25,35,5,11,32,17,9,19,20,45,2,27,28,30,12,4,36,37,39,42,44,46,47,48],com:30,varpsi:35,preccurlyeq:35,foral:35,foobar:33,sai:[14,2,23],innerhtml:[2,43],height:[35,42],heirarchi:[],wider:3,sqsupset:35,speak:[13,47],chrome:[37,46,32,2],three:[36,30,23,26,49,5,40,44,47,34],been:[44,0,30,23,26,14,49,2,3,15,4,17,34,28,43,16,46,12,24],trigger:[46,19,29],beta2:[],interest:[16,24,39,3,44],basic:11,accpet:[],tini:35,quickli:[20,46,3],underrightarrow:35,regul:49,xxx:35,uncommon:[],ani:[0,2,3,35,5,7,9,32,14,15,16,17,18,19,45,22,23,24,26,29,30,12,33,4,36,37,38,49,42,43,44,46,48],emploi:[39,46],refexplicit:[],tanh:35,servic:[17,12,30],properti:[10,0,27,33,23,24,14,26,34,45,8,32,21],diamondsuit:35,sourceforg:[],dashboard:31,succeq:35,canb:18,lightli:46,applic:[20,17,25],tabl:36,cong:35,tediou:[],disappear:[4,38,22],amout:15,disabl:[9,37],incorrectli:30,receiv:[24,44,16,26,34,33],suggest:[5,3],make:[0,3,35,5,32,13,14,16,17,19,20,22,38,12,33,4,36,30,41,42,43,44,46,47,49],complex:[46,40],split:35,lrcorner:35,unsafewindow:2,complet:[0,30,23,26,39,14,49,44,43,16,17,34,45,46,32,24],longmapsto:35,hand:[27,15,18,19,47,36,28],fairli:40,rais:35,mkern:35,ignorepast:24,unlhd:35,squar:[35,40],redefin:[5,34],kept:16,presto:[],thu:[23,49,16,26,12,45],inherit:[13,33,8,21,45],contact:[],thi:[0,1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,48,49],idotsint:35,programm:33,everyth:[35,49,32],settimeout:[26,23],left:[36,27,25,15,35,44,18,19,6,31,12],processclass:4,identifi:[10,17,47,12,24],just:[24,36,1,23,26,41,35,17,19,6,20,47,12,49],yen:35,mathbin:35,human:[],depart:[],coprod:35,yet:[36,14,49,43,16,44,46],languag:[39,17,47,44,46],noscript:4,onload:[25,27,2,19,26],errorset:19,ell:35,had:[16,17],myconfig:[16,26],els:[26,2,43],har:[],save:[31,41,6],hat:35,jsmath:[11,47,28],"3px":41,nexist:35,loadtimeout:0,quirk:46,preserv:26,negativethinmathspac:46,background:[35,41],specif:[0,27,23,1,24,39,14,49,43,4,26,34,19,47,32,45],sqsubset:35,arbitrari:35,zoom:[36,19,29],leftrightarrow:35,underli:46,www:[17,12,2,30,42],right:[9,36,37,39,14,49,2,15,35,18,19,6,30,47,12],old:[16,30],simbl:2,deal:46,autobold:[35,12],somehow:[],percentag:[9,37,19],cfrac:35,successfulli:[0,26],interc:35,dddot:35,bottom:6,subclass:[24,27,21,34,45,8,33],circ:35,exectur:24,overcom:[46,44],condit:[0,25],getjaxfor:[16,32,21],core:[12,49,25,35,19,47,32],plu:[24,25],bold:[35,40,18,12],mathrel:35,colleg:30,repositori:30,post:[24,37,25,3,15,16,44,34],"super":33,llless:35,obj:10,nwarrow:35,slightli:[35,6],surround:[9,37],current_theme_templ:1,joomla:1,downharpoonright:35,geramond:35,encod:35,bound:[],rightsquigarrow:35,down:[31,19],shortparallel:35,sot:[],wrap:33,opportun:[],often:[17,41,47],git:[17,30],wai:[16,22,30,23,1,26,49,2,15,4,17,24,34,19,43,38,46,8,12,21,47],checkmark:35,wab:[],ngtr:35,avail:[0,22,37,30,5,45,49,42,4,17,36,19,16,20,46,38,12,33,47,9],width:[35,46,18,36,42],reli:[0,49,2,43,26,9,46,12],wordpress:[1,6],editor:6,overhead:[],rightthreetim:35,head:[1,2,43,17,6,46,31,12],form:[36,37,39,18,19,47],offer:3,forc:[12,37],epsilon:35,msbm:[],hear:[16,24],downdownarrow:35,"true":[35,12,37,23,24,25,42,4,27,19,9,7,32,33],reset:[42,23],absens:1,displayalign:19,intern:[0,36,24,39,14,49,35,19,46,8,32,21,47],tell:[17,43,2,30,46],moveright:35,nnn:30,featur:[36,30,3,16,26,29,46,33],rfloor:35,drive:30,exist:[35,33,23],ddot:35,backsim:35,jax1:[],triangleq:35,check:[0,30,24,35,26,33,17],excel:[],abovewithdelim:35,role:47,test:[10,11,36,30,44,2,43,16,17,31,32,33],tie:[25,23],smallsmil:35,scriptstyl:35,node:10,intend:33,consit:35,munderov:47,gvertneqq:35,consid:[0,12,35,3,4,47,32,45,49],markup2jax:[],configr:[],omega:35,outdat:3,faster:[46,12],bullet:35,tex2jax_ignor:4,ignor:[4,24],time:[0,2,3,35,5,10,32,15,16,17,34,19,23,26,29,12,24,30,49,43,46,47],push:[23,39,14,49,25,43,26,32],mathrm:35,doteq:35,emulateie7:46,skip:4,global:[13,46,27,23,43],skin:1,sourcesforg:[],displayind:19,millisecond:[0,37,23,42,15,5,29,32],decid:[12,42],depend:[23,43,26,6,46,12,48],show:[30,17,3,43,35,5,40,19,26,31,12,42],readabl:39,nearrow:35,varpi:35,certainli:[12,30],vee:35,vec:35,text:[1,2,35,5,6,10,15,16,17,40,19,20,45,18,22,26,31,12,4,37,38,49,43,9,47],succnsim:35,sourc:[11,36,37,49,2,42,16,9,20,30,47,32,45],string:[0,23,24,35,15,4,41,40,19,16,32,45,18],word:[4,47],exact:[],room:18,dim:35,foo:[33,23],administr:[1,6],level:[17,12,30,27],ntriangleleft:35,gui:[],item:[9,37,42,35,26,40],cooki:[10,25],div:[10,35,47,28,43],prevent:[35,22,37,38,42,4,17,18,19],slower:46,compens:9,sign:[35,43,4,17,47,12],cost:[17,12,33],rtype:[],pmb:35,rightarrowtail:35,widehat:35,xandi:33,dotsi:35,dotsm:35,appear:[35,27,30,26,42,15,16,17,19,43,6,12,45],dotso:35,repli:16,dotsc:35,dotsb:35,current:[0,37,30,1,24,45,6,46,31,33],backepsilon:35,ampersand:35,scriptel:[],inlinemath:[4,17,12,43],boost:[],defici:36,amalg:35,mathsiz:35,gener:[26,48,25,5,47,32,45],mfrac:[17,47],slow:[],modif:49,address:[17,31,30,1,6],along:[39,49,15,16,8,21],wait:[0,30,23,24,39,14,49,2,43,16,26,25,19,44,32],box:[35,0,5],html_head:1,shift:19,bot:35,queue:[24,27,23,44,13,14,49,25,43,26,39,32],overriden:32,digamma:35,varlimsup:35,macintosh:32,semant:33,regardless:43,extra:[16,35,47,19],modul:[0,31,27],prefer:[17,48,37,30,42],iepro7:2,veebar:35,visibl:[4,38,49,22,43],marker:35,instal:[11,37,30,17,35,5,6,20,46,31,12],arrowvert:35,memori:[44,45],bigr:35,visit:17,prec:35,subvers:[17,30],stylesheet:[0,27,23,24,14,25,43,44,19,6,46],perp:35,current_skin:1,bigl:35,bigm:35,eqcirc:35,checkout:30,divideontim:35,inputjax:[27,13,45,25,34,8,33],capit:13,sitaut:43,reduct:46,peopl:[],bigtriangleup:35,newcommand:35,visual:20,templat:[31,1,6],hphantom:35,easiest:[30,23,26,16,17,12],graphic:30,prepar:[49,12],cap:35,uniqu:41,risingdotseq:35,pmatrix:35,whatev:[35,1,33,49,43,16,21],cal:35,purpos:[26,47,46],getjaxbytyp:32,downharpoonleft:35,precsim:35,subseteqq:35,varprojlim:35,backslash:[35,18,19],topic:[13,11,12],exportmathml:[],phrase:17,occur:[0,36,23,24,14,49,2,42,15,16,26,34,19,12,44,32,43],eqsim:35,nuber:15,pink:35,alwai:[35,26,49,23],multipl:[35,49],trianglelefteq:35,write:[20,17,49,43,24],anyon:[],fourth:49,mathsf:35,tild:35,xhtml:[17,36,12],map:47,product:[],max:35,clone:30,spot:35,succ:35,pending_xref:[],mai:[0,1,2,3,35,5,32,13,16,17,34,19,21,24,26,30,12,33,4,36,37,45,49,9,43,44,46,47],end:[0,36,1,35,25,3,4,6,16,31,49],data:[10,0,27,37,23,33,16,26,34,45,30,8,32,21],liminf:35,newlin:[35,15],vartheta:35,preceq:35,explicit:[],uparrow:35,nsim:35,inform:[0,37,1,24,39,15,16,26,9,19,47,12],"switch":[47,28],looparrowright:35,combin:0,block:[9,37,17,5,34,19,47,12],lnsim:35,approx:35,showmathmath:9,approv:[],lsh:35,tex2math:[17,28],mapl:[],still:[24,36,23,39,49,16,17,19,29,46],pointer:33,ttf:30,dynam:[0,27,11,49,2,43,17,19,44,20,47,12],equiv:[35,46],amssymbol:[35,17,12,2],group:[0,36,3],monitor:3,polici:30,varsigma:35,bigstar:35,platform:[20,11,1,17],window:[27,23,5,2,42,15,26,43,32],alignat:35,main:[47,12,30,49,1,13,33,41,42,35,17,27,19,6,31,32,21,8],mathexampl:43,non:[10,0,47,17,14],msam10:17,halt:44,smash:35,initi:[0,27,44,35,25,42,4,17,34,19,16,47,32,45,49],contectu:46,safari:[46,32,2],natiov:9,now:[39,17,12,30,46],discuss:[10,30,2,3],nor:[5,40],term:15,name:[0,25,35,5,10,32,16,17,40,19,21,18,22,23,24,2,26,30,8,12,33,34,4,36,37,38,45,41,46],opera:[46,32,2,48],boxdot:35,separ:[36,30,41,15,16,17,9,19,12,49],messagestyl:[5,19],sideset:35,confid:20,varpropto:35,compil:26,domain:30,replac:[0,36,2,43,17,18,12,6,31,32,33,47],individu:[12,45,43],continu:[16,0,35,49,44],happen:[36,30,14,49,35,44,47],shown:[35,40,19,42,43],accomplish:[46,2,30],space:[43,35,19,46,7,12,47],internet:[0,2,42,15,35,26,19,46,47,12],formula:[43,19,29,20,46,47,12],correct:[26,2,30],simeq:35,earlier:49,ajax:[0,27,13,49,25,16,26,34,32],mime:[12,45,17,36,8,32,21,34],theori:[],underleftarrow:35,org:[17,12,2,42],ord:35,care:[35,12,2],ntrianglelefteq:35,suffici:[35,18,48],x00b1:17,synchron:[0,23,11,39,14,49,2,43,26,25,44,32,24],mscarri:36,thing:[35,17,40,43],place:[0,37,17,35,3,43,16,5,24,18,19,6,31,12,33,49],mathop:35,startuphook:[16,32],ture:9,think:[35,19,43],frequent:[4,16],lambda:35,origin:[33,35,30,24,14,2,43,16,17,45,8,12,21],lfloor:35,suspend:[16,14,49,24],directli:[49,2,43,35,26,47],spoken:[],onc:[0,30,23,24,49,25,43,35,17,28],arrai:[2,35,5,7,32,14,16,17,34,21,18,22,23,24,25,26,28,8,12,4,37,38,40,9,46,47,48],yourself:[35,14,2,19,26],submit:3,open:[11,36,30,42,17,6,20,31],predefin:19,size:[35,41,9,37,43],given:[10,0,33,23,1,24,14,35,41,15,16,26,40,49,19,45,47,32,21,34],convent:[],gif:[],ifmodul:30,evail:49,leftrightharpoon:35,averag:47,circl:35,whith:36,white:41,conveni:[17,12,33,19],myid:41,hub:[25,4,5,7,32,13,15,16,18,19,21,22,2,26,29,12,34,9,27,37,38,45,49,42,43,47,48],especi:47,programat:47,copi:[36,30,2,3,17,12,20,32],specifi:[35,5,7,10,14,16,17,9,19,18,23,24,26,29,12,4,37,40,41,42,44,46,47,48,49],lhd:35,enclos:[47,41,37,19],quad:35,than:[0,35,5,7,32,14,16,17,34,19,20,21,23,24,30,8,12,33,4,36,37,39,41,43,44,46,47,49],serv:[17,12],wide:[20,47,30],instanc:[10,33,49,34,32,45],underbrac:35,were:[16,45,43],posit:[14,37],seri:[49,40],pre:[4,5,36,30],delic:9,lnot:35,doublecup:35,openajax:[],nleftrightarrow:35,svnroot:[],argument:[24,23,49,26,12,33],hskip:35,doctyp:[46,36],mislead:[],engin:[20,11],techniqu:2,npreceq:35,note:[0,2,35,5,32,17,40,19,45,18,24,26,30,12,4,37,41,42,43,46,47,48,49],x2260:17,take:[0,23,1,5,49,25,3,43,35,17,18,26,44,12],noth:[26,23],channel:[16,39],updownarrow:35,begin:[16,35,25,43,4,18,46,47,12,49],sure:[35,30,24,49,2,3,43,4,17,46,12],windowset:42,normal:[35,23,41,2,4,19,47],track:[47,3],udpat:30,beta:[35,17],pair:[10,0,12,23,41,4,40,16,8,32,21,18],fileurl:0,beth:35,latex:[11,39,35,4,17,19,20,47,12],textarea:4,proud:[],sale:9,typeset:[0,25,4,15,16,9,19,20,45,22,2,38,29,32,27,37,26,39,49,42,43,44,47],badg:3,sigma:35,mathfrak:35,showmathmenu:37,newenviron:35,autoreset:23,parentnod:2,unprocess:[32,45,43],permiss:[17,30],hack:46,corner:[27,19,15],label:[35,12,42],xml:[20,39],insruct:1,onli:[0,1,2,3,35,5,32,17,40,19,20,45,24,26,30,12,4,36,37,39,41,43],explicitli:[35,26,4,17,12,33],activ:[36,23,39,3,43,44,46,47],written:[17,6],inlinedelimit:35,otim:35,black:35,offici:[],geq:35,mypic:[4,38,40,22],nearli:[35,12],variou:[24,37,1,13,41,16,5,9,8,12,47],get:[10,11,36,37,30,23,26,49,2,15,35,17,24,9,19,46,43,33],cannot:35,ncong:35,downarrow:35,requir:[0,23,35,2,16,26,34,20,47,32,21,49],prime:35,lceil:35,mathpunct:35,enspac:35,intermitt:[27,15],shortmid:35,retypeset:43,where:[0,1,25,3,35,5,8,10,32,15,16,17,18,45,23,26,30,31,12,27,37,21,41,43,44,47],wiki:[17,47,2],lozeng:35,obejct:14,ismac:[32,25],concern:[47,32],detect:23,parent:[10,33],enumer:35,sponsorship:[],enough:[49,40],between:[35,23,26,49,42,16,17,46,47,32,45],maltes:35,"import":[13,0,49,44,16],across:[39,46],rahter:[],august:[],longleftrightarrow:35,vdot:35,screen:[0,49,43,20,15,21],obscen:[],negmedspac:35,come:[36,30,49,2,26,46,47,12],leftleftarrow:35,img:[22,41,2,4,38,40],timout:0,pertain:17,audienc:46,overbrac:35,mani:[35,12,44,41,4,26,32,49],color:[35,41,40,19],operatornam:35,period:[0,27,30],pop:[],colon:[35,41],unrend:[],cancel:23,pod:35,bigcirc:35,msrow:36,needlessli:26,skew:35,mark:[35,36,41,4,17,28,47,12],addit:[0,36,49,23,5,14,35,43,16,17,19,26,45,8,32,21,41],textnod:10,succapprox:35,fade:5,arcsin:35,refdomain:[],resolut:20,mathplay:[46,12,2,19,42],breve:35,quick:[],texfont:5,blacktriangl:35,former:[],those:[35,36,30,49,23,26,14,41,47,43,16,5,24,40,19,45,20,8,32,21,34],manu:42,"case":[35,37,23,26,33,41,2,43,16,17,40,19,45,30,47,12,21,49],kappa:35,oldstyl:35,addtext:10,invok:46,margin:18,opera10:37,advantag:[46,49,1],barwedg:35,leadsto:35,henc:30,worri:[16,47],destin:32,updatemath:43,jax2:[],bigwedg:35,develop:[39,36,30,3],author:[15,34,19,29,20,47],media:[41,30],postjax:[47,19],same:[16,22,30,24,35,44,4,38,6,12,21,49],html:[1,25,35,5,7,9,10,11,32,13,16,17,40,19,21,22,2,38,27,30,31,12,4,36,37,39,41,42,43,44,46,47,48],pad:[10,41],knuth:39,mathvari:47,document:[0,22,39,11,13,35,2,43,4,17,36,19,12,20,46,38,32,21,47,28],exhaust:12,finish:[39,44,49,2,43],vvdash:35,nest:[36,27],availablefont:[5,12,37],someon:[],longleftarrow:35,capabl:[13,20,12,46],formaterror:32,displaystyl:[35,43],extern:[0,27,26,49,16,44,32],submenu:[19,42,6],appropri:[35,16,17,28,47,8],macro:[35,17,18,19,12],markup:[35,0,47,36,39],leftharpoonup:35,overwithdelim:35,without:[0,36,37,35,16,26,9,47],model:[11,27,13,25,35,46,47,33],altertn:46,bigotim:35,stixfont:5,mml2jax:[36,38,2,17,19,47,12],loaderror:0,when:[0,25,35,5,6,7,9,12,13,14,15,16,17,40,19,20,21,18,22,23,24,26,27,28,29,30,8,32,33,34,4,36,37,38,39,45,49,42,43,44,46,47,48],rest:[0,36,49,43,17,20,47],speed:[46,47,12],versu:49,mathzoom:[41,12,29],nleqq:35,except:[17,12,44],littl:[0,24],blog:[17,47],earli:12,hover:[42,19,29],around:[35,12],read:[16,17,40,36,30],outermost:40,boldsymbol:[35,12],messsag:15,hander:19,moo:33,dispatch:[],amp:35,lasterror:32,mod:35,oslash:35,cdot:35,integ:32,server:[37,1,2,17,6,30,31,12],either:[0,30,1,24,13,41,2,16,17,40,29,46,32,48,18],output:[2,35,7,11,32,16,17,34,19,45,27,12,33,9,36,37,39,21,41,42,43,46,47,48],manag:[10,27,30,1,26,39,25,15,17,46,47],lesssim:35,searrow:35,sqcup:35,inlin:[4,17,12],constitut:13,slice:23,easili:[20,17,47],definit:[0,37,41,42,9,29,20],iff:35,shoveright:35,inputid:45,dashleftarrow:35,mathcal:35,variuou:16,complic:[46,40,36,48],refer:[11,30,17,45,2,43,16,5,24,34,26,44,32,33],power:[49,3],inspect:32,broken:47,fulli:[49,36],regexp:4,"throw":[34,2],trianglerighteq:35,assocait:43,underwai:49,greater:35,ddddot:35,act:[35,26,39,49,16,17,18,19,47,12],industri:39,processor:[9,36,37,49,39,41,25,42,35,17,18,46,7,12,48,47],hookrightarrow:35,nobreakspac:35,routin:[10,0,44,26,34,8,32,21],effici:[12,33,43],elementari:36,lessdot:35,triangledown:35,compos:36,rightharpoondown:35,mathbackground:35,your:[0,1,2,3,35,5,6,7,9,11,12,17,18,19,20,22,26,28,29,30,31,32,4,36,37,38,39,40,49,42,43,44,46,48],sqsupseteq:35,fast:[],log:[35,17,30,15],area:[18,15],aren:[],fontwarn:[5,12,19],lor:35,start:[0,30,49,23,11,35,25,44,47,16,17,40,19,6,31,24,34],interfac:[30,1,17,6,20,31],lot:[16,30],machin:[39,30],verbatim:[],buggi:35,categor:12,longer:[24,15],overleftarrow:35,mathml:[11,36,39,45,2,47,35,17,9,48,20,46,7,12,21,8],furthermor:[49,19],possibl:[0,36,30,23,5,41,15,17,19,26,46,47,12,33,49],"default":[0,25,35,5,7,32,15,17,18,19,21,22,23,38,29,30,8,12,34,4,37,42,9,47,48],processescap:[4,12],buildrel:35,sepecifi:30,notag:35,embed:36,connect:[26,47],creat:[0,25,3,10,15,16,34,45,23,26,8,33,24,27,30,39,21,49,42,44,47,41],certain:[16,24,44],leftrightsquigarrow:35,twoheadrightarrow:35,varliminf:35,file:[0,1,2,35,5,6,8,32,14,15,16,17,40,19,21,23,25,26,28,31,12,34,24,30,39,45,41,44,46,47,48,49],outputjax:[27,13,45,25,34,21],fill:[46,48],again:[0,12,45,43,35,8,32,21],iiiint:35,googl:3,pmod:35,mathematica:[],hybrid:[],prepend:[],valid:[26,46],you:[1,25,3,4,5,6,7,9,12,13,14,15,16,17,18,19,20,21,22,23,2,26,28,30,31,32,33,34,35,36,37,38,40,41,42,43,44,46,47,48,49],trash:45,architectur:[],mathjaxsetup:[],sequenc:[11,14,35,25,16,44],symbol:[35,17],dashv:35,cb2:[],briefli:17,cb1:[],menuset:[19,29],reduc:35,mathcolor:35,lbrace:35,gtrapprox:35,descript:[22,38,2,4,5,27,19],lbrack:35,hello:26,calle:33,potenti:49,escap:[18,12],dst:32,negthickspac:35,represent:47,all:[0,1,2,35,5,11,32,15,16,17,34,19,20,22,23,24,26,27,12,33,4,36,30,38,39,49,44,46,47],consider:[17,12],illustr:43,performth:[],lack:[],dollar:[4,17,35,12,43],asynchorn:[49,43],abil:[46,47],follow:[16,37,23,26,13,35,25,43,4,17,40,41,30,47,12,33,34],alt:[2,19],disk:[12,30],multlinewidth:18,scr:35,articl:39,init:33,program:[27,1,44,13,45,49,25,17,20,47,33],smile:35,programmat:[],multlin:[35,18],vert:35,fals:[35,12,37,24,2,42,4,9,19,7,32,33],varrho:35,prooblem:35,"1px":[10,35,41],verb:35,mechan:[24,23,14,49,25,16,44,33],difficult:[26,36,44],loadcomplet:[0,32,34],veri:6,ticket:[],preferredfont:37,list:[25,35,5,6,7,31,32,16,18,19,45,22,23,38,29,8,12,4,37,21,49,42,43,9,47,48],emul:46,adjust:[37,17,9,2,43],plain:35,small:[35,47,18,15],preceed:[4,19],teh:[],getalljax:[32,43],adust:[],lll:35,tex:[2,35,5,7,11,32,16,17,18,19,20,22,27,28,30,8,12,34,4,36,37,39,49,43,46,47],zero:14,design:[20,31,36,2,3],pass:[0,12,23,24,14,49,25,42,16,26,47,32,33],overlin:35,further:[14,47,49],what:[11,22,37,23,38,35,12,3,43,4,5,36,19,29,20,30,47,32,42,9],sub:27,section:[2,35,5,7,32,17,9,19,18,22,26,28,29,31,12,4,36,37,38,42,46,48],advanc:[13,11,20,12],abl:[37,23,17,2,43,16,5,19,6,20,30,31,12],delet:37,version:[11,27,30,25,2,3,43,17,34,29,45,8,32,21],sup:35,method:[10,0,12,33,23,24,14,49,2,44,15,16,26,34,43,45,8,32,21],hasn:[0,34,15],full:[0,13,4,26,19,20],themselv:[40,32,25,27],variat:12,geqslant:35,modular:[20,36],ggg:35,trunk:[],ineffici:[33,19],modifi:[11,43,16,34,32,21],valu:[0,25,4,5,7,10,32,14,16,40,19,18,22,23,38,29,12,33,9,36,37,26,41,42,43,47,48,49],search:[20,11,32,3],sender:16,collater:[],prior:19,amount:[5,18,23],pick:[],action:[0,2,35,32,14,15,16,34,21,23,25,26,29,8,12,24,27,39,49,43,44,47],mathjax_wikipedia:2,magnitud:46,llap:35,via:[0,36,37,23,1,17,45,49,2,15,16,5,29,30,46,47,12,33],shorthand:43,textit:35,href:40,inappropri:16,emptyset:35,famili:[35,0,41],decrement:14,select:[46,32,36,42,9],proceed:[49,40],x41:35,distinct:[13,12],mathja:[31,6],regist:[0,24,39,25,16,44,34,8,32,21,47],two:[35,49,44,41,16,17,40,19,46,12,18],offseti:37,taken:[16,35,49,43,46],imath:35,ispc:[32,25],more:[5,32,14,17,9,19,20,23,26,30,8,12,33,24,37,39,40,41,43,44,46,47,48,49],flat:35,diamond:35,desir:[33,2,30],mlongdiv:36,ital:[0,19],flag:[],aleph:35,particular:[10,0,30,23,26,39,14,41,35,17,24,44,46,47,32,33],known:49,upsilon:35,mathml3:36,cach:16,showmathmenumsi:9,none:[24,22,37,23,38,4,26,19,47],mmlorhtml:[46,48,12,2,19],det:35,dev:3,histori:[16,24,25,39],remain:39,paragraph:[35,5,47,43],caveat:30,def:[35,33],deg:35,"_mathml":[],scan:32,myspan:40,registr:34,share:[17,12,30,3],accept:[26,23,43],succneqq:35,minimum:32,explor:[0,2,42,15,35,26,19,46,47,12],sharp:35,mathinput:43,huge:35,cours:[49,36],goal:20,awkward:33,secur:[30,2],rather:[0,35,5,7,14,16,17,34,19,20,21,23,8,12,33,4,36,30,41,43,44,46,47,49],anoth:[24,30,43,14,49,15,16,44,8,12,47],comfort:30,csc:35,snippet:[10,11,22,38,3,4,5,40,19,32],ddagger:35,stix:[37,39,35,5,47,12],simpl:[46,40,19],css:[0,2,35,5,7,11,32,17,9,19,45,27,29,30,12,36,37,39,21,41,42,43,46,47,48],unabl:5,regener:[],resourc:[17,12],referenc:5,faculti:[],variant:39,reflect:[25,43],vdash:35,mstack:36,impliedbi:35,associ:[9,37,23,45,26,34,30,8,32,21,47],curlywedg:35,mytim:26,github:30,onto:[39,17,49,32,43],ambigu:13,caus:[0,36,30,26,45,35,42,15,4,17,27,18,19,43,16,47,32,24,49],callback:[0,27,23,24,13,14,49,25,44,43,16,26,39,45,8,32,21],firefox3:37,merror:41,unrhd:35,help:[30,42,17,3,46,12],soon:[12,2,19,43],trade:46,reftyp:[],through:[35,36,30,24,49,42,16,44,46,47,12,33],hierarchi:[12,30],paramet:[10,0,22,33,23,26,14,15,17,24,18,19,12,38,8,32,21,34,43,45],style:[10,0,37,11,39,35,25,42,15,4,5,40,19,29,41,9,47,32,45,17],arial:35,nifti:[],border:[10,35,41],x221a:36,processupdatetim:32,x221e:47,late:[39,2],isreadi:[27,25],pend:14,amsmathaddit:49,processenviron:4,speech:[],might:[0,36,30,17,49,3,16,26,18,47,12],alter:[4,43],good:[49,2,3],"return":[10,0,36,33,23,24,14,49,44,15,16,26,34,43,45,8,32,21],textstyl:35,hslash:35,framework:[],getelementbyid:43,rlap:35,mathscr:35,instruct:[1,2,17,40,6,31],bigcup:35,did:26,achiev:[],iint:35,found:[0,8,19,3,26],unicod:[35,5,36],x2211:47,button:30,subsystem:25,originaltext:45,transform:47,weight:[40,33],hard:[12,30,3],realli:26,nless:35,expect:[35,46,49,12,19],beyond:3,orient:[13,33,27,25],webserv:[],nleq:35,internext:[],shortcom:44,skiptag:4,publish:[],movabletyp:[],print:[20,41,30],occurr:44,msie:[9,32,48],foreground:41,qualifi:[],safari3:37,userscript:2,ast:35,offsetx:37,mml:[48,47,27,45],reason:[0,36,26,49,2,42,15,35,17,34,12,46,32],base:[27,37,30,1,44,13,2,25,5,34,45,20,46,33],typeet:43,ask:[47,18,3,43],mathr:35,asn:47,basi:[46,48],succnapprox:35,bring:[47,30],drupal:1,msbm10:17,showprocessingmessag:[12,19],perhap:26,bumpeq:35,elementjax:[13,45,34,25,27],stixgener:35,getelementsbytagnam:2,assign:[4,26],major:[20,46,12,2],dont:47,boxplu:35,feel:3,exchang:39,lastnam:26,number:[0,27,30,23,5,45,49,15,17,40,34,19,26,8,32,21,18],fadeoutstep:5,done:[14,47,12,49],construct:[47,49],blank:[24,23,43],stabl:30,miss:[35,23],differ:[35,12,30,23,26,49,43,16,17,44,46,47,32,33],script:[0,12,30,1,25,49,2,43,4,17,47,34,19,6,16,31,32,21,8,45],interact:[20,17,47,45],smoother:5,least:[46,47,32],statement:[49,23],illeg:40,store:[10,24,27,37,23,45,49,43,26,8,32,21,47],option:[35,5,6,7,32,17,40,19,18,22,38,28,29,12,33,34,4,37,42,9,47,48],nleftarrow:35,triangleleft:35,ntrianglerighteq:35,selector:[41,19,15],tex2jax_process:4,part:[16,36,30,23,44,35,2,4,17,18,6,20,47,33,49],pars:35,binom:35,cosh:35,kind:47,whenev:[24,36,30],remot:30,remov:[24,30,43,45,15,4,19,47,32,21],dtd:[17,12],bridg:45,arrang:23,ffff88:41,comput:[30,32,37],nleqslant:35,packag:[39,30,28],expir:10,"null":[10,0,22,37,23,24,33,2,15,4,5,27,34,19,43,38,8,32,21,45],imagin:[],xref:[],built:[11,2,46],equival:[10,23,49,43,26,40],lim:35,self:36,also:[2,3,35,10,13,15,16,17,9,19,45,23,26,12,33,4,36,37,39,42,43,44,47],brack:35,build:[],brace:35,index:[17,30,1],addel:10,ngeqslant:35,most:[27,30,1,23,39,2,41,25,16,34,46,12,33],plan:17,rho:35,alpha:35,rhd:35,vardelta:35,clear:[24,37,23,25,15,16],tpl:1,exp:35,starup:19,usual:[23,26,49,35,5,34,19,47],leftroot:35,nshortparallel:35,carefulli:[40,43],finv:35,particularli:[46,30],rightleftarrow:35,font:[0,37,5,39,41,42,15,35,17,40,19,43,44,20,30,47,12,18,9],fine:[],find:[3,43,5,28,6,46,47,32],preremoveclass:19,surd:35,execut:[0,23,14,49,25,16,26,47],pretti:30,ruin:[],solut:[17,47,30,3],delayedx:23,"public":30,couldn:26,queu:[14,49,23,24],factor:[9,37,19],tagsid:[18,12],precnsim:35,express:[4,16,49,19,24],strut:35,nativ:[36,13,2,20,46,47,12,48],proces:[],greasemonkei:[12,2],donald:39,notransl:34,restart:[4,14,49],ie8:46,ie7:46,ie6:37,vmatrix:35,common:[36,1,39,35,5,40,12,32,34],set:[0,25,35,5,7,10,32,15,16,17,40,19,45,18,22,23,24,2,26,28,29,30,12,33,4,27,37,38,39,41,42,43,44,9,47,48,49],overrightarrow:35,startup:[11,27,2,49,25,43,16,34,19,32],see:[0,3,35,5,6,8,32,14,16,17,9,19,22,23,24,26,28,29,30,31,12,4,36,37,38,39,41,42,43,44,46,47,49],sec:35,arg:35,disadvantag:46,langl:35,someth:[4,30,19,3,43],particip:3,won:[49,30],subscript:35,experi:[30,19],altern:[0,35,26,47,12,33],numer:[32,36],complement:35,javascript:[0,1,2,5,6,11,13,16,17,40,19,20,45,18,23,26,29,31,12,33,9,27,37,39,41,42,44,46,47,49],mailbox:[16,39],bmatrix:35,solv:2,longrightarrow:35,classnam:2,popul:25,bodi:[0,43,17,8,12,21],last:[0,12,30,23,14,41,35,32],delimit:[4,17,35,12,47],hyperlink:47,event:[39,2,43,16,44,47],nvdash:35,context:[4,42,19,23],overset:35,hbar:35,whole:[22,44,43,4,38,32],load:[0,1,2,35,11,32,14,15,16,17,34,19,20,21,23,25,26,28,8,12,24,27,30,39,49,43,44,46,47],markdown:47,simpli:[35,22,30,23,38,14,43,4,26,34,19,12,20,8,32,21,28],point:[35,14,17],instanti:33,schedul:26,etra:[],header:[30,1,6],param:[],linux:32,bigve:35,mistak:40,zeta:35,throughout:[],gneq:35,bigtriangledown:35,empti:[27,37,23,49,25,47],dur:32,strategi:46,invis:30,fire:[25,2,26],refdoc:[],imag:[22,37,38,2,4,5,40,20,30],descib:17,coordin:[14,47,49],understand:47,urcorn:35,educ:[],sqcap:35,blacksquar:35,bbfont:35,solid:[10,35,41],formath:[],pitchfork:35,lvert:35,"while":[10,0,36,30,5,48,35,2,16,17,34,19,44,46,47,12,24,49],blacktriangleleft:35,nprec:35,behavior:19,circlearrowright:35,mbox:35,everyon:16,loop:45,subsect:34,measuredangl:35,readi:[16,34,25,27],eqslantless:35,biguplu:35,itself:[35,36,30,23,24,14,41,25,16,27,19,12,45,47,32,33,49],costli:[],rightarrow:35,xleftarrow:35,manang:[],redisplai:15,unexpectedli:17,conflict:47,upuparrow:35,optim:46,domin:39,alert:[16,26,49,23],jsmath2jax:[22,28,12],pulicis:24,user:[35,36,37,30,23,43,2,3,15,16,5,9,19,29,20,46,47,12,42,28],robust:[16,39],wherev:[],typic:[4,35,30],recent:[20,2],lower:[35,27,25,19,15],task:35,getjaxbyinputtyp:32,entri:[39,14,41],searchabl:20,person:26,expens:46,normals:35,scriptsiz:35,fallingdotseq:35,explan:[17,12],rvert:35,obscur:15,mathinn:35,world:[20,26],succsim:35,cut:[],cup:35,blacklozeng:35,ffeeee:35,notifi:16,input:[2,35,7,32,16,17,18,19,45,27,28,8,12,33,34,36,39,21,49,43,46,47],unlik:[20,34],subsequ:35,sum_:47,trueli:43,format:[11,36,37,39,45,9,35,17,40,19,20,46,8,12,21,47],big:[35,12,30],moodl:1,tomathml:45,game:35,insert:[22,23,2,4,38,34,19,12,6,31,32,21,47],nofont:5,bit:[9,33],characterist:[],diagup:35,semi:41,varkappa:35,signal:[24,27,23,44,13,25,16,26,34,39,32],altough:26,collect:[26,41,45,49,23],"boolean":32,popular:[17,28,1],swarrow:35,stackrel:35,lastest:3,creation:[8,25],some:[1,35,5,32,13,14,16,17,34,19,20,45,23,26,30,8,12,33,9,36,37,21,49,43,46,47,48],back:[5,45],emph:35,sampl:[30,44,41,16,17,19],mirror:[],scale:[20,9,37,19],culprit:[],delimt:4,prop:[],mathemat:[0,2,35,5,6,8,9,32,16,17,18,19,20,21,22,38,28,29,30,31,12,34,4,36,37,39,45,49,42,43,46,47],larg:[35,0],extension2:[],slash:12,prod:35,reproduc:43,sqsubseteq:35,tex2jax:[35,36,2,43,4,17,27,19,47,12],cgi:0,garamond:35,previou:[26,49,24,23,15],run:[0,2,4,5,7,32,14,16,17,18,22,23,25,38,30,12,24,36,37,26,49,9,43,44,46,47,48],doteqdot:35,odot:35,step:[5,47,1,17],hookleftarrow:35,impor:30,react:24,materi:43,retain:[],exportaud:[],microsecond:[],rangl:35,succcurlyeq:35,gamma:35,file3:49,file2:49,file1:49,file4:49,bmod:35,within:[0,36,30,23,5,13,35,25,12,43,4,17,18,28,26,44,47,32,33],todai:39,isjax:32,announc:44,inclus:[],span:[22,4,38,40,19,47,28],question:[17,34,3],textual:[],custom:[15,35,17,20,46,12],handler:[0,27,39,2,25,43,44,47],includ:[0,1,25,35,5,7,9,12,13,16,17,40,19,20,18,22,23,2,26,27,28,29,30,8,32,34,4,36,37,38,41,42,43,46,47,48,49],suit:[5,36,17],nativemml:[36,48,42,9,46,47,12,21],overleftrightarrow:35,ulcorn:35,properli:[0,36,30,5,45,49,2,43,26,32,33],poster:24,atop:35,loadhook:[0,32,26],serif:[35,0,41],link:[30,1,17,13,5,44,12],translat:[8,34,21,47],delta:35,line:[35,22,30,1,2,25,4,17,36,46,47,12],consist:[35,46,49,40,36],rmoustach:35,qquad:35,bigg:35,geqq:35,similar:[44,23],workflow:36,enlarg:29,constant:16,doesn:[35,37,23,45,2,16,19,30,33],repres:[10,22,17,41,15,4,5,40,19,20,38,21,47],mathdiv:[10,26,49,43],tbinom:35,home:0,constortium:20,improv:[46,19,3],phantom:35,extension1:[],iiint:35,titl:[17,43],sequenti:[44,49],invalid:[35,40],llcorner:35,toaudibl:45,bracket:[40,19],shoveleft:35,xrightarrow:35,department:30,supseteq:35,delayclear:37,msup:[17,47],alttext:38,eval:23,enhanc:47,svn:[17,30],rightharpoonup:35,land:35,mimetyp:[45,8,34,21],svg:47,confirm:[],supseteqq:35,depth:35,far:[0,24,15],scroll:31,prototyp:33,code:[0,2,3,35,6,10,11,32,14,16,17,40,19,22,23,24,25,26,12,4,27,38,39,41,43,44,9,49],partial:35,edg:30,queri:47,tiddlywiki:1,edu:[30,2],privat:[44,34,30],elsewher:43,send:[16,24],becam:39,sens:47,fatal:[],sent:[16,24,32,39],actiontyp:37,unzip:30,gnsim:35,defamatori:[],mous:[47,37,42,29],untouch:[],tri:[35,0,37,30],ischrom:32,mathit:35,notabl:[],forefox:2,curvearrowleft:35,"try":[33,3,16,17,34,8,21],my_config:[],maction:37,pleas:[17,40,12,3],impli:[35,36],smaller:0,fortun:16,natur:[20,17,35,30,47],varupsilon:35,download:[0,30,5,17,19,47],fullnam:26,hspace:35,click:[30,42,9,19,29,6,37,47],append:10,compat:[39,46],appendchild:[10,2],compar:12,access:[24,30,1,26,45,49,42,35,17,20,33],clipboard:[],mathjax:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49],can:[0,2,3,35,5,10,12,14,15,16,17,34,19,20,21,23,24,25,26,27,28,30,8,32,33,4,36,37,39,41,9,43,44,46,47,49],vargamma:35,closur:[26,23,43],leq:35,let:[36,30,2,42,17,40,46,32,48],sinh:35,becom:[36,30,23,49,3,16,33],sinc:[0,36,49,23,24,14,35,9,43,16,17,18,19,12,44,46,47,32,33,41],tex4ht:47,rtime:35,convert:[11,36,23,35,2,4,28,20,47,21],produc:[35,37,23,17,45,42,43,16,5,24,18,19,26,20,46,47,12,21,9],convers:35,larger:47,technolog:[20,3],later:[24,36,37,23,14,49,35,26,32],zscale:19,circledast:35,chang:[9,12,37,1,43,2,42,15,18,30,47,32,45],chanc:[4,16,24],firefox:[12,30,2,46,32,48],rgroup:35,appli:[35,33],iskonqueror:32,lessgtr:35,api:[13,11,20,17],smallmatrix:35,from:[0,1,25,35,11,32,16,17,18,19,21,22,24,2,26,28,30,8,12,33,34,4,27,37,38,45,49,42,43,46,47],zip:[17,30],commun:[16,11,3,17],chi:35,doubl:[18,19,29],upgrad:[5,30,3],varphi:35,next:[35,44,45,43],few:[35,17,30,28],msqrt:[17,47],reftarget:[],bowti:35,dash:[41,37],comparison:[49,32],impress:[],doublebarwedg:35,projlim:35,"4ac":17,actual:[10,0,36,23,14,35,43,16,26,19,12,8,32,21,49],versionatleast:32,account:[],alik:2,retriev:10,augment:[33,8,34,21],aperson:26,thin:18,assum:[17,31,43,6],control:[35,22,37,30,17,41,12,42,4,5,18,19,29,38,46,7,32,48,9],tau:35,lesseqgtr:35,process:[0,2,35,10,11,32,14,15,16,17,34,19,21,22,25,26,28,8,12,4,36,38,45,49,43,46,47,48],dfrac:35,newmath:43,high:[20,46,47],tag:[1,25,35,6,32,16,17,40,19,45,18,2,38,28,8,12,4,36,30,21,43,47],tan:35,prece:26,delai:[0,37,23,24,42,15,16,19,29,30],gcd:35,getelementsbytagnamen:2,subdirectori:[45,8,21],instead:[35,30,17,14,49,43,16,26,47],class4:33,class2:33,sin:35,sim:35,class1:33,simplesup:33,frac:35,overridden:[37,21,34,45,8,33],mspace:[35,36],anothermethod:33,frak:35,redund:[33,19],essenti:[35,47,33],light:[35,33],correspond:[32,37],element:[25,35,5,10,16,17,40,21,22,24,38,27,8,32,33,4,36,37,45,41,43,44,47,49],issu:[0,36,3,15,17,47,12],unaccept:46,allow:[35,36,37,1,26,39,41,2,42,15,16,17,24,40,19,29,20,30,33,49,9],fallback:[30,37],mjx:10,fastest:46,nonumb:35,move:[30,37],nsucc:35,comma:[35,41,12,2,19],dagger:35,mathjax_tooltip:37,movabl:[31,1],coth:35,varxi:35,therefor:35,pixel:37,multimap:35,crash:19,pure:36,handl:[0,36,44,39,35,2,27,16,5,34,9,32,48,49],innermost:40,handi:[],"05em":35,mention:[],successor:28,gggtr:35,somewher:[],anyth:[16,12,3],edit:[17,12,1],smallfrown:35,prepackag:[],mode:[35,37,4,17,46,47],varomega:35,"2em":35,mod_head:30,subset:35,delaypost:37,consum:15,nointerest:24,src:[22,1,38,49,2,43,4,17,40,12,6,31,32],"static":33,our:[30,3],rightleftharpoon:35,helpurl:42,special:[35,36,26,41,4,17,19,12,44,20,46,47,32],out:[0,30,49,37,16,5,9,46,47],variabl:[27,23,13,2,25,43,35,26,33],lesseqqgtr:35,matrix:35,categori:49,rel:[0,9,37],moveabl:[31,1],circlearrowleft:35,ref:32,red:[35,17,40,12],negthinspac:35,nsucceq:35,insid:1,configurbl:[],manipul:43,eqslantgtr:35,releas:[17,2,30],afterward:26,indent:[18,19],could:[0,36,26,13,49,3,43,16,17,47,32,45],put:[0,30,44,2,35,17,12],mac:[9,32,37,19],timer:[],keep:[30,1,39,43,35,17,46,47],gtreqqless:35,length:[2,23],outsid:[4,46,12],"0em":19,uproot:35,softwar:[20,17,47],rbrace:35,blogger:[],rbrack:35,qualiti:[20,46,47],spadesuit:35,date:[17,30],uplu:35,clubsuit:35,bigsqcup:35,"long":[35,49,42],strict:[46,30],unknown:36,system:[30,1,17,3,35,5,20,46],wrapper:[],attach:[16,24,44],termin:4,"final":[26,35,17,40,20,47,12],rsh:35,juli:[],"1em":36,gtreqless:35,blind:47,gtrdot:35,structur:[0,12,23,39,43,16,26,27,32],charact:[35,36,37,41,4,5,18,19,47],htaccess:30,seriou:47,biggl:35,biggm:35,rrightarrow:35,favorit:[],unkown:32,have:[0,1,2,3,35,5,6,32,16,17,34,19,45,23,24,26,30,31,12,33,4,36,37,49,9,43,44,46,47],close:[5,36,12,3],need:[0,1,2,3,35,5,6,8,12,14,15,16,17,18,19,20,21,23,25,26,30,31,32,33,34,4,36,37,39,45,41,43,44,9,47,49],turn:[10,24,36,23,4,9],biggr:35,woudl:[],min:35,mid:35,decis:46,msam:[],which:[1,25,35,8,12,15,16,17,40,19,21,18,22,23,24,2,26,27,28,29,30,31,32,33,34,4,36,37,38,45,41,43,46,47,49],hbox:35,mit:35,singl:[0,27,23,44,13,41,43,4,17,20,12,49],declaremathoper:35,mathjax_preview:[22,41,4,38,19,47],x22d6:35,unless:[17,12,23,46],bboxfor:[],who:[16,24,3],eight:46,leftthreetim:35,why:[],underset:35,url:[0,12,2,42,17],gather:35,request:[0,24,35,16,26,46,49],face:[30,3,5,18,37,12],inde:[12,2],nmid:35,determin:[12,37,1,25,35,9,19,32],flux:49,fact:[24,34],getalljaxfor:[],backsimeq:35,mathjax_messag:15,leftarrowtail:35,verbos:[39,26,19],perfom:44,perfor:46,bracevert:35,woth:36,curlyeqsucc:35,lgroup:35,locat:[0,22,30,17,25,2,43,4,5,19,12,16,38,32,21,47,28],jax:[25,7,32,13,16,17,18,19,45,2,28,8,12,33,34,9,27,37,39,21,41,43,46,47,48],vartriangleright:35,forev:2,should:[2,35,6,8,32,14,17,40,19,21,22,23,24,26,28,31,12,34,4,36,30,38,41,43,46,48,49],imagefont:[5,37],vartriangleleft:35,suppos:[26,43],"5px":10,triangleright:35,local:[30,23,17,49,2,43,5,19,12],hope:5,meant:[],notat:[20,17,35,47,39],regularli:[],fontwarns:41,ignoreclass:4,leqslant:35,triangl:35,enabl:[35,1,4,17,6,31],organ:47,frown:35,stuff:32,she:46,contain:[0,1,2,35,5,10,13,14,15,16,17,34,19,45,22,23,24,26,30,32,4,27,37,38,41,43,47,49],view:[36,37,30,13,2,17,28,20,46],attibut:41,legaci:[],coooki:10,similarli:[0,32],temporarili:15,substack:35,outpu:[],issafari:32,mathord:35,statu:[0,30,26],error:[0,36,2,3,35,17,34,19,12,32],jmath:35,pattern:[4,19],gtrsim:35,state:49,quickest:17,theta:35,neither:[5,40,12],entiti:[35,36],omicron:35,stati:[],nshortmid:35,kei:[10,0,23,24,14,16,19,32],job:12,entir:[32,43],mmorhtmll:[],closebox:5,ker:35,thumb:49,skipstartuptypeset:19,plugin:[1,42,19,20,46,47,12],admin:[31,6],nabla:35,equal:[49,32,33],gnapprox:35,etc:[35,49,19,43],eta:35,equat:[35,22,30,43,4,38,18,19,20,46,47,12,45],futher:46,class3:33,eth:35,lmoustach:35,onchang:43,comment:[17,41,12,19],varnoth:35,dorectori:31,arriv:[16,44],walk:[],distinguish:8,arguement:26,respect:[9,37,23],quit:43,showfontmenu:42,"55em":35,quotat:41,bbb:35,compon:[0,36,24,13,33,41,25,42,16,44,27,12,20,8,32,21,47],json:[],besid:[],treat:17,immedi:[0,14,49,25,43,16],incldu:[],smallsetminu:35,both:[0,36,17,39,49,26,19,12,32,33],formt:[],otf:30,bult:[],psi:35,togeth:[49,32,36,23],injlim:35,present:[5,36,19,3,24],replic:[],multi:35,iscallback:23,cow:33,displaylin:35,align:[35,36,19],contextu:[36,37,42,9,19,29,47,45],studentdisplai:43,defin:[9,12,37,29,17,25,41,2,42,35,5,18,19,26,32,33,49],glossari:[39,11],observ:[],layer:1,almost:35,curvearrowright:35,site:[30,1,17,19,20,31,12],archiv:[17,30],lightweight:[],revis:30,myinputjax:34,welcom:3,parti:16,cross:30,sqrt:[35,17,47],getx:33,extensiondir:34,oint:35,easi:[30,28],curlyve:35,phi:35,http:[17,2,30,42,46],lleftarrow:35,"8em":[35,18],effect:[14,49,2],dai:10,student:43,php:[1,6],trake:3,pull:30,executehook:[24,23],off:[35,46,9,44],center:[35,19],well:[30,23,26,41,3,43,16,17,34,19,44,46],exampl:[0,2,3,35,5,7,9,10,12,14,16,17,40,19,21,18,22,23,24,26,27,29,30,8,32,33,4,36,37,38,45,41,42,43,44,46,47,48,49],command:[36,30,23,39,14,49,25,43,35,19,32],choos:[35,46],undefin:[35,17,12,23,26],setx:33,latest:30,curlyeqprec:35,paus:30,less:[4,35,47,32,30],half:26,obtain:[30,43,17,19,47,21],mistaken:47,mathclos:35,mathoutput:43,simultan:49,emtpi:[],web:[11,37,49,1,17,25,35,2,44,43,16,5,28,6,20,30,31,12,24,47,45],current_them:1,smith:26,textbf:35,cdotp:35,atopwithdelim:35,other:[25,35,32,14,16,17,34,19,20,45,23,24,26,28,30,12,33,4,36,37,39,49,9,43,44,46,47,48],match:[4,24,37],ctrl:19,webpag:28,usemathmlspac:7,ntriangleright:35,know:[24,26,2,16,17,8,21,47],press:19,sourceel:[16,45,21,43],loader:[8,21],recurs:32,mho:35,resid:[],like:[2,35,14,15,16,17,20,23,24,26,28,8,12,4,36,30,39,41,43,44,46,47,49],lost:26,incred:[],messagehook:[16,24,32],necessari:[20,32,45],lose:[],page:[1,25,35,5,6,10,11,12,13,15,16,17,9,19,20,45,22,24,2,26,28,30,31,32,4,36,37,38,49,42,43,44,46,47],captur:39,suppli:[32,45,23],"export":45,superclass:33,proper:[24,32],guarante:[0,49,43,14],librari:[13,49,27,30],glyph:[35,39],kern:35,leak:45,avoid:[35,47,40,36,19],tooltip:37,leav:[10,18,48,43],doublecap:35,twoheadleftarrow:35,daleth:35,upharpoonright:35,journal:39,usag:11,sphericalangl:35,although:[13,17,12,48,24],offset:37,panel:35,varepsilon:35,about:[35,12,37,23,17,3,43,16,5,9,28,26,44,30,47,32,24],rare:49,interven:[],column:18,mathajx:[],genfrac:35,mapsto:35,constructor:33,bigoplu:35,eqalign:35,own:[30,17,13,49,2,3,35,5,44,8,12,21,47],amsmath:[49,2,35,17,18,12],circledr:35,reprocessor:36,automat:[35,14,49,15,4,17,34,46,47,12,33],guard:19,vphantom:35,merg:[10,32],dcocument:32,transfer:[17,30],support:[11,36,37,17,25,2,3,35,5,27,20,46,47,12,48,9],much:[16,46,39,44],bigcap:35,tracker:[17,3],arg1:26,"var":[10,23,49,2,43,16,26,33],arg2:26,"function":[33,0,49,23,24,39,14,35,2,43,16,26,25,44,8,32,21,47],propto:35,unexpect:[9,19],precnapprox:35,studentansw:43,gain:[46,42],highest:[],bug:[30,3,15,17,19,47],made:[21,49,3,44,8,12,45,47],bbbk:35,whether:[35,22,37,38,2,42,43,4,26,9,19,7,32,48],wish:[41,2,3,35,26,46,32],commit:[],displai:[10,16,22,30,11,45,35,12,42,15,4,5,18,19,29,20,47,36,21,17,43],troubl:17,underleftrightarrow:35,asynchron:[0,27,23,24,39,14,49,16,26,44,32],directori:[0,37,1,44,39,45,25,16,17,34,19,6,30,31,12,21,8],below:[1,2,35,5,7,9,10,17,34,19,45,18,22,38,29,30,8,32,4,37,40,42,44,46,47,21,48],meta:46,limit:[35,0,36],otherwis:[0,12,23,15,35,27,6,32,33],problem:[30,26,2,3,35,17,46,47],x03c0:47,"int":[10,35,26],dure:[16,32,45,34,23],filenam:26,novemb:[],implement:[10,0,36,13,35,26,34,16,46,47,33],nolimit:35,inf:35,meth:0,probabl:[30,1,26,16,17,12],oplu:35,mrow:[17,47,36],immateri:49,percent:9,detail:[0,35,5,6,11,32,14,16,17,9,19,22,23,24,38,28,29,30,31,12,4,36,37,49,42,43,44,46,47],arctan:35,book:39,futur:[16,0,44,3,46],varieti:47,downlaod:20,removeaft:5,repeat:[30,1],star:35,"class":[33,35,27,23,24,13,14,4,34,19,45,8,21,47,28],thicksim:35,msgroup:36,stai:[],scientif:39,reliabl:[46,2],rule:[35,5,7,49,19],mathjax_mathml:2,portion:43,auxiliari:[],eot:30,decemb:11},objtypes:{"0":"py:method"},titles:["The MathJax.Ajax Object","Using MathJax in popular web platforms","Loading MathJax Dynamically","The MathJax Community","The tex2jax Preprocessor","The FontWarnings extension","Installing MathJax in WordPress","The MathML input processor","The MathJax.InputJax Class","The NativeMML output processor","The MathJax.HTML Object","MathJax Documentation","Loading and Configuring MathJax","The MathJax API","The MathJax.Callback.Queue Class","The MathJax.Message Object","Using Signals","Getting Started","The TeX input processor","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax.Callback.Signal Class","The MathJax Startup Sequence","Using Callbacks","The MathJax variable","Converting to MathJax from jsMath","The MathZoom extension","Installing and Testing MathJax","Using MathJax in Movable Type","The MathJax.Hub Object","The MathJax Object-Oriented Programming Model","The Base Jax Class","MathJax TeX and LaTeX Support","MathJax MathML Support","The HTML-CSS output processor","The mml2jax Preprocessor","Glossary","Describing HTML snippets","CSS Style Objects","The MathMenu extension","Modifying Math on the Page","Synchronizing your code with MathJax","The MathJax.ElementJax Class","MathJax Output Formats","The MathJax Processing Model","The MMLorHTML configuration options","Using Queues"],objnames:{"0":"Python method"},filenames:["api/ajax","platforms/index","dynamic","community","options/tex2jax","options/FontWarnings","platforms/wordpress","options/MathML","api/inputjax","options/NativeMML","api/html","index","configuration","api/index","api/queue","api/message","signals","start","options/TeX","options/hub","mathjax","api/outputjax","options/jsMath2jax","api/callback","api/signal","startup","callbacks","api/variable","jsMath","options/MathZoom","installation","platforms/movable-type","api/hub","api/object","api/jax","tex","mathml","options/HTML-CSS","options/mml2jax","glossary","HTML-snippets","CSS-styles","options/MathMenu","typeset","synchronize","api/elementjax","output","model","options/MMLorHTML","queues"]}) -\ No newline at end of file +Search.setIndex({objects:{"":{reset:[23,0,1],getAllJax:[12,0,1],Log:[15,0,1],Subclass:[33,0,1],Delay:[23,0,1],Init:[33,0,1],Interest:[24,0,1],Translate:[34,0,1],Config:[12,0,1],addElement:[10,0,1],Reprocess:[12,0,1],Styles:[0,0,1],ExecuteHook:[24,0,1],loadTimeout:[0,0,1],Resume:[14,0,1],Post:[24,0,1],Update:[12,0,1],loadHook:[0,0,1],formatError:[12,0,1],call:[14,0,1],getJaxByInputType:[12,0,1],PreProcess:[12,0,1],fileURL:[0,0,1],has:[33,0,1],Clear:[15,0,1],Insert:[12,0,1],Register:[34,0,1],TextNode:[10,0,1],Augment:[33,0,1],Signal:[23,0,1],addText:[10,0,1],noTranslate:[34,0,1],Typeset:[12,0,1],Queue:[23,0,1],NoInterest:[24,0,1],Suspend:[14,0,1],getJaxByType:[12,0,1],Push:[14,0,1],Element:[10,0,1],loadComplete:[0,0,1],wait:[14,0,1],Load:[0,0,1],Set:[15,0,1],loadError:[0,0,1],Process:[12,0,1],Text:[45,0,1],executeHooks:[23,0,1],Startup:[34,0,1],SourceElement:[45,0,1],getJaxFor:[12,0,1],can:[33,0,1],MessageHook:[24,0,1],isJax:[12,0,1],isa:[33,0,1],Require:[0,0,1]}},terms:{represent:47,reprocess:[12,45,43],mathjax_msie_fram:15,interchang:[],four:[17,49,37],prefix:[10,17,32],asymp:41,thinspac:41,webfont:[6,30,17],whose:[5,26,12,21,43],biggr:41,under:27,preprocess:[47,12,25,43],sped:[],gimel:41,everi:[16,12],mskip:41,arcco:41,dotplu:41,affect:[45,12,32,37],isforefox:12,bbfont:41,eqnarrai:41,cmd:19,bigodot:41,ominu:41,red:[41,17,32,40],nparallel:41,showcontext:42,direct:[30,6,27,37],enjoi:[],blacktriangledown:41,second:[0,27,37,23,26,49,44,5,6,40,19,16,31,21,3],ngeq:41,even:[40,0,12,23,24,14,41,2,43,16,26,27,44,20,47,32,49],hide:43,prejax:[47,19],neg:41,asid:[],multlinewidth:18,yoursit:2,caseywstark:[],"new":[10,24,12,37,23,43,33,49,25,4,15,16,44,18,42,45,20,31,32,21,47],net:[],mhtml:1,told:44,limsup:41,scriptscriptstyl:41,behavior:19,lessapprox:41,never:[37,2],richest:[],here:[10,24,36,23,26,49,2,43,16,17,34,19,7,12,45],met:25,lneqq:41,path:[0,1,17,7,9,32],noundefin:[41,17,32,2],interpret:[41,46,37],nrightarrow:41,forum:[17,4],mbox:41,precis:[],rceil:41,indutri:[],uproot:41,circleddash:41,mathstrut:41,unix:37,org:[17,32,2,42],thinmathspac:27,highli:20,describ:[10,37,23,17,39,3,25,43,41,6,40,26,46,47,12],would:[41,6,8,10,32,14,17,40,19,45,18,22,23,26,29,46,30,12,33,5,37,38,49,42,43,35,47,48,3],afterward:26,readi:[16,36,25,34],ltime:41,varlambda:41,call:[0,1,2,41,6,8,32,14,15,16,18,19,21,22,23,24,26,29,30,31,12,33,34,5,37,38,39,45,49,42,43,44,35,47,48],typo:[],recommend:[46,47,37],vcenter:41,preview:[5,38,47,22,19],type:[0,1,2,5,7,9,10,32,16,17,34,19,45,31,12,27,21,49,43,44,46,47],until:[0,22,24,49,25,5,26,19,16,38,32],notin:41,displaymath:[5,32],notic:[41,32],warn:[0,6],eqslantless:41,hold:[0,40,19,29,47,12],unpack:[17,37],slowest:46,must:[0,27,30,17,39,14,41,15,5,6,18,19,29,44,46,32,24,3],fbox:41,join:[16,41],room:18,setup:[20,17,32,27],work:[10,11,27,37,26,41,2,4,43,16,17,28,44,20,46,32,33],cc0000:[3,19],textjavascript:[],tag_nam:37,root:[41,0,25],overrid:[33,6,31,34,21],mathmenu:[35,3,32,30,42],give:[24,17,40,3,2,16,6,18,32],indic:[0,12,26,14,41,25,16,17,24,34,19,45,31,32,21,47],mauch:[],impair:20,want:[16,37,23,26,13,33,41,4,15,5,17,48,19,43,46,30,9,32,21,49],keep:[37,1,39,43,41,17,46,47],setminu:41,end:[0,27,1,41,7,25,4,5,16,9,49],quot:[5,30,19],hom:41,heartsuit:41,how:[0,1,2,4,41,6,7,14,15,17,40,19,22,23,24,38,29,30,12,5,37,42,44,35,47],sever:[0,37,49,43,26,47,32,21],answer:[4,43],verifi:[17,37,4],config:[25,41,6,7,8,31,32,15,16,17,18,19,21,22,2,26,28,29,46,9,12,34,5,30,38,49,42,43,35,48,3],updat:[37,1,49,43,12,45],showrender:42,lai:[46,47],diagdown:41,after:[0,37,23,26,14,49,2,42,15,16,17,34,19,43,44,30,47,32,24],befor:[0,1,4,41,7,5,14,15,16,18,19,23,26,29,30,12,33,34,24,27,37,39,40,49,43,44,46,47],wrong:27,startuphook:[16,12],parallel:[41,49],types:[],alignedat:41,attempt:[0,27,42],third:[49,27],leftarrow:41,perform:[24,36,23,26,39,14,49,25,4,43,16,6,12,34,19,44,32,45],greasekit:2,maintain:[16,26,19,4,44],environ:[41,4,5,17,18,32],incorpor:[],enter:[41,47,27,43],first:[16,27,23,26,47,41,2,44,43,5,17,24,40,19,7,31,32,21,49],order:[24,22,17,39,14,49,15,5,6,19,26,46,38,12,33,47],oper:[0,5,6,8,14,15,16,17,35,20,18,22,38,29,30,34,24,36,37,26,39,49,42,43,46,48],approxeq:41,softwar:[20,17,47],over:[10,0,30,42,43,41,17,19,29,47],loadcomplet:[0,12,34],becaus:[16,27,37,26,41,2,15,5,17,40,43,30,47,32,24,49],boxtim:41,textrm:41,appar:[46,49],afil:26,flexibl:[49,40],vari:46,smallint:41,fit:[16,42],fix:37,preferredfont:30,better:[17,32,42],boxminu:41,drawback:46,upharpoonleft:41,persist:4,comprehens:39,easier:[24,27,37,49,41,33],moveleft:41,them:[10,0,12,37,17,14,41,27,3,5,6,18,26,16,47,32,24,49],rbrack:41,thei:[0,2,4,41,6,8,32,13,14,16,17,35,19,18,22,24,25,26,29,30,12,34,5,27,37,38,39,40,49,42,43,44,47,48,3],qualiti:[20,46,47],safe:[10,2,43],"break":[41,44,49,27],mtext:[41,17],wedg:41,widetild:41,choic:[46,12,32],dbinom:41,outputel:[],leftharpoondown:41,accommod:[],timeout:[0,23],each:[16,12,37,23,24,49,25,43,5,17,44,47,32],debug:15,side:[18,15,19,7],mean:[16,22,1,24,13,41,2,43,5,26,19,44,20,38,32],leqq:41,createel:2,resum:[14,49],leqalignno:41,mathopen:41,looparrowleft:41,logo:[],goe:[41,44,49],newli:[10,16,33],content:[10,47,27,1,39,25,49,2,43,5,17,40,19,7,46,31,12,33,9],laid:[],reader:20,forth:36,preceed:[5,19],multilin:41,love:[],situat:32,free:[45,4],ineffici:[33,19],lneq:41,angl:41,jsmath2jax:[32,28,22],isn:16,pulicis:24,isa:33,subtl:43,onto:[39,17,49,12,43],mathbb:41,rang:47,mathbf:41,render:[27,25,42,5,19,20,46,47,32,48,28],yourcolleg:37,restrict:[41,37],hook:[16,0,23,24],instruct:[1,2,17,40,7,9],alreadi:[0,23,44,41,2,4,15,16,26,7,9,43,33,49],wrapper:[],primari:46,tooltop:30,top:[36,37,41,17,46,32],sometim:[],underlin:41,master:44,too:[5,17,2],eqn:[],john:26,listen:[16,24,12,23],thickapprox:41,namespac:[17,32,2,23,43],tool:[49,37],tagind:18,consern:[],somewhat:44,technic:39,past:[16,20,44,24],filesmatch:37,consequ:35,provid:[10,0,12,23,1,24,14,41,40,15,16,26,27,43,44,20,47,32,33,49],eqalignno:41,x2212:[17,47],tree:40,"final":[26,41,17,40,20,47,32],project:[39,4],matter:[16,28],minut:37,mathtt:41,ldotp:41,modern:[20,6,32,46,11],mind:[41,1],manner:46,increment:14,seem:[26,27],rightrightarrow:41,ldot:41,person:26,latter:[16,40,47,32],client:30,juli:[],expens:46,though:[23,2,41,44,40,19,47],object:[0,25,6,10,11,32,13,14,15,16,35,19,21,23,26,29,31,12,33,34,24,36,30,39,40,49,42,43,44,45,47,3],regular:[5,19],phase:[],previewtex:[],grave:41,don:[27,26,49,2,43,16,6,46,12],dom:[10,45,49,43,16,44,34,19,12,21],doe:[41,12,23,45,27,2,16,26,35,48,20,46,31,32,21,47],declar:[27,30,3,42,6,35,29],tfrac:41,unchang:[48,43],sum:[41,23],dot:41,introspect:[],delaystartupuntil:[25,19],lnapprox:41,syntax:[41,33],mediawiki:1,isopera:12,shownam:26,asynchon:43,involv:[17,32,4,44],consolid:20,layout:45,firstnam:26,mathchoic:41,ismsi:[12,25],menu:[27,30,25,42,35,19,29,7,46,9,45,47],explain:[17,32,44],configur:[25,41,6,7,8,9,11,12,16,17,18,19,20,21,22,2,26,28,29,46,30,31,32,34,5,27,37,38,40,35,47,48],apach:37,configut:40,theme:[1,7],rich:20,folder:[30,17,37],predecessor:[],infti:[41,47],mho:41,report:[27,19,4],circeq:41,prepocess:[],subseteq:41,fadeouttim:6,bar:[41,33,23],patch:37,reload:42,bad:[],replacechild:2,neq:41,respond:[24,19,4],dashrightarrow:41,elimin:19,precneqq:41,result:[27,30,23,26,45,49,43,41,17,46,31,12,21,47],respons:[17,31,32,23,24],fail:[0,32,46,34,26],themselv:[40,12,36,25],best:[0,49,32,47,46],awar:[41,0,49,27],subarrai:41,varinjlim:41,wikipedia:[39,2],circledcirc:41,gneqq:41,approach:[26,47,32,1,43],attribut:[10,3,41,38,40,47],blacktriangleright:41,extend:[20,47],jaxlist:[],synchon:16,extens:[0,25,41,6,32,16,17,18,19,22,2,38,28,29,12,34,5,36,39,49,42,43,3],preprocessor:[41,22,38,27,25,43,5,17,12,36,19,47,32,28],advertis:[],intop:41,cot:41,triggerr:[],howev:[37,49,2,4,43,41,26,19,46,47,32,33,3],against:24,seri:[49,40],com:37,varpsi:41,pre:[5,6,27,37],foral:41,can:[0,2,4,41,6,10,12,14,15,16,17,35,19,20,21,23,24,25,26,27,28,30,31,32,33,34,5,36,37,39,49,43,44,46,47,3],foobar:33,sai:[14,2,23],innerhtml:[2,43],height:[41,42],heirarchi:[],wider:4,sqsupset:41,speak:[13,47],chrome:[30,12,2,46],three:[27,37,23,26,40,49,6,34,44,47],been:[0,37,23,26,14,49,2,4,15,5,17,46,34,28,43,16,44,32,24],trigger:[46,19,29],beta2:[],interest:[16,24,39,4,44],basic:11,accpet:[],tini:41,quickli:[20,46,4],underrightarrow:41,rather:[0,41,6,8,14,16,17,34,19,20,21,23,31,32,33,5,27,37,49,43,44,46,47,3],regul:49,xxx:41,uncommon:[],argument:[24,23,49,26,32,33],emploi:[39,46],hskip:41,tanh:41,servic:[17,32,37],properti:[10,0,36,33,23,24,14,26,34,45,31,12,21],diamondsuit:41,sourceforg:[],dashboard:9,succeq:41,canb:18,have:[0,1,2,4,41,6,7,32,16,17,35,19,45,23,24,26,30,9,12,33,34,5,27,37,49,43,44,46,47],applic:[20,17,25],cong:41,tediou:[],disappear:[5,38,22],amout:15,incorrectli:37,receiv:[24,44,16,26,34,33],suggest:[6,4],make:[0,4,41,6,32,13,14,16,17,19,20,22,38,12,33,5,27,37,49,42,43,44,46,47,3],complex:[46,40],split:41,lrcorner:41,unsafewindow:2,complet:[0,37,23,17,39,14,49,43,16,26,34,44,46,12,24,45],longmapsto:41,hand:[36,15,18,19,47,27,28],fairli:40,rais:41,mkern:41,ignorepast:24,unlhd:41,techniqu:2,redefin:[6,34],kept:16,presto:[],thu:[23,49,16,26,32,45],inherit:[13,33,31,21,45],contact:[],thi:[0,1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,48,49],idotsint:41,programm:33,everyth:[41,49,12],settimeout:[26,23],left:[36,27,25,15,41,44,18,19,7,9,32],processclass:5,identifi:[10,17,47,32,24],just:[24,27,23,1,26,49,41,17,19,7,20,47,32,3],yen:41,mathbin:41,mid:41,human:[],depart:[],coprod:41,yet:[27,14,49,43,16,44,46],languag:[39,17,47,46,44],noscript:5,onload:[25,36,2,19,26],errorset:19,ell:41,had:[16,17],configurbl:[],myconfig:[16,26],els:[26,2,43],har:[],save:[9,3,7],hat:41,take:[0,23,1,6,49,25,4,43,41,17,18,26,44,32],"3px":3,nexist:41,loadtimeout:0,quirk:46,preserv:26,negativethinmathspac:46,background:[41,3],specif:[0,36,1,23,24,39,14,49,43,5,26,34,19,47,12,45],sqsubset:41,arbitrari:41,zoom:[27,19,29],leftrightarrow:41,underli:46,www:[17,32,2,37,42],right:[27,37,39,14,49,2,15,41,35,19,7,30,47,32,18],old:16,famili:[41,0,3],deal:46,autobold:[41,32],somehow:[],percentag:[35,30,19],cfrac:41,successfulli:[0,26],interc:41,dddot:41,bottom:7,subclass:[24,36,21,34,45,31,33],circ:41,exectur:24,overcom:[44,46],condit:[0,25],foo:[33,23],core:[32,49,25,41,19,47,12],plu:[24,25],bold:[41,40,32,18],popular:[17,28,1],colleg:37,repositori:37,post:[24,30,25,4,15,16,44,34],"super":33,llless:41,obj:10,nwarrow:41,slightli:[41,7],surround:[35,30],current_theme_templ:1,joomla:1,downharpoonright:41,geramond:41,encod:41,contectu:46,two:[41,44,40,49,16,17,18,19,46,32,3],down:[9,19],shortparallel:41,sot:[],wrap:33,opportun:[],ntriangleright:41,often:[17,47,3],git:[17,37],suffici:[41,18,48],checkmark:41,closur:[26,23,43],transform:47,ngtr:41,avail:[0,22,37,6,45,49,27,42,46,5,17,35,19,16,20,30,38,32,33,47],gif:[],reli:[0,49,2,43,26,35,46,32],wordpress:[1,7],editor:7,overhead:[],rightthreetim:41,lnsim:41,form:[27,30,39,18,19,47],offer:4,forc:[32,30],epsilon:41,msbm:[],hear:[16,24],downdownarrow:41,"true":[41,36,30,23,24,25,42,5,12,35,19,8,32,33],reset:[42,23],absens:1,displayalign:19,intern:[0,27,24,39,14,49,41,19,46,31,12,21,47],tell:[17,46,2,37,43],moveright:41,nnn:37,featur:[27,37,4,16,26,29,46,33],mirror:[],rfloor:41,sale:35,exist:[41,33,23],ddot:41,jax2:[],jax1:[],triangleq:41,check:[0,37,17,41,26,24,33],when:[0,25,41,6,7,8,12,13,14,15,16,17,18,19,20,21,22,23,24,26,27,28,29,46,30,31,32,33,34,5,36,37,38,39,40,49,42,43,44,45,35,47,48],abovewithdelim:41,role:47,hander:19,tie:[25,23],smallsmil:41,searrow:41,intend:33,consit:41,munderov:47,gvertneqq:41,consid:[0,12,41,4,5,47,32,45,49],markup2jax:[],configr:[],omega:41,outdat:4,longer:[24,37,15],furthermor:[49,19],tex2jax_ignor:5,ignor:[5,24],time:[0,2,4,41,6,10,32,15,16,17,34,19,23,26,29,12,24,37,49,43,46,47],push:[23,39,14,49,25,43,26,12],mathrm:41,doteq:41,emulateie7:46,skip:5,global:[13,46,36,23,43],skin:1,sourcesforg:[],displayind:19,millisecond:[0,30,23,42,15,6,29,12],decid:[32,42],depend:[23,43,26,7,46,32,48],head:[1,2,43,17,7,46,9,32],show:[37,17,4,43,41,6,40,19,26,9,32,42],readabl:39,nearrow:41,varpi:41,certainli:[32,37],vee:41,vec:41,leftarrowtail:41,succnsim:41,sourc:[11,27,37,49,2,42,16,35,20,30,47,12,45],string:[0,23,24,40,41,15,5,18,19,16,12,45,3],curlyve:41,word:[5,47],exact:[],centerdot:41,dim:41,getjaxfor:[16,12,21],administr:[1,7],level:[17,32,37,36],ntriangleleft:41,gui:[],item:[30,40,42,41,26,35],cooki:[10,25],div:[10,41,47,28,43],prevent:[41,22,30,38,42,5,17,18,19],slower:46,compens:35,sign:[41,43,5,17,47,32],cost:[17,32,33],pmb:41,rightarrowtail:41,widehat:41,xandi:33,dotsi:41,dotsm:41,appear:[41,36,37,26,42,15,16,17,19,43,7,32,45],dotso:41,repli:16,dotsc:41,dotsb:41,current:[0,37,1,24,45,46,7,30,9,33],backepsilon:41,ampersand:41,scriptel:[],inlinemath:[5,17,32,43],boost:[],defici:27,amalg:41,mathsiz:41,gener:[26,48,25,6,47,12,45],mfrac:[17,47],slow:[],modif:49,address:[17,9,37,1,7],along:[39,49,15,16,31,21],wait:[0,37,23,24,39,14,49,2,43,16,26,25,19,44,12],box:[41,0,6],html_head:1,bracevert:41,shift:19,bot:41,queue:[24,36,23,44,13,14,49,25,43,26,39,12],overriden:12,digamma:41,varlimsup:41,macintosh:12,semant:33,regardless:43,extra:[16,41,47,19],modul:[0,9,36],prefer:[30,17,37,48,42],iepro7:2,veebar:41,visibl:[5,38,49,22,43],marker:41,instal:[11,37,17,46,41,6,7,20,30,9,32],arrowvert:41,memori:[44,45],bigr:41,visit:17,prec:41,subvers:[17,37],stylesheet:[0,36,23,24,14,25,43,44,19,7,46],perp:41,current_skin:1,bigl:41,bigm:41,eqcirc:41,checkout:37,divideontim:41,inputjax:[36,13,45,25,34,31,33],capit:13,sitaut:43,reduct:46,peopl:[],bigtriangleup:41,newcommand:41,visual:20,accept:[26,23,43],hphantom:41,easiest:[37,23,26,16,17,32],graphic:37,prepar:[49,32],cap:41,uniqu:3,pmatrix:41,whatev:[41,1,33,49,43,16,21],cal:41,purpos:[26,47,46],getjaxbytyp:12,downharpoonleft:41,meant:[],subseteqq:41,varprojlim:41,backslash:[41,18,19],topic:[13,11,32],exportmathml:[],phrase:17,disadvantag:46,occur:[0,12,23,24,14,49,27,2,42,15,16,26,34,19,43,44,32],eqsim:41,nuber:15,pink:41,alwai:[41,26,49,23],multipl:[41,49],trianglelefteq:41,write:[20,17,49,43,24],anyon:[],fourth:49,mathsf:41,tild:41,xhtml:[17,32,27],map:47,product:[],max:41,clone:37,spot:41,succ:41,pending_xref:[],mai:[0,1,2,4,41,6,32,13,16,17,35,19,21,24,26,30,12,33,34,5,27,37,45,49,43,44,46,47],foirefox:[],data:[10,0,36,37,23,33,16,26,34,45,30,31,12,21],goal:20,vartheta:41,preceq:41,explicit:[],uparrow:41,nsim:41,inform:[0,30,1,24,39,15,16,26,35,19,47,32],"switch":[47,28],fontwarns:3,combin:0,gamma:41,approx:41,comfort:37,approv:[],lsh:41,tex2math:[17,28],csc:41,still:[24,27,23,39,49,16,17,19,29,46],pointer:33,ttf:37,dynam:[0,36,11,49,2,43,17,19,44,20,47,32],equiv:[41,46],amssymbol:[41,17,32,2],group:[0,27,4],monitor:4,polici:37,ignoreclass:5,platform:[20,11,1,17],window:[36,23,6,2,42,15,26,43,12],alignat:41,main:[47,36,37,1,13,33,49,3,42,41,17,12,19,7,31,32,21,9],mathexampl:43,non:[10,0,47,17,14],within:[0,12,37,23,6,13,41,27,25,43,5,17,18,28,26,44,47,32,33],halt:44,smash:41,initi:[0,36,44,41,25,42,5,17,34,19,16,47,12,45,49],bound:[],stackrel:41,safari:[46,12,2],natiov:35,now:[39,17,32,37,46],discuss:[10,37,2,4],nor:[6,40],term:15,name:[0,25,41,6,10,5,32,16,17,18,19,21,22,23,2,26,30,31,12,33,34,24,27,37,38,40,3,45,46],opera:[46,12,2,48],boxdot:41,separ:[27,37,49,15,16,17,35,19,32,3],messagestyl:[6,19],confid:20,compil:26,domain:37,replac:[0,12,27,2,43,17,18,7,9,32,33,47],individu:[32,45,43],continu:[16,0,41,49,44],happen:[27,37,14,49,41,44,47],shown:[41,40,19,42,43],accomplish:[37,2,46],space:[43,41,19,46,8,32,47],internet:[0,2,42,15,41,26,19,46,47,32],formula:[43,19,29,20,46,47,32],correct:[26,2,37],simeq:41,earlier:49,ajax:[0,36,13,49,25,16,26,34,12],mime:[32,45,27,17,34,31,12,21],theori:[],underleftarrow:41,brower:41,ord:41,care:[41,32,2],ntrianglelefteq:41,wai:[16,22,37,23,1,26,49,2,15,5,17,24,34,19,43,38,46,31,32,21,47],x00b1:17,synchron:[0,23,11,39,2,49,25,44,43,26,14,12,24],mscarri:27,thing:[41,17,40,43],place:[0,30,17,41,4,43,16,6,24,18,19,7,9,32,33,49],mathop:41,unwis:46,ture:35,think:[41,19,43],frequent:[5,16],lambda:41,origin:[33,41,37,24,14,2,43,16,17,45,31,32,21],lfloor:41,suspend:[16,14,49,24],directli:[49,2,43,41,26,47],spoken:[],onc:[0,37,23,24,49,25,43,41,17,28],arrai:[2,41,6,8,5,32,14,16,17,18,21,22,23,25,26,28,46,31,12,34,24,30,38,40,35,47,48],yourself:[41,14,2,19,26],submit:4,open:[11,27,37,42,17,7,20,9],predefin:19,size:[41,3,35,30,43],given:[10,0,33,23,1,24,14,41,40,3,15,16,26,34,19,45,47,12,21,49],convent:[],width:[41,46,18,27,42],ifmodul:37,evail:49,leftrightharpoon:41,averag:47,circl:41,whith:27,white:3,conveni:[17,32,33,19],hub:[25,5,6,8,32,13,15,16,35,19,21,18,22,2,26,29,12,34,36,30,38,45,49,42,43,47,48],especi:47,programat:47,copi:[12,37,2,4,17,27,20,32],specifi:[41,6,8,10,14,16,17,40,19,18,23,24,26,29,46,32,5,30,49,42,44,35,47,48,3],github:37,enclos:[3,47,30,19],quad:41,than:[0,41,6,8,32,14,16,17,34,19,20,21,23,24,30,31,12,33,5,27,37,39,49,43,44,46,47,3],serv:[17,32],wide:[20,47,37],underbrac:41,were:[16,45,43],posit:[14,30],browser:[25,41,6,11,32,17,35,19,20,45,2,27,28,30,12,5,36,37,39,42,44,46,47,48],preccurlyeq:41,delic:35,lnot:41,doublecup:41,openajax:[],nleftrightarrow:41,svnroot:[],ani:[0,2,4,41,6,8,32,14,15,16,17,35,19,45,18,22,23,24,26,29,30,12,33,5,27,37,38,49,42,43,44,46,48],refexplicit:[],properli:[0,27,37,6,45,49,2,43,26,12,33],caus:[0,36,37,26,45,41,27,42,15,5,17,18,19,43,16,47,12,24,49],engin:[20,11],squar:[41,40],npreceq:41,note:[0,2,41,6,32,17,40,19,45,18,24,26,30,12,5,37,49,42,43,46,47,48,3],x2260:17,jsmath:[11,47,28],noth:[26,23],channel:[16,39],updownarrow:41,begin:[16,41,25,43,5,18,46,47,32,49],sure:[41,37,24,49,2,4,43,5,17,46,32],windowset:42,normal:[41,23,3,2,5,19,47],track:[47,4],formt:[],beta:[41,17],pair:[10,0,12,23,40,3,5,18,16,31,32,21],fileurl:0,beth:41,latex:[11,39,41,5,17,19,20,47,32],textarea:5,proud:[],drive:37,typeset:[0,25,5,15,16,35,19,20,45,22,2,26,29,12,36,30,38,39,49,42,43,44,47],badg:4,sigma:41,mathfrak:41,showmathmenu:30,newenviron:41,autoreset:23,parentnod:2,unprocess:[12,45,43],permiss:[17,37],hack:46,corner:[36,19,15],label:[41,32,42],xml:[20,39],insruct:1,onli:[0,1,2,4,41,6,32,17,40,19,20,45,24,26,30,12,5,27,37,39,3,43],explicitli:[41,26,5,17,32,33],activ:[27,23,39,4,43,44,46,47],state:49,inlinedelimit:41,otim:41,black:41,offici:[],geq:41,mypic:[5,38,22,40],nearli:[41,32],variou:[24,30,1,13,3,16,6,35,31,32,47],get:[10,11,27,37,23,26,49,2,15,41,17,24,35,19,46,30,43,33],cannot:41,ncong:41,downarrow:41,requir:[0,23,41,2,16,26,34,20,47,12,21,49],prime:41,lceil:41,mathpunct:41,consist:[41,40,49,27,46],intermitt:[36,15],shortmid:41,retypeset:43,where:[0,1,25,4,41,6,9,10,32,15,16,17,18,21,23,26,30,31,12,36,37,45,3,43,44,47],wiki:[17,47,2],lozeng:41,obejct:14,ismac:[12,25],concern:[47,12],detect:23,longleftrightarrow:41,enumer:41,sponsorship:[],enough:[49,40],between:[41,23,26,49,42,16,17,46,47,12,45],maltes:41,"import":[13,0,49,44,16],across:[39,46],rahter:[],august:[],parent:[10,33],vdot:41,screen:[0,49,43,20,15,21],style:[10,0,30,11,39,40,41,25,42,15,5,6,35,19,29,3,47,12,45,17],negmedspac:41,come:[27,37,49,2,26,46,47,32],leftleftarrow:41,img:[22,3,2,5,38,40],timout:0,pertain:17,audienc:46,overbrac:41,mani:[41,32,44,49,5,26,12,3],color:[41,3,40,19],operatornam:41,period:[0,36,37],dispatch:[],colon:[41,3],unrend:[],cancel:23,pod:41,bigcirc:41,msrow:27,needlessli:26,skew:41,mark:[41,27,3,5,17,28,47,32],textnod:10,succapprox:41,fade:6,arcsin:41,refdomain:[],resolut:20,mathplay:[46,32,2,19,42],breve:41,texfont:6,blacktriangl:41,former:[],those:[41,27,37,23,26,14,49,40,3,43,16,6,24,34,19,45,20,31,12,21,47],manu:42,"case":[41,37,23,26,33,49,2,43,16,17,40,19,45,30,47,32,21,3],kappa:41,oldstyl:41,addtext:10,invok:46,margin:18,tbinom:41,advantag:[46,49,1],barwedg:41,leadsto:41,mlongdiv:27,worri:[16,47],destin:12,updatemath:43,backsim:41,bigwedg:41,develop:[39,27,37,4],author:[15,34,19,29,20,47],media:[3,37],postjax:[47,19],same:[16,22,37,24,41,44,5,38,7,32,21,49],html:[1,25,41,6,8,10,11,32,13,16,17,35,19,21,22,2,38,36,30,9,12,5,27,37,39,40,3,42,43,44,46,47,48],speech:[],knuth:39,mathvari:47,document:[0,22,39,11,13,41,2,43,5,17,12,27,19,20,46,38,32,21,47,28],exhaust:32,finish:[39,44,49,2,43],vvdash:41,nest:[36,27],availablefont:[6,32,30],someon:[],longleftarrow:41,capabl:[13,20,32,46],formaterror:12,displaystyl:[41,43],extern:[0,36,44,49,16,26,12],submenu:[19,42,7],appropri:[41,16,17,28,31,47],macro:[41,17,32,19,18],markup:[41,0,47,27,39],leftharpoonup:41,overwithdelim:41,without:[0,27,30,41,16,26,35,47],model:[11,36,13,25,41,46,47,33],altertn:46,bigotim:41,stixfont:6,mml2jax:[27,38,2,17,19,47,32],loaderror:0,excel:[],rest:[0,27,49,43,17,20,47],speed:[46,47,32],versu:49,mathzoom:[3,32,29],nleqq:41,except:[17,32,44],littl:[0,24],blog:[17,47],earli:32,hover:[42,19,29],around:[41,32],read:[16,17,27,37,40],outermost:40,boldsymbol:[41,32],messsag:15,test:[10,11,27,37,44,2,43,16,17,9,12,33],moo:33,pop:[],amp:41,lasterror:12,mod:41,oslash:41,cdot:41,integ:12,server:[37,1,2,17,7,30,9,32],either:[0,37,1,24,13,40,3,2,16,17,18,29,46,12,48],output:[2,41,8,11,32,16,17,35,19,45,27,12,33,34,36,30,39,21,3,42,43,46,47,48],manag:[10,36,37,1,26,39,25,15,17,46,47],lesssim:41,node:10,respect:[35,30,23],constitut:13,slice:23,easili:[20,17,47],highest:[],definit:[0,30,3,42,35,29,20],achiev:[],shoveright:41,inputid:45,dashleftarrow:41,mathcal:41,variuou:16,complic:[40,27,48,46],refer:[11,37,17,45,2,43,16,6,24,34,26,44,12,33],power:[49,4],inspect:12,broken:47,found:[0,31,19,4,26],regexp:5,"throw":[34,2],trianglerighteq:41,assocait:43,underwai:49,greater:41,ddddot:41,act:[41,26,39,49,16,17,18,19,47,32],industri:39,processor:[35,27,30,39,49,25,42,41,17,18,3,46,8,32,48,47],hookrightarrow:41,nobreakspac:41,routin:[10,0,44,26,34,31,12,21],effici:[32,33,43],elementari:27,lessdot:41,triangledown:41,bbb:41,rightharpoondown:41,mathbackground:41,your:[0,1,2,4,41,6,7,8,11,12,17,18,19,20,22,26,28,29,46,30,9,32,5,27,37,38,39,40,49,42,43,44,35,48],compon:[0,36,24,13,33,3,25,42,16,44,12,27,20,31,32,21,47],log:[41,17,37,15],area:[18,15],aren:[],fontwarn:[6,32,19],lor:41,start:[0,37,23,11,40,41,25,44,47,16,17,34,19,7,9,24,49],interfac:[37,1,17,7,20,9],lot:[16,37],verbatim:[],buggi:41,categor:32,faster:[46,32],overleftarrow:41,mathml:[11,27,39,45,2,47,41,17,35,48,20,46,8,32,21,31],bullet:41,possibl:[0,27,37,23,6,49,15,17,19,26,46,47,32,33,3],"default":[0,25,41,6,8,32,15,17,18,19,21,22,23,38,29,30,31,12,34,5,37,42,35,47,48],processescap:[5,32],buildrel:41,sepecifi:37,notag:41,embed:27,expect:[41,46,49,32,19],creat:[0,25,4,10,15,16,34,21,23,26,31,33,24,36,37,39,45,49,42,44,47,3],certain:[16,24,44],leftrightsquigarrow:41,twoheadrightarrow:41,varliminf:41,file:[0,1,2,41,6,7,9,32,14,15,16,17,34,19,21,23,25,26,28,31,12,24,37,39,40,49,44,45,46,47,48,3],outputjax:[36,13,45,25,34,21],fill:[46,48],again:[0,12,45,43,41,31,32,21],iiiint:41,googl:4,pmod:41,mathematica:[],hybrid:[],prepend:[],valid:[26,46],you:[1,2,4,41,6,7,8,12,13,14,15,16,17,35,19,20,21,18,22,23,25,26,28,30,9,32,33,34,5,27,37,38,40,49,42,43,44,46,47,48,3],trash:45,architectur:[],mathjaxsetup:[],sequenc:[11,14,41,25,16,44],symbol:[41,17],dashv:41,cb2:[],briefli:17,cb1:[],menuset:[19,29],reduc:41,mathcolor:41,lbrace:41,gtrapprox:41,descript:[22,38,2,5,6,36,19],lbrack:41,scroll:9,calle:33,potenti:49,escap:[32,18],dst:12,negthickspac:41,lvertneqq:41,all:[0,1,2,41,6,11,5,32,15,16,17,34,19,20,22,23,26,27,12,33,24,36,37,38,39,49,44,46,47],consider:[17,32],illustr:43,performth:[],lack:[],dollar:[5,17,41,32,43],publish:[],abil:[46,47],follow:[16,37,23,26,13,40,41,25,43,5,17,34,30,47,32,33,3],alt:[2,19],disk:[32,37],children:27,scr:41,articl:39,init:33,program:[36,1,44,13,45,49,25,17,20,47,33],smile:41,cgi:0,liter:5,multlin:[41,18],vert:41,replic:[],fals:[41,12,30,24,2,42,5,35,19,8,32,33],varrho:41,prooblem:41,"1px":[10,41,3],verb:41,mechan:[24,23,14,49,25,16,44,33],fall:[6,49,17],veri:7,ticket:[],strang:27,list:[25,41,6,7,8,31,32,16,18,19,21,22,23,38,29,9,12,5,30,45,49,42,43,35,47,48],emul:46,adjust:[30,17,35,2,43],displaylin:41,small:[41,47,18,15],impract:37,teh:[],getalljax:[12,43],wab:[],adust:[],lll:41,tex:[2,41,6,8,11,32,16,17,18,19,20,22,36,28,30,31,12,34,5,27,37,39,49,43,46,47],zero:14,design:[20,9,27,2,4],pass:[0,12,23,24,14,49,25,42,16,26,47,32,33],overlin:41,further:[14,49,47],what:[11,22,37,23,38,41,27,4,43,5,6,12,35,19,29,20,30,47,32,42],sub:36,section:[2,41,6,8,32,17,35,19,18,22,26,28,29,9,12,5,27,30,38,42,46,48],ast:41,abl:[37,23,17,2,43,16,6,19,7,20,30,9,32],delet:30,version:[11,36,37,25,2,4,43,17,34,29,45,31,12,21],sup:41,method:[10,0,12,33,23,24,14,49,2,15,16,26,34,43,44,31,32,21,45],hasn:[0,34,15],full:[0,13,5,26,19,20],exectu:23,variat:32,geqslant:41,modular:[20,27],ggg:41,trunk:[],standard:[41,39,3,16,17,20,46,47,32],modifi:[11,43,16,34,12,21],valu:[0,25,5,6,8,10,32,14,16,35,19,18,22,23,38,29,12,33,27,30,26,40,49,42,43,47,48,3],search:[20,11,12,4],sender:16,mml:[48,47,36,45],collater:[],prior:19,amount:[6,18,23],pick:[],action:[0,2,41,32,14,15,16,34,21,23,25,26,29,31,12,24,36,39,49,43,44,47],mathjax_wikipedia:2,magnitud:46,llap:41,via:[0,27,37,23,1,17,45,49,2,15,16,6,29,46,30,47,32,33],shorthand:43,ask:[47,18,4,43],href:40,inappropri:16,emptyset:41,simbl:2,decrement:14,select:[46,12,35,27,42],proceed:[49,40],x41:41,distinct:[13,32],mathja:[9,7],regist:[0,24,39,25,16,44,34,31,12,21,47],rightsquigarrow:41,asn:47,taken:[16,41,49,46,43],imath:41,basi:[46,48],more:[6,32,14,17,40,19,20,23,26,30,31,12,33,24,37,39,49,35,43,44,46,47,48,3],flat:41,diamond:41,desir:[33,37,2],henc:37,ital:[0,19],flag:[],aleph:41,particular:[10,0,37,23,26,39,14,3,41,17,24,44,46,47,12,33],known:49,upsilon:41,mathml3:27,cach:16,showmathmenumsi:35,none:[24,22,30,23,38,5,26,19,47],eta:41,mmlorhtml:[46,48,32,2,19],det:41,dev:4,histori:[16,24,25,39],remain:39,paragraph:[41,6,47,43],ie6:30,caveat:37,def:[41,33],deg:41,"_mathml":[],scan:12,myspan:40,registr:34,share:[17,32,37,4],templat:[9,1,7],succneqq:41,minimum:12,explor:[0,2,42,15,41,26,19,46,47,32],sharp:41,mathinput:43,huge:41,cours:[49,27],newlin:[41,15],awkward:33,secur:[37,2],programmat:[],anoth:[24,37,43,14,49,15,16,44,31,32,47],showmathmath:35,mapl:[],snippet:[10,11,22,38,4,5,6,40,19,12],ddagger:41,stix:[30,39,41,6,47,32],simpl:[46,40,19],css:[0,2,41,6,8,11,32,17,35,19,45,27,29,30,12,36,37,39,21,3,42,43,46,47,48],unabl:6,regener:[],resourc:[17,32],referenc:6,faculti:[],variant:39,reflect:[25,43],vdash:41,mstack:27,impliedbi:41,associ:[47,37,23,45,26,35,30,31,12,21,34],welcom:4,mytim:26,lhd:41,confus:[],ambigu:13,mislead:[],callback:[0,36,23,24,13,14,49,25,43,16,26,39,44,31,12,21,45],firefox3:30,merror:3,unrhd:41,help:[37,42,17,4,46,32],soon:[32,2,19,43],trade:46,reftyp:[],through:[41,27,37,24,49,42,16,44,46,47,32,33],hierarchi:[32,37],paramet:[10,0,22,33,23,26,14,15,24,17,12,18,19,43,38,31,32,21,34,45],obscen:[],arial:41,nifti:[],x221a:27,processupdatetim:12,x221e:47,late:[39,2],isreadi:[36,25],pend:14,amsmathaddit:49,processenviron:5,pad:[10,3],might:[0,27,37,26,49,4,16,17,18,47,32],alter:[5,43],good:[49,2,4],"return":[10,0,27,33,23,24,14,49,15,16,26,34,43,44,31,12,21,45],textstyl:41,hslash:41,framework:[],getelementbyid:43,rlap:41,mathscr:41,plugin:[1,42,19,20,46,47,32],noerror:[41,17,32,2],bigcup:41,did:26,iff:41,iint:41,fulli:[49,27],unicod:[41,6,27],x2211:47,forefox:2,subsystem:25,originaltext:45,weight:[40,33],hard:[32,37,4],realli:26,nless:41,connect:[26,47],beyond:4,orient:[13,33,36,25],webserv:[],"try":[33,4,16,17,34,31,21],internext:[],shortcom:44,skiptag:5,asynchorn:[49,43],movabletyp:[],print:[20,3,37],occurr:44,msie:[12,35,48],foreground:3,qualifi:[],safari3:30,my_config:[],advanc:[13,11,32,20],offsetx:30,quick:[],reason:[0,12,26,49,27,2,42,15,41,17,34,46,32],base:[36,37,1,44,13,2,25,46,6,34,45,20,30,33],typeet:43,textit:41,mathr:41,offseti:30,ispc:[12,25],succnapprox:41,drupal:1,msbm10:17,showprocessingmessag:[32,19],perhap:26,bumpeq:41,elementjax:[13,45,36,25,34],stixgener:41,getelementsbytagnam:2,assign:[5,26],major:[20,46,32,2],dont:47,boxplu:41,feel:4,exchang:39,lastnam:26,number:[0,36,37,23,6,40,49,15,17,18,19,26,45,31,12,21,34],fadeoutstep:6,done:[14,49,32,47],least:[46,47,12],blank:[24,23,43],stabl:37,miss:[41,23],differ:[41,12,37,23,26,49,43,16,17,44,46,47,32,33],script:[0,12,37,1,25,49,2,43,5,17,47,34,19,7,16,31,32,21,9,45],interact:[20,17,47,45],smoother:6,construct:[49,47],statement:[49,23],illeg:40,store:[10,24,36,30,23,45,49,43,26,31,12,21,47],option:[41,6,7,8,32,17,40,19,18,22,38,28,29,12,33,34,5,30,42,35,47,48],nleftarrow:41,triangleleft:41,ntrianglerighteq:41,selector:[3,19,15],tex2jax_process:5,part:[16,27,37,23,44,41,2,5,17,18,7,20,47,33,49],pars:41,binom:41,cosh:41,kind:47,whenev:[24,27,37],remot:37,remov:[24,43,45,15,5,19,47,12,21],dtd:[17,32],bridg:45,arrang:23,ffff88:3,comput:[30,12,37],nleqslant:41,packag:[39,37,28],expir:10,"null":[10,0,22,30,23,24,33,2,15,5,6,36,19,43,38,31,12,21,34,45],imagin:[],xref:[],built:[11,2,46],equival:[10,23,49,43,26,40],lim:41,self:27,also:[2,4,41,10,13,15,16,17,35,19,45,23,26,32,33,5,27,30,39,42,43,44,47],brack:41,build:[],brace:41,appendchild:[10,2],addel:10,ngeqslant:41,most:[36,37,1,23,39,2,3,25,16,34,46,32,33],plan:17,rho:41,alpha:41,rhd:41,vardelta:41,clear:[24,30,23,25,15,16],tpl:1,exp:41,latest:37,leftroot:41,nshortparallel:41,carefulli:[40,43],finv:41,particularli:[46,37],rightleftarrow:41,font:[0,37,6,39,40,3,42,15,41,17,35,19,43,44,20,30,47,32,18],fine:[],find:[4,43,6,28,7,46,47,12],preremoveclass:19,surd:41,execut:[0,23,14,49,25,16,26,47],pretti:37,ruin:[],solut:[17,47,37,4],delayedx:23,"public":37,couldn:26,queu:[14,49,23,24],factor:[35,30,19],tagsid:[32,18],precnsim:41,express:[5,16,49,19,24],strut:41,nativ:[27,13,2,20,46,47,32,48],proces:[],greasemonkei:[32,2],donald:39,notransl:34,restart:[5,14,49],ie8:46,ie7:46,acut:41,vmatrix:41,common:[32,1,39,40,27,41,6,34,12],set:[0,25,41,6,8,10,12,15,16,17,35,19,45,18,22,23,24,2,26,28,29,30,32,33,5,36,37,38,39,40,49,42,43,44,47,48,3],overrightarrow:41,startup:[11,36,2,49,25,43,16,34,19,12],see:[0,4,41,6,7,9,32,14,16,17,35,19,22,23,24,26,28,29,30,31,12,5,27,37,38,39,49,42,43,44,46,47,3],sec:41,arg:41,close:[6,32,27,4],langl:41,someth:[5,37,19,4,43],particip:4,won:[49,37],subscript:41,experi:[37,19],altern:[0,41,26,47,32,33],numer:[12,27],complement:41,javascript:[0,1,2,6,7,11,13,16,17,18,19,20,45,23,26,29,9,32,33,35,36,30,39,40,49,42,44,46,47,3],mailbox:[16,39],bmatrix:41,solv:2,longrightarrow:41,classnam:2,popul:25,bodi:[0,43,17,31,32,21],last:[0,12,37,23,14,3,41,32],delimit:[5,17,41,32,47],hyperlink:47,event:[39,2,43,16,44,47],nvdash:41,context:[5,42,19,23],overset:41,hbar:41,whole:[22,44,43,5,38,12],load:[0,1,2,41,11,32,14,15,16,17,34,19,20,21,23,25,26,28,31,12,24,36,37,39,49,43,44,46,47],markdown:47,simpli:[41,22,37,23,38,14,43,5,26,12,34,19,20,31,32,21,28],point:[41,14,17],instanti:33,schedul:26,etra:[],header:[37,1,7],param:[],linux:12,bigve:41,mistak:40,zeta:41,throughout:[],gneq:41,bigtriangledown:41,empti:[36,30,23,49,25,47],dur:12,strategi:46,invis:37,fire:[25,2,26],refdoc:[],imag:[22,37,38,2,5,6,40,20,30],descib:17,coordin:[14,49,47],understand:47,urcorn:41,educ:[],convers:41,blacksquar:41,look:[10,41,12,30,23,1,24,3,4,15,5,17,27,43,7,47,32],solid:[10,41,3],formath:[],pitchfork:41,lvert:41,"while":[10,0,27,37,17,48,41,2,16,6,34,19,44,46,47,32,24,49],blacktriangleleft:41,nprec:41,abov:[10,41,37,23,17,49,2,43,5,6,19,26,46,30,33],circlearrowright:41,bookmarklet:32,everyon:16,loop:45,subsect:34,measuredangl:41,vartriangl:41,jpg:[5,38,22,40],biguplu:41,itself:[41,36,37,23,24,14,49,25,16,12,27,19,45,47,32,33,3],costli:[],limit:[41,0,27],rightarrow:41,xleftarrow:41,redisplai:15,unexpectedli:17,conflict:47,upuparrow:41,optim:46,domin:39,alert:[16,26,49,23],moment:[17,37],temporari:34,user:[41,27,37,23,43,2,4,15,16,6,35,19,29,46,20,30,47,32,42,28],robust:[16,39],wherev:[],chang:[12,37,1,43,2,42,15,35,30,47,32,45,18],recent:[20,2],lower:[41,36,25,19,15],task:41,getjaxbyinputtyp:12,entri:[39,14,3],searchabl:20,ngeqq:41,picki:[],normals:41,scriptsiz:41,fallingdotseq:41,explan:[17,32],rvert:41,obscur:15,press:19,world:[20,26],succsim:41,cut:[],cup:41,blacklozeng:41,ffeeee:41,notifi:16,input:[2,41,8,32,16,17,18,19,45,27,28,31,12,33,34,36,39,21,49,43,46,47],unlik:[20,34],subsequ:41,sum_:47,trueli:43,format:[11,27,30,39,40,41,17,35,19,45,20,46,31,32,21,47],big:[41,32,37],moodl:1,tomathml:45,game:41,insert:[22,23,2,5,38,12,34,19,7,9,32,21,47],resid:[],bit:[35,33],characterist:[],diagup:41,semi:3,varkappa:41,signal:[24,36,23,44,13,25,16,26,34,39,12],altough:26,collect:[26,49,45,3,23],api:[13,11,20,17],mathrel:41,swarrow:41,gtrless:41,lastest:4,creation:[31,25],some:[1,41,6,32,13,14,16,17,35,19,20,21,23,26,30,31,12,33,34,27,37,45,49,43,46,47,48],back:[6,45],emph:41,sampl:[37,44,3,16,17,19],myid:3,scale:[20,35,30,19],flux:49,culprit:[],delimt:5,prop:[],mathemat:[0,2,41,6,7,31,32,16,17,35,19,20,21,18,22,38,28,29,30,9,12,34,5,27,37,39,45,49,42,43,46,47],larg:[41,0],extension2:[],slash:32,prod:41,reproduc:43,sqsubseteq:41,tex2jax:[41,36,2,43,5,17,27,19,47,32],machin:[39,37],garamond:41,previou:[26,49,24,23,15],run:[0,2,5,6,8,32,14,16,17,35,18,22,23,25,38,30,12,24,27,37,26,49,43,44,46,47,48],doteqdot:41,odot:41,step:[6,47,1,17],hookleftarrow:41,impor:37,react:24,materi:43,retain:[],page:[1,25,41,6,7,10,11,12,13,15,16,17,35,19,20,45,22,24,2,26,28,30,9,32,5,27,37,38,49,42,43,44,46,47],microsecond:[],rangl:41,succcurlyeq:41,block:[35,30,17,6,34,19,47,32],file3:49,file2:49,file1:49,file4:49,bmod:41,msam10:17,todai:39,notat:[20,17,41,47,39],isjax:12,announc:44,inclus:[],span:[22,5,38,40,19,47,28],question:[17,34,4],fast:[],custom:[15,41,17,20,46,32],handler:[0,36,39,2,25,43,44,47],includ:[0,1,25,41,6,8,12,13,16,17,18,19,20,22,23,2,26,27,28,29,46,30,31,32,34,5,36,37,38,40,49,42,43,35,47,48,3],suit:[6,27,17],nativemml:[27,48,42,35,46,47,32,21],overleftrightarrow:41,ulcorn:41,doctyp:[46,27],poster:24,atop:41,loadhook:[0,12,26],serif:[41,0,3],link:[37,1,17,13,6,44,32],translat:[31,34,21,47],delta:41,line:[41,22,37,1,25,2,5,17,27,46,47,32],enspac:41,rmoustach:41,qquad:41,bigg:41,geqq:41,similar:[44,23],enlarg:29,constant:16,doesn:[41,37,23,45,2,16,19,30,33],repres:[10,22,17,3,15,5,6,40,19,20,38,21,47],mathdiv:[10,26,49,43],opera10:30,guarante:[0,49,43,14],constortium:20,improv:[46,19,4],phantom:41,extension1:[],bigoplu:41,iiint:41,titl:[17,43],sequenti:[44,49],invalid:[41,40],llcorner:41,toaudibl:45,bracket:[40,19],shoveleft:41,xrightarrow:41,department:37,supseteq:41,delayclear:30,msup:[17,47],alttext:38,eval:23,enhanc:47,svn:[17,37],rightharpoonup:41,land:41,mimetyp:[45,31,34,21],svg:47,confirm:[],supseteqq:41,depth:41,leak:45,far:[0,24,15],hello:26,prototyp:33,code:[0,2,4,41,7,10,11,32,14,16,17,35,19,22,23,24,25,26,12,5,36,38,39,40,49,43,44,3],partial:41,edg:37,queri:47,tiddlywiki:1,edu:[37,2],privat:[44,34,37],elsewher:43,send:[16,24],becam:39,sens:47,fatal:[],sent:[16,24,12,39],actiontyp:30,unzip:37,gnsim:41,defamatori:[],mous:[47,30,42,29],untouch:[],tri:[41,0,37,30],ischrom:12,mathit:41,notabl:[],button:37,curvearrowleft:41,nleq:41,userscript:2,maction:30,pleas:[17,32,40,4],impli:[41,27],smaller:0,fortun:16,arctan:41,natur:[20,17,41,37,47],varupsilon:41,download:[0,37,6,17,19,47],fullnam:26,hspace:41,click:[30,42,35,19,29,7,37,47],append:10,compat:[39,46],index:[17,37,1],compar:32,access:[24,37,1,26,45,49,42,41,17,20,33],clipboard:[],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],backprim:41,vargamma:41,varsigma:41,leq:41,let:[27,37,2,42,17,40,46,12,48],sinh:41,becom:[27,37,23,49,4,16,33],sinc:[0,12,49,23,24,14,41,27,3,43,16,17,35,19,44,46,47,32,33,18],tex4ht:47,rtime:41,convert:[11,27,23,41,2,5,28,20,47,21],produc:[41,30,23,17,45,42,43,16,6,24,35,19,26,20,46,47,32,21,18],sqcap:41,larger:47,technolog:[20,4],later:[24,27,30,23,14,49,41,26,12],zscale:19,circledast:41,typic:[5,41,37],chanc:[5,16,24],firefox:[32,37,2,46,12,48],rgroup:41,appli:[41,33],iskonqueror:12,lessgtr:41,"boolean":12,smallmatrix:41,from:[0,1,25,41,11,32,16,17,18,19,21,22,24,2,26,28,30,31,12,33,34,5,36,37,38,45,49,42,43,46,47],zip:[17,37],commun:[16,11,4,17],chi:41,doubl:[18,19,29],upgrad:[6,37,4],varphi:41,next:[41,44,45,43],few:[41,17,37,28],msqrt:[17,47],dfrac:41,bowti:41,dash:[3,30],comparison:[49,12],impress:[],doublebarwedg:41,projlim:41,"4ac":17,rare:49,versionatleast:12,account:[],alik:2,retriev:10,augment:[33,31,34,21],aperson:26,thin:18,control:[41,22,37,17,3,42,46,5,6,12,35,19,29,38,30,8,32,48,18],tau:41,process:[0,2,41,10,11,32,14,15,16,17,34,19,21,22,25,38,28,31,12,5,27,26,45,49,43,46,47,48],reftarget:[],newmath:43,high:[20,46,47],tag:[1,25,41,7,32,16,17,40,19,45,18,2,38,28,31,12,5,27,37,21,43,47],tan:41,prece:26,delai:[0,37,23,24,42,15,16,19,29,30],gcd:41,lgroup:41,getelementsbytagnamen:2,subdirectori:[45,31,21],instead:[41,37,17,14,49,43,16,26,47],class4:33,class2:33,sin:41,sim:41,class1:33,simplesup:33,frac:41,overridden:[30,21,34,45,31,33],mspace:[41,27],anothermethod:33,frak:41,redund:[33,19],essenti:[41,47,33],light:[41,33],correspond:[12,30],element:[25,41,6,10,16,17,40,21,22,24,38,36,31,12,33,5,27,30,45,49,43,44,47,3],issu:[0,27,4,15,17,47,32],unaccept:46,allow:[41,27,37,1,26,39,40,49,2,42,15,16,17,24,35,19,29,20,30,33,3],fallback:[30,37],mjx:10,fastest:46,nonumb:41,move:[30,37],nsucc:41,comma:[41,3,32,2,19],dagger:41,mathjax_tooltip:30,movabl:[9,1],coth:41,varxi:41,therefor:41,pixel:30,multimap:41,crash:19,pure:27,handl:[0,36,49,44,39,41,27,2,16,6,35,12,48,34],innermost:40,handi:[],mention:[],successor:28,gggtr:41,somewher:[],anyth:[16,32,4],edit:[17,32,1],smallfrown:41,prepackag:[],mode:[41,30,5,17,46,47],varomega:41,"2em":41,mod_head:37,subset:41,delaypost:30,consum:15,nointerest:24,src:[22,1,38,49,2,43,5,17,12,40,7,9,32],"static":33,our:[37,4],rightleftharpoon:41,helpurl:42,special:[41,12,26,3,5,17,27,19,44,20,46,47,32],out:[0,37,49,16,6,35,46,30,47],variabl:[36,23,13,2,25,43,41,26,33],lesseqqgtr:41,matrix:41,categori:49,rel:[0,35,30],moveabl:[9,1],merg:[10,12],ref:12,math:[25,41,10,11,32,15,16,17,35,19,20,22,2,38,28,29,30,31,12,34,5,27,37,39,42,43,44,46,47],negthinspac:41,nsucceq:41,insid:1,workflow:27,manipul:43,eqslantgtr:41,releas:[17,2,37],bleed:37,indent:[18,19],could:[0,27,17,13,49,4,43,16,26,47,12,45],put:[0,37,44,2,41,17,32],mac:[12,35,30,19],timer:[],david:[],gtreqqless:41,length:[2,23],outsid:[5,46,32],"0em":19,scriptstyl:41,endors:[],rbrace:41,blogger:[],udpat:37,precapprox:41,spadesuit:41,date:[17,37],uplu:41,clubsuit:41,bigsqcup:41,"long":[41,49,42],strict:[46,37],unknown:27,system:[37,1,17,4,41,6,20,46],messag:[0,36,37,39,17,13,41,25,15,16,6,12,34,19,44,32,24],attach:[16,24,44],termin:5,iota:41,rsh:41,supset:41,"1em":27,gtreqless:41,blind:47,gtrdot:41,structur:[0,36,23,39,43,16,26,12,32],charact:[41,27,30,3,5,6,18,19,47],htaccess:37,seriou:47,biggl:41,biggm:41,rrightarrow:41,favorit:[],unkown:12,lightli:46,tabl:27,need:[0,1,2,4,41,6,7,9,12,14,15,16,17,35,19,20,21,18,23,25,26,30,31,32,33,34,5,27,37,39,45,49,43,44,47,3],turn:[10,24,27,23,5,35],border:[10,41,3],woudl:[],min:41,manang:[],decis:46,msam:[],which:[1,25,41,9,32,15,16,17,18,19,21,22,23,24,2,26,27,28,29,30,31,12,33,34,5,36,37,38,40,49,43,45,46,47,3],hbox:41,mit:41,singl:[0,36,23,44,13,49,43,5,17,20,32,3],declaremathoper:41,mathjax_preview:[22,3,5,38,19,47],x22d6:41,unless:[17,32,23,46],bboxfor:[],who:[16,24,4],eight:46,leftthreetim:41,why:[],underset:41,url:[0,32,2,42,17],gather:41,request:[0,24,41,16,26,46,49],face:[30,4,6,18,37,32],inde:[32,2],nmid:41,determin:[12,30,1,25,41,35,19,32],starup:19,fact:[24,34],atopwithdelim:41,getalljaxfor:[],backsimeq:41,mathjax_messag:15,text:[1,2,41,6,7,10,15,16,17,40,19,20,45,18,22,26,9,32,5,30,38,49,43,35,47],verbos:[39,26,19],perfom:44,perfor:46,bring:47,woth:27,curlyeqsucc:41,textual:[],locat:[0,22,37,17,25,2,43,5,6,12,19,16,38,32,21,47,28],jax:[25,8,32,13,16,17,18,19,45,2,28,31,12,33,34,35,36,30,39,21,3,43,46,47,48],vartriangleright:41,forev:2,should:[2,41,7,9,32,14,17,40,19,21,22,23,24,38,28,31,12,34,5,27,37,26,49,43,46,48,3],imagefont:[6,30],vartriangleleft:41,suppos:[26,43],"5px":10,triangleright:41,local:[37,23,17,49,2,43,6,19,32],hope:6,precsim:41,liminf:41,regularli:[],looparrowright:41,bigstar:41,leqslant:41,triangl:41,enabl:[41,1,5,17,7,9],organ:47,frown:41,stuff:12,she:46,contain:[0,1,2,41,6,10,13,14,15,16,17,34,19,45,22,23,24,26,30,12,5,36,37,38,49,43,47,3],view:[27,37,13,2,17,28,46,20,30],attibut:3,legaci:[],coooki:10,similarli:[0,12],temporarili:15,troubl:17,outpu:[],issafari:12,asynchron:[0,36,23,24,39,14,49,16,26,44,12],statu:[0,37,26],error:[0,12,27,2,4,41,17,34,19,32],jmath:41,pattern:[5,19],thumb:49,gtrsim:41,written:[17,7],quickest:17,theta:41,neither:[6,32,40],entiti:[41,27],omicron:41,stati:[],nshortmid:41,kei:[10,0,23,24,14,16,19,12],job:32,entir:[12,43],mmorhtmll:[],closebox:6,ker:41,addit:[0,27,23,6,14,41,3,43,16,17,19,26,45,31,12,21,49],skipstartuptypeset:19,rtype:[],admin:[9,7],nabla:41,equal:[49,12,33],gnapprox:41,etc:[41,49,19,43],instanc:[10,33,49,34,12,45],equat:[41,22,37,43,5,38,18,19,20,46,47,32,45],futher:46,class3:33,eth:41,lmoustach:41,onchang:43,comment:[17,3,32,19],varnoth:41,dorectori:9,arriv:[16,44],walk:[],distinguish:31,arguement:26,sqcup:41,quit:43,showfontmenu:42,"55em":41,quotat:3,compos:27,sqsupseteq:41,json:[],besid:[],treat:17,immedi:[0,14,49,25,43,16],incldu:[],smallsetminu:41,both:[0,32,17,39,49,26,27,19,12,33],"05em":41,otf:37,bult:[],psi:41,togeth:[49,12,27,23],injlim:41,present:[6,27,19,4,24],risingdotseq:41,multi:41,iscallback:23,cow:33,plain:41,align:[41,27,19],contextu:[27,30,42,35,19,29,47,45],studentdisplai:43,defin:[12,30,29,17,25,49,2,42,41,6,35,19,26,3,32,33,18],glossari:[39,11],observ:[],layer:1,almost:41,curvearrowright:41,site:[37,1,17,19,20,9,32],archiv:[17,37],lightweight:[],revis:37,myinputjax:34,curlywedg:41,parti:16,cross:37,sqrt:[41,17,47],getx:33,extensiondir:34,oint:41,easi:[37,28],difficult:[26,27,44],phi:41,http:[17,2,37,42,46],lleftarrow:41,"8em":[41,18],effect:[14,49,2],dai:10,student:43,php:[1,7],trake:4,pull:37,executehook:[24,23],off:[41,44,35,46],center:[41,19],well:[37,23,26,3,4,43,16,17,34,19,44,46],exampl:[0,2,4,41,6,8,10,12,14,16,17,18,19,21,22,23,24,26,27,29,46,30,31,32,33,5,36,37,38,40,49,42,43,44,45,35,47,48,3],command:[27,37,23,39,14,49,25,43,41,19,12],choos:[41,46],undefin:[41,17,32,23,26],setx:33,usual:[23,26,49,41,6,34,19,47],curlyeqprec:41,paus:37,less:[5,41,47,12,37],half:26,obtain:[37,43,17,19,47,21],mistaken:47,mathclos:41,mathoutput:43,simultan:49,emtpi:[],web:[11,37,1,17,25,41,2,44,43,16,6,47,28,7,20,30,9,32,24,49,45],current_them:1,smith:26,textbf:41,cdotp:41,add:[33,41,1,17,14,3,2,5,6,19,45,46,21],book:39,match:[5,24,30],ctrl:19,webpag:28,usemathmlspac:8,varpropto:41,know:[24,26,2,16,17,31,21,47],mathinn:41,sourceel:[16,45,21,43],loader:[31,21],recurs:12,konqueror:[46,12],nofont:6,like:[2,41,14,15,16,17,20,23,24,26,28,31,32,5,27,37,39,49,43,44,46,47,3],lost:26,incred:[],messagehook:[16,24,12],necessari:[20,12,45],lose:[],exportaud:[],captur:39,suppli:[12,45,23],"export":45,superclass:33,proper:[24,12],home:0,librari:[13,49,36,37],glyph:[41,39],kern:41,assum:[17,9,43,7],avoid:[41,40,47,27,19],tooltip:30,leav:[10,18,48,43],doublecap:41,twoheadleftarrow:41,daleth:41,upharpoonright:41,journal:39,usag:11,sphericalangl:41,although:[13,17,32,48,24],offset:30,panel:41,varepsilon:41,about:[41,12,37,23,17,4,43,16,6,35,28,26,44,30,47,32,24],actual:[10,0,12,23,14,41,43,16,26,27,19,31,32,21,49],interven:[],column:18,mathajx:[],genfrac:41,mapsto:41,constructor:33,disabl:[35,30],eqalign:41,own:[37,17,13,49,2,4,41,6,44,31,32,21,47],amsmath:[49,2,41,17,18,32],circledr:41,reprocessor:27,automat:[41,14,49,15,5,17,34,46,47,32,33],guard:19,vphantom:41,circlearrowleft:41,dcocument:12,transfer:[17,37],support:[11,36,30,17,25,27,2,4,41,6,35,20,46,47,32,48],much:[16,39,46,44],bigcap:41,tracker:[17,4],arg1:26,"var":[10,23,49,2,43,16,26,33],arg2:26,"function":[33,0,23,24,39,14,41,2,43,16,26,25,47,44,31,12,21,49],propto:41,unexpect:[35,19],precnapprox:41,studentansw:43,gain:[46,42],inlin:[5,17,32],bug:[37,4,15,17,19,47],made:[45,49,4,44,31,32,21,47],bbbk:41,whether:[41,22,30,38,2,42,43,5,26,35,19,8,12,48],wish:[3,2,4,41,26,46,12],commit:[],displai:[10,11,22,37,17,45,41,27,42,15,5,6,18,19,29,16,20,47,32,21,43],substack:41,underleftrightarrow:41,mathord:41,directori:[0,37,1,44,39,45,25,16,17,34,19,7,30,31,32,21,9],below:[1,2,41,6,8,10,17,40,19,21,18,22,38,29,46,30,31,12,34,5,37,45,42,44,35,47,48],meta:46,sideset:41,otherwis:[0,36,23,15,41,12,7,32,33],problem:[37,26,2,4,41,17,46,47],x03c0:47,"int":[10,41,26],dure:[16,12,45,34,23],filenam:26,novemb:[],implement:[10,0,27,13,41,26,34,16,46,47,33],nolimit:41,inf:41,meth:0,probabl:[37,1,26,16,17,32],oplu:41,mrow:[17,47,27],immateri:49,percent:35,detail:[0,41,6,7,11,32,14,16,17,35,19,22,23,24,38,28,29,30,9,12,5,27,37,49,42,43,44,46,47],lesseqgtr:41,other:[25,41,32,14,16,17,35,19,20,45,23,24,26,28,30,12,33,34,5,27,37,39,49,43,44,46,47,48],futur:[16,0,46,4,44],varieti:47,downlaod:20,removeaft:6,repeat:[37,1],star:41,"class":[33,41,36,23,24,13,14,5,34,19,45,31,21,47,28],thicksim:41,msgroup:27,stai:[],scientif:39,reliabl:[46,2],rule:[41,6,8,49,19],mathjax_mathml:2,portion:43,auxiliari:[],eot:37,decemb:11},objtypes:{"0":"py:method"},titles:["The MathJax.Ajax Object","Using MathJax in popular web platforms","Loading MathJax Dynamically","CSS Style Objects","The MathJax Community","The tex2jax Preprocessor","The FontWarnings extension","Installing MathJax in WordPress","The MathML input processor","Using MathJax in Movable Type","The MathJax.HTML Object","MathJax Documentation","The MathJax.Hub Object","The MathJax API","The MathJax.Callback.Queue Class","The MathJax.Message Object","Using Signals","Getting Started","The TeX input processor","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax.Callback.Signal Class","The MathJax Startup Sequence","Using Callbacks","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 NativeMML output processor","The MathJax variable","Installing and Testing MathJax","The mml2jax Preprocessor","Glossary","Describing HTML snippets","MathJax TeX and LaTeX Support","The MathMenu extension","Modifying Math on the Page","Synchronizing your code with MathJax","The MathJax.ElementJax Class","MathJax Output Formats","The MathJax Processing Model","The MMLorHTML configuration options","Using Queues"],objnames:{"0":"Python method"},filenames:["api/ajax","platforms/index","dynamic","CSS-styles","community","options/tex2jax","options/FontWarnings","platforms/wordpress","options/MathML","platforms/movable-type","api/html","index","api/hub","api/index","api/queue","api/message","signals","start","options/TeX","options/hub","mathjax","api/outputjax","options/jsMath2jax","api/callback","api/signal","startup","callbacks","mathml","jsMath","options/MathZoom","options/HTML-CSS","api/inputjax","configuration","api/object","api/jax","options/NativeMML","api/variable","installation","options/mml2jax","glossary","HTML-snippets","tex","options/MathMenu","typeset","synchronize","api/elementjax","output","model","options/MMLorHTML","queues"]}) +\ No newline at end of file diff --git a/docs/rst/installation.rst b/docs/rst/installation.rst @@ -23,10 +23,10 @@ The easiest way to get MathJax and keep it up to date is to use the `Git .. code-block:: sh git clone git://github.com/mathjax/MathJax.git mathjax - cd mathjax - unzip fonts.zip -to obtain and set up a copy of MathJax. +to obtain and set up a copy of MathJax. Note that there is no longer +a ``fonts.zip`` file, and that the ``fonts`` directory is now part of +the repository itself. Whenever you want to update MathJax, you can now use @@ -43,24 +43,19 @@ date or out of date). If MathJax needs updating, use cd mathjax git pull origin - # if fonts.zip is updated, do the following as well: - rm -rf fonts - unzip fonts.zip -to udpate your copy of MathJax to the current release version. If the -``fonts.zip`` file has been updated, you will need to remove the old fonts -directory and unpack the new one bring your installation up to date. If you keep -MathJax updated in this way, you will be sure that you have the latest bug fixes -and new features as they become available. +to udpate your copy of MathJax to the current release version. If you +keep MathJax updated in this way, you will be sure that you have the +latest bug fixes and new features as they become available. This gets you the current development copy of MathJax, which is the -"bleeding-edge" version that contains all the latest changes to MathJax. At -times, however, these may be less stable than the "release" version. If you -prefer to use the most stable version (that may not include all the latest -patches and features), use ``git tag -l`` to see all versions and use ``git -checkout <tag_name>`` to checkout that version of MathJax. When you want to -upgrade to a new release, you will need to repeat this for the latest release -tag. +"bleeding-edge" version that contains all the latest changes to +MathJax. At times, however, these may be less stable than the +"release" version. If you prefer to use the most stable version (that +may not include all the latest patches and features), use ``git tag +-l`` to see all versions and use ``git checkout <tag_name>`` to +checkout that version of MathJax. When you want to upgrade to a new +release, you will need to repeat this for the latest release tag. .. _getting-mathjax-svn: @@ -76,10 +71,10 @@ latest revision using ``svn``, use the commands .. code-block:: sh svn checkout http://svn.github.com/mathjax/MathJax.git mathjax - cd mathjax - unzip fonts.zip -to obtain and set up a copy of MathJax. +to obtain and set up a copy of MathJax. Note that there is no longer +a ``fonts.zip`` file, and that the ``fonts`` directory is now part of +the repository itself. Whenever you want to update MathJax, you can now use @@ -95,16 +90,10 @@ use cd mathjax svn update - # if fonts.zip is updated, do the following as well: - rm -rf fonts - unzip fonts.zip -to udpate your copy of MathJax to the current release version. If the -``fonts.zip`` file has been updated, you will need to remove the old -fonts directory and unpack the new one bring your installation up to -date. If you keep MathJax updated in this way, you will be sure that -you have the latest bug fixes and new features as they become -available. +to udpate your copy of MathJax to the current release version. If you +keep MathJax updated in this way, you will be sure that you have the +latest bug fixes and new features as they become available. This gets you the current development copy of MathJax, which is the "bleeding-edge" version that contains all the latest changes to @@ -118,23 +107,10 @@ archive files as described below. You can use svn checkout http://svn.github.com/mathjax/MathJax.git@nnn mathjax to check out revision number `nnn`, but it is not easy to tell what -revision number is associated with a particular release. GitHub's +svn revision number is associated with a particular release. GitHub's ``svn`` service doesn't appear to allow you to sepecify a particular tagged version. -.. If you prefer to use the most stable version (that - may not include all the latest patches and features), use - -.. .. code-block:: sh - - svn co http://mathjax.svn.sourceforge.net/svnroot/mathjax/tags/mathjax-1.0.1 mathajx - cd mathjax - unzip fonts.zip - -.. to obtain the version 1.0.1 release. When you wish to update to a new - release, you will need to check out a new copy of MathJax with the new - release number. - .. _getting-mathjax-zip: