www

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

commit 6cec11ee941f70a59e4388ce26439cfaf412bd53
parent b7a286cb2c56638fd2b25127684dbf9f8a9b6c1e
Author: Casey W. Stark <casey@thestarkeffect.com>
Date:   Tue,  2 Nov 2010 20:32:35 -0700

Updating installation docs page. Added the Git install method and changed the archive method to the GitHub downloads.

Diffstat:
Mmathjax/docs/html/.doctrees/environment.pickle | 0
Mmathjax/docs/html/.doctrees/installation.doctree | 0
Mmathjax/docs/html/_sources/installation.txt | 72++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------
Mmathjax/docs/html/installation.html | 57++++++++++++++++++++++++++++++++++++++++++++++-----------
Mmathjax/docs/html/objects.inv | 0
Mmathjax/docs/html/searchindex.js | 4++--
Mmathjax/docs/rst/installation.rst | 72++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------
7 files changed, 168 insertions(+), 37 deletions(-)

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