From 9cc6a284e28c0cfffbcd15d76b6c5e3f9d302478 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Wed, 27 Jul 2011 15:26:19 -0400 Subject: [PATCH 01/12] Improve documentation of options that include regular expressions (Fred's suggestion) --- docs/html/_sources/options/hub.txt | 23 ++++++++++++----------- docs/html/_sources/options/tex2jax.txt | 24 +++++++++++++++--------- docs/html/index.html | 2 +- docs/html/options/hub.html | 23 ++++++++++++----------- docs/html/options/tex2jax.html | 24 +++++++++++++++--------- docs/html/searchindex.js | 2 +- docs/source/options/hub.rst | 23 ++++++++++++----------- docs/source/options/tex2jax.rst | 24 +++++++++++++++--------- 8 files changed, 83 insertions(+), 62 deletions(-) diff --git a/docs/html/_sources/options/hub.txt b/docs/html/_sources/options/hub.txt index 3bca2d758..1c86cac71 100644 --- a/docs/html/_sources/options/hub.txt +++ b/docs/html/_sources/options/hub.txt @@ -59,22 +59,23 @@ behavior of MathJax. They are given with their default values. no space before it and the preceding text. In order to avoid this, you should include some "guard characters" before or after the math SCRIPT tag; define the patterns you want to use below. - Note that these are used as regular expressions, so you will need - to quote special characters. Furthermore, since they are - javascript strings, you must quote javascript special characters - as well. So to obtain a backslash, you must use ``\\`` (doubled - for javascript). For example, ``"\\["`` represents the pattern - ``\[`` in the regular expression. That means that if you want an - actual backslash in your guard characters, you need to use - ``"\\\\"`` in order to get ``\\`` in the regular expression, and - ``\`` in the actual text. If both preJax and postJax are defined, - both must be present in order to be removed. + Note that these are used as part of a regular expression, so you + will need to quote special characters. Furthermore, since they + are javascript strings, you must quote javascript special + characters as well. So to obtain a backslash, you must use ``\\`` + (doubled for javascript). For example, ``"\\["`` represents the + pattern ``\[`` in the regular expression, or ``[`` in the text of + the web page. That means that if you want an actual backslash in + your guard characters, you need to use ``"\\\\"`` in order to get + ``\\`` in the regular expression, and ``\`` in the actual text. + If both ``preJax`` and ``postJax`` are defined, both must be + present in order to be removed. See also the ``preRemoveClass`` comments below. Examples: - ``preJax: "\\\\\\\\\"`` makes a double backslash the preJax text + ``preJax: "\\\\\\\\\"`` makes a double backslash the ``preJax`` text ``preJax: "\\[\\[", postJax: "\\]\\]"`` makes it so jax scripts must be enclosed in double brackets. diff --git a/docs/html/_sources/options/tex2jax.txt b/docs/html/_sources/options/tex2jax.txt index 93031f243..6a5d161b4 100644 --- a/docs/html/_sources/options/tex2jax.txt +++ b/docs/html/_sources/options/tex2jax.txt @@ -113,11 +113,14 @@ preprocessor. not be processed by tex2jax (other than to look for the ``processClass`` pattern below). Note that this is a regular expression, and so you need to be sure to quote any `regexp` - special characters. The pattern is automatically preceeded by - ``'(^| )('`` and followed by ``')( |$)'``, so your pattern will - have to match full words in the class name. Assigning an element - this class name will prevent `tex2jax` from processing its - contents. + special characters. The pattern is inserted into one that + requires your pattern to match a complete word, so setting + ``ignoreClass: "class2"`` would cause it to match an element with + ``class="class1 class2 class3"``. Note that you can assign + several classes by separating them by the vertical line character + (``|``). For instance, with ``ignoreClass: "class1|class2"`` + any element assigned a class of either ``class1`` or ``class2`` + will be skipped. .. describe:: processClass: "tex2jax_process" @@ -126,7 +129,10 @@ preprocessor. processing within tags that have been marked as ignored or skipped above. Note that this is a regular expression, and so you need to be sure to quote any `regexp` special characters. The pattern is - automatically preceeded by ``'(^| )('`` and followed by ``')( - |$)'``, so your pattern will have to match full words in the class - name. Use this to restart processing within an element that has - been marked as ignored above. + inserted into one that requires your pattern to match a complete + word, so setting ``processClass: "class2"`` would cause it to + match an element with ``class="class1 class2 class3"``. Note that + you can assign several classes by separating them by the vertical + line character (``|``). For instance, with ``processClass: + "class1|class2"`` any element assigned a class of either + ``class1`` or ``class2`` will have its contents processed. diff --git a/docs/html/index.html b/docs/html/index.html index 8b14e02b6..3c7762f24 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -121,7 +121,7 @@ MathML that works in all modern browsers.


-

This version of the documentation was built July 20, 2011.

+

This version of the documentation was built July 27, 2011.

diff --git a/docs/html/options/hub.html b/docs/html/options/hub.html index 620c9409f..eca230d41 100644 --- a/docs/html/options/hub.html +++ b/docs/html/options/hub.html @@ -116,20 +116,21 @@ MathJax inserts the typeset mathematics, this means there will be no space before it and the preceding text. In order to avoid this, you should include some “guard characters” before or after the math SCRIPT tag; define the patterns you want to use below. -Note that these are used as regular expressions, so you will need -to quote special characters. Furthermore, since they are -javascript strings, you must quote javascript special characters -as well. So to obtain a backslash, you must use \\ (doubled -for javascript). For example, "\\[" represents the pattern -\[ in the regular expression. That means that if you want an -actual backslash in your guard characters, you need to use -"\\\\" in order to get \\ in the regular expression, and -\ in the actual text. If both preJax and postJax are defined, -both must be present in order to be removed.

+Note that these are used as part of a regular expression, so you +will need to quote special characters. Furthermore, since they +are javascript strings, you must quote javascript special +characters as well. So to obtain a backslash, you must use \\ +(doubled for javascript). For example, "\\[" represents the +pattern \[ in the regular expression, or [ in the text of +the web page. That means that if you want an actual backslash in +your guard characters, you need to use "\\\\" in order to get +\\ in the regular expression, and \ in the actual text. +If both preJax and postJax are defined, both must be +present in order to be removed.

See also the preRemoveClass comments below.

Examples:

-

preJax: "\\\\\\\\\" makes a double backslash the preJax text

+

preJax: "\\\\\\\\\" makes a double backslash the preJax text

preJax: "\\[\\[", postJax: "\\]\\]" makes it so jax scripts must be enclosed in double brackets.

diff --git a/docs/html/options/tex2jax.html b/docs/html/options/tex2jax.html index ec7a48f78..634b3cd2f 100644 --- a/docs/html/options/tex2jax.html +++ b/docs/html/options/tex2jax.html @@ -163,11 +163,14 @@ contexts.

not be processed by tex2jax (other than to look for the processClass pattern below). Note that this is a regular expression, and so you need to be sure to quote any regexp -special characters. The pattern is automatically preceeded by -'(^| )(' and followed by ')( |$)', so your pattern will -have to match full words in the class name. Assigning an element -this class name will prevent tex2jax from processing its -contents.

+special characters. The pattern is inserted into one that +requires your pattern to match a complete word, so setting +ignoreClass: "class2" would cause it to match an element with +class="class1 class2 class3". Note that you can assign +several classes by separating them by the vertical line character +(|). For instance, with ignoreClass: "class1|class2" +any element assigned a class of either class1 or class2 +will be skipped.

@@ -178,10 +181,13 @@ contents.

processing within tags that have been marked as ignored or skipped above. Note that this is a regular expression, and so you need to be sure to quote any regexp special characters. The pattern is -automatically preceeded by '(^| )(' and followed by ')( -|$)', so your pattern will have to match full words in the class -name. Use this to restart processing within an element that has -been marked as ignored above.

+inserted into one that requires your pattern to match a complete +word, so setting processClass: "class2" would cause it to +match an element with class="class1 class2 class3". Note that +you can assign several classes by separating them by the vertical +line character (|). For instance, with processClass: +"class1|class2" any element assigned a class of either +class1 or class2 will have its contents processed.

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

removeAfter: 12*1000

This is the amount of time to show the FontWarning message, in -milliseconds. The default is 12 seconds.

+milliseconds. The default is 12 seconds. Setting this value +to zero means that the message will not fade out (the user must +close it manually).

fadeoutSteps: 10

This is the number of steps to take while fading out the -FontWarning message. More steps make for a smoother fade-out.

+FontWarning message. More steps make for a smoother fade-out. +Set to zero to cause the message to be removed without fading.

diff --git a/docs/html/options/NativeMML.html b/docs/html/options/NativeMML.html index a67d0db4b..7f591cd5c 100644 --- a/docs/html/options/NativeMML.html +++ b/docs/html/options/NativeMML.html @@ -106,7 +106,7 @@ menu support in other browsers.

styles: {}
-

This is a list of CSS declarations for styling the HTML-CSS +

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

processClass: "tex2jax_process"

This is the class name used to mark elements whose contents -should be processed by tex2jax. This is used to turn on -processing within tags that have been marked as ignored or skipped -above. Note that this is a regular expression, and so you need to -be sure to quote any regexp special characters. The pattern is -inserted into one that requires your pattern to match a complete -word, so setting processClass: "class2" would cause it to -match an element with class="class1 class2 class3". Note that -you can assign several classes by separating them by the vertical -line character (|). For instance, with processClass: -"class1|class2" any element assigned a class of either -class1 or class2 will have its contents processed.

+should be processed by tex2jax. This is used to restart +processing within tags that have been marked as ignored via the +ignoreClass or to cause a tag that appears in the skipTags +list to be processed rather than skipped. Note that this is a +regular expression, and so you need to be sure to quote any +regexp special characters. The pattern is inserted into one +that requires your pattern to match a complete word, so setting +processClass: "class2" would cause it to match an element with +class="class1 class2 class3". Note that you can assign +several classes by separating them by the vertical line character +(|). For instance, with processClass: "class1|class2" any +element assigned a class of either class1 or class2 will +have its contents processed.

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

    CSS Style ObjectsΒΆ

    Many MathJax components allow you to specify CSS styles that control -the look of the elements they create. These are described using CSS -style objects, which are JavaScript objects that represent standard +the look of the elements they create. These are described using CSS +style objects, which are JavaScript objects that represent standard CSS declarations. The main CSS style object is a collection of name:value pairs where the name is the CSS selector that is being defined, and the value is an object that gives the style for that @@ -73,25 +73,27 @@ quotation marks as well.

    declaration:

    styles: {
     
    +  ".MathJax_Display": {
    +    "text-align": "center",
    +    margin:       "1em 0em"
    +  },
    +
       ".MathJax .merror": {
         "background-color": "#FFFF88",
         color:   "#CC0000",
         border:  "1px solid #CC0000",
         padding: "1px 3px",
    -    "font-family": "serif",
         "font-style": "normal",
         "font-size":  "90%"
    -  },
    -
    -  ".MathJax_Preview": {color: "#888888"},
    +  }
     
     }
     
    -

    This defines two CSS styles, one for the selector .MathJax -.merror, which specifies a background color, foreground color, -border, and so on, and a second for .MathJax_Preview that sets its -color.

    +

    This defines two CSS styles, one for the selector +.MathJax_Display, which specifies its text alignment and margin +settings, and a second for .MathJax .merror, which specifies a +background color, foreground color, border, and so on.

    You can add as many such definitions to a styles object as you wish. Note, however, that since this is a JavaScript object, the selectors must be unique (e.g., you can’t use two definitions for @@ -159,11 +161,11 @@ samples. In particular, the exte

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/HTML-snippets.html b/docs/html/HTML-snippets.html index ad4167220..1e415da86 100644 --- a/docs/html/HTML-snippets.html +++ b/docs/html/HTML-snippets.html @@ -6,13 +6,13 @@ - Describing HTML snippets — MathJax v1.1 documentation + Describing HTML snippets — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -156,11 +156,11 @@ This is bold text shown in red
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/_sources/CSS-styles.txt b/docs/html/_sources/CSS-styles.txt index bf014f5c2..b7b8b0bbb 100644 --- a/docs/html/_sources/CSS-styles.txt +++ b/docs/html/_sources/CSS-styles.txt @@ -5,8 +5,8 @@ CSS Style Objects ***************** Many MathJax components allow you to specify CSS styles that control -the look of the elements they create. These are described using CSS -style objects, which are JavaScript objects that represent standard +the look of the elements they create. These are described using `CSS +style objects`, which are JavaScript objects that represent standard CSS declarations. The main CSS style object is a collection of `name:value` pairs where the `name` is the CSS selector that is being defined, and the `value` is an object that gives the style for that @@ -31,24 +31,26 @@ declaration: styles: { + ".MathJax_Display": { + "text-align": "center", + margin: "1em 0em" + }, + ".MathJax .merror": { "background-color": "#FFFF88", color: "#CC0000", border: "1px solid #CC0000", padding: "1px 3px", - "font-family": "serif", "font-style": "normal", "font-size": "90%" - }, - - ".MathJax_Preview": {color: "#888888"}, + } } -This defines two CSS styles, one for the selector ``.MathJax -.merror``, which specifies a background color, foreground color, -border, and so on, and a second for ``.MathJax_Preview`` that sets its -color. +This defines two CSS styles, one for the selector +``.MathJax_Display``, which specifies its text alignment and margin +settings, and a second for ``.MathJax .merror``, which specifies a +background color, foreground color, border, and so on. You can add as many such definitions to a ``styles`` object as you wish. Note, however, that since this is a JavaScript object, the diff --git a/docs/html/_sources/asciimath.txt b/docs/html/_sources/asciimath.txt new file mode 100644 index 000000000..bbfccea88 --- /dev/null +++ b/docs/html/_sources/asciimath.txt @@ -0,0 +1,127 @@ +.. _AsciiMath-support: + +************************* +MathJax AsciiMath Support +************************* + +The support for :term:`AsciiMath` in MathJax consists of two parts: +the `asciimath2jax` preprocessor, and the `AsciiMath` input processor. +The first of these looks for mathematics within your web page +(indicated by delimiters like ```...```) and marks the mathematics for +later processing by MathJax. The AsciiMath input processor is what +converts the AsciiMath notation into MathJax's internal format, where +one of MathJax's output processors then displays it in the web page. + +The AsciiMath input jax actually includes a copy of Peter Jipsen's +``ASCIIMathML.js`` file (see the `AsciiMath home page +`_ for +details), and is included by permission of the author. This means +that the results of MathJax's AsciiMath processing should be the same +as using the actual ``ASCIIMathML.js`` package (at least as far as the +MathML that it generates is concerned). Thanks go to David Lippman +for writing the initial version of the AsciiMath preprocessor and +input jax. + +The `asciimath2jax` preprocessor can be configured to look for whatever +markers you want to use for your math delimiters. See the +:ref:`asciimath2jax configuration options ` section for +details on how to customize the action of `asciimath2jax`. + +The AsciiMath input processor handles conversion of your mathematical +notation into MathJax's internal format (which is essentially MathML). +The AsciiMath input processor has few configuration options (see the +:ref:`AsciiMath options ` section for details). + +The AsciiMath input jax handles only the original ASCIIMathML notation +(from ASCIIMathML v1.4.7), not the extened LaTeXMathML notation added +in version 2.0 of ASCIIMathML, though the AsciiMath input jax does +expose the tables that define the symbols that AsciiMath processes, +and so it would be possible to extend them to include additional +symbols. In general, it is probably better to use MathJax's :ref:`TeX +input jax ` to handle LaTeX notation instead. + + +AsciiMath delimiters +==================== + +By default, the `asciimath2jax` preprocessor defines the back-tick +(`````) as the delimiters for mathematics in AsciiMath format. It +does **not** define ``$...$`` as math delimiters. That is because +dollar signs appear too often in non-mathematical settings, which +could cause some text to be treated as mathematics unexpectedly. For +example, with single-dollar delimiters, "... the cost is $2.50 for the +first one, and $2.00 for each additional one ..." would cause the +phrase "2.50 for the first one, and" to be treated as mathematics +since it falls between dollar signs. For this reason, if you want to +use single-dollars for AsciiMath notation, you must enable that +explicitly in your configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + asciimath2jax: { + delimiters: [['$','$'], ['`','`']] + } + }); + +Note that the dollar signs are frequently used as a delimiter for +mathematics in the :term:`TeX` format, and you can not enable the +dollar-sign delimiter for both. It is probably best to leave dollar +signs for TeX notation. + +See the ``config/default.js`` file, or the :ref:`asiimath2jax +configuration options ` page, for additional +configuration parameters that you can specify for the `asciimath2jax` +preprocessor, which is the component of MathJax that identifies +AsciiMath notation within the page. + + +AsciiMath in HTML documents +=============================== + +The AsciiMath syntax is descibed in the `ASCIIMathML syntax page +`_. + +Keep in mind that your mathematics is part of an HTML document, so you +need to be aware of the special characters used by HTML as part of its +markup. There cannot be HTML tags within the math delimiters (other +than ``
    ``) as AsciiMath-formatted math does not include HTML tags. +Also, since the mathematics is initially given as text on the page, +you need to be careful that your mathematics doesn't look like HTML +tags to the browser (which parses the page before MathJax gets to see +it). In particular, that means that you have to be careful about +things like less-than and greater-than signs (``<`` and ``>``), and +ampersands (``&``), which have special meaning to the browsers. For +example, + +.. code-block:: html + + ... when `x`` in the document (typically the end of the next +actual tag in the HTML file), and you may notice that you are missing +part of the text of the document. In the example above, the "``we +have ...``" will not be displayed because the browser thinks it is +part of the tag starting at `` where ``path-to-MathJax`` is the URL to the MathJax directory on your -server or hard disk. +server or hard disk. If you are using MathJax from the CDN, you can +view the contents of `default.js +`_ as a +reference, but you will not be able to edit the CDN copy. It is +possible to use the CDN copy of MathJax with your own configuration +file, however; see :ref:`Using a Local Configuration File with the CDN +` for details. -The remaining files are combined configuration files that include not just -configuration parameters but also the files that MathJax would need to -load for those configurations. This means MathJax will have to load fewer -files, and since each file access requires establishing connections over -the network, it can be better to load one larger file than several smaller -ones. See :ref:`Loading and Configuring MathJax ` for more -details about how to load configurations, and how to modify the parameters -for a configuration file. +The remaining files in the `MathJax/config +`_ directory are +combined configuration files that include not just configuration +parameters but also the files that MathJax would need to load for +those configurations. This means MathJax will have to load fewer +files, and since each file access requires establishing connections +over the network, it can be faster to load one larger file than +several smaller ones. See :ref:`Loading and Configuring MathJax +` for more details about how to load configurations, and how +to modify the parameters for a configuration file. The following sections describe the contents of the combined configuration files. Each comes in two flavors: a standard version and a "full" version. The standard version simply defines the output processor(s) that are part of the configuration, but doesn't load the code that implements the output -processor; the full version loads the complete output processors, so +processor. The full version loads the complete output processors, so everything that MathJax needs for the page should be loaded up front, and there will be no delay once the page is ready to be processed. To obtain the "full" version, add ``-full`` to the end of the configuration file name. -The ``TeX-AMS-MML_HTMLorMML`` configuration file +The ``TeX-MML-AM_HTMLorMML`` configuration file ================================================ This configuration file is the most general of the pre-defined -configurations. It loads all the important MathJax components, including +configurations. It loads all the main MathJax components, including +the TeX, MathML, and AsciiMath preprocessors and input processors, the +AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, both +the native MathML and HTML-with-CSS output processor definitions, and +the MathMenu and MathZoom extensions. It is equivalent to the +following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + config: ["MMLorHTML.js"], + jax: ["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS","output/NativeMML"], + extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathMenu.js","MathZoom.js"], + TeX: { + extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] + } + }); + +In addition, it loads the mml Element Jax, the TeX, MathML, and +AsciiMath input jax main code (not just the definition files), as well +as the `toMathML` extension, which is used by the Show Source option +in the MathJax contextual menu. The `-full` version also loads both the +HTML-CSS and NativeMML output jax main code, plus the HTML-CSS +`mtable` extension, which is normally loaded on demand. + +See the :ref:`tex2jax configuration ` section for +other configuration options for the ``tex2jax`` preprocessor, and the +:ref:`TeX input jax configuration ` section for options +that control the TeX input processor. +See the :ref:`mml2jax configuration ` section for +other configuration options for the ``mml2jax`` preprocessor, and the +:ref:`MathML input jax configuration ` section for +options that control the MathML input processor. +See the :ref:`asciimath2jax configuration ` section for +other configuration options for the ``asciimath2jax`` preprocessor, and the +:ref:`AsciiMath input jax configuration ` section for +options that control the AsciiMath input processor. +See :ref:`MathJax Output Formats ` for more +information on the NativeMML and HTML-CSS output processors. See the +:ref:`MMLorHTML configuration ` section for +details on the options that control the ``MMLorHTML`` configuration. + + +The ``TeX-AMS-MML_HTMLorMML`` configuration file +================================================ + +This configuration file is the most commonly used of the pre-defined +configurations. It loads all the main MathJax components, including the TeX and MathML preprocessors and input processors, the AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, both the native -MathML and HTML-with-CSS output processor definitions, and the MathMenu and -MathZoom extensions. It is equivalent to the following configuration: +MathML and HTML-with-CSS output processor definitions, and the +MathMenu and MathZoom extensions. It is equivalent to the following +configuration: .. code-block:: javascript @@ -58,12 +114,12 @@ MathZoom extensions. It is equivalent to the following configuration: } }); -In addition, it loads the mml Element Jax, the TeX and MathML input jax -main code (not just the definition files), as well as the `toMathML` -extension, which is used by the Show Source option in the MathJax -contextual menu. The full version also loads both the HTML-CSS and -NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which -is normally loaded on demand. +In addition, it loads the mml Element Jax, the TeX and MathML input +jax main code (not just the definition files), as well as the +`toMathML` extension, which is used by the Show Source option in the +MathJax contextual menu. The ``-full`` version also loads both the +HTML-CSS and NativeMML output jax main code, plus the HTML-CSS +`mtable` extension, which is normally loaded on demand. See the :ref:`tex2jax configuration ` section for other configuration options for the ``tex2jax`` preprocessor, and the @@ -106,7 +162,7 @@ extensions. It is equivalent to the following configuration: In addition, it loads the mml Element Jax and the TeX input jax main code (not just the definition file), as well as the `toMathML` extension, which -is used by the Show Source option in the MathJax contextual menu. The full +is used by the Show Source option in the MathJax contextual menu. The ``-full`` version also loads the HTML-CSS output jax main code, plus the HTML-CSS `mtable` extension, which is normally loaded on demand. @@ -123,7 +179,7 @@ The ``MML_HTMLorMML`` configuration file This configuration file is for sites that only use MathML format for their mathematics. It will use MathML output in browsers where that is -supported, and HTML-CSS output otherwise. The user can still use the +supported well, and HTML-CSS output otherwise. The user can still use the MathJax contextual menu to select the other output format if they desire. This file includes all the important MathJax components for MathML input @@ -142,7 +198,7 @@ and MathZoom extensions. It is equivalent to the following configuration: In addition, it loads the mml Element Jax and the MathML input jax main code (not just the definition file), as well as the `toMathML` extension, which is used by the Show Source option in the MathJax contextual menu. -The full version also loads both the HTML-CSS and NativeMML output jax main +The ``-full`` version also loads both the HTML-CSS and NativeMML output jax main code files, plus the HTML-CSS `mtable` extension, which is normally loaded on demand. @@ -156,13 +212,100 @@ information on the NativeMML and HTML-CSS output processors. See the details on the options that control the ``MMLorHTML`` configuration. +The ``AM_HTMLorMML`` configuration file +================================================ + +This configuration file is for sites that only use AsciiMath format for their +mathematics. It will use MathML output in browsers where that is +supported well, and HTML-CSS output otherwise. The user can still use the +MathJax contextual menu to select the other output format if they desire. + +This file includes all the important MathJax components for AsciiMath +input and output, including the `asciimath2jax` preprocessor and +AsciiMath input jax, the NativeMML and HTML-CSS output processor +definition files, and the MathMenu and MathZoom extensions. It is +equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + config: ["MMLorHTML.js"], + jax: ["input/AsciiMath","output/HTML-CSS","output/NativeMML"], + extensions: ["asciimath2jax.js","MathMenu.js","MathZoom.js"] + }); + +In addition, it loads the mml Element Jax and the TeX input jax main code +(not just the definition file), as well as the `toMathML` extension, which +is used by the Show Source option in the MathJax contextual menu. The ``-full`` +version also loads the HTML-CSS output jax main code, plus the HTML-CSS +`mtable` extension, which is normally loaded on demand. + +See the :ref:`asciimath2jax configuration ` +section for other configuration options for the ``asciimath2jax`` +preprocessor, and the :ref:`AsciiMath input jax configuration +` section for options that control the AsciiMath +input processor. See :ref:`MathJax Output Formats ` +for more information on the HTML-CSS and NativeMML output processors. +See the :ref:`MMLorHTML configuration ` section +for details on the options that control the ``MMLorHTML`` +configuration. + + +The ``TeX-AMS-MML_SVG`` configuration file +================================================ + +This configuration file is the same as `TeX-AMS-MML_HTMLorMML` except +that it uses the SVG output renderer rather than the NativeMML or +HTML-CSS ones. It loads all the main MathJax components, including +the TeX and MathML preprocessors and input processors, the AMSmath, +AMSsymbols, noErrors, and noUndefined TeX extensions, the SVG output +processor definitions, and the MathMenu and MathZoom extensions. It +is equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + jax: ["input/TeX","input/MathML","output/SVG"], + extensions: ["tex2jax.js","mml2jax.js","MathMenu.js","MathZoom.js"], + TeX: { + extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] + } + }); + +In addition, it loads the mml Element Jax, the TeX and MathML input +jax main code (not just the definition files), as well as the +`toMathML` extension, which is used by the Show Source option in the +MathJax contextual menu. The ``-full`` version also loads both the +SVG output jax main code, plus the SVG `mtable` extension, which +is normally loaded on demand. + +See the :ref:`tex2jax configuration ` section for +other configuration options for the ``tex2jax`` preprocessor, and the +:ref:`TeX input jax configuration ` section for options +that control the TeX input processor. +See the :ref:`mml2jax configuration ` section for +other configuration options for the ``mml2jax`` preprocessor, and the +:ref:`MathML input jax configuration ` section for +options that control the MathML input processor. +See :ref:`MathJax Output Formats ` for more +information on the SVG output processor. + + The ``Accessible`` configuration file ================================================ This configuration file is essentially the same as ``TeX-AMS-MML_HTMLorMML`` except that it includes options that are designed for assistive technology, particularly for those with visual -challenges. It is equivalent to the following configuration: +challenged. *This file is deprecated* since the controls that make +MathJax work with screen readers are now available in the MathJax +contextual menu, and so there is no need to set them in the +configuration file any longer. So you can use any of the other +pre-defined configurations and readers with special needs should be +able to change the MathJax settings themselves to be appropriate for +their software. + +The Accessible configuration is equivalent to the following: .. code-block:: javascript @@ -173,20 +316,24 @@ challenges. It is equivalent to the following configuration: TeX: { extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] }, - NativeMML: { showMathMenuMSIE: false }, - menuSettings: { zoom: "Double-Click" }, + menuSettings: { + zoom: "Double-Click", + mpContext: true, + mpMouse: true + }, errorSettings: { message: ["[Math Error]"] } }); -This turns off the MathJax contextual menu for Internet Explorer, since -it can interfere with some screen readers. It also sets the zoom trigger +This turns off the MathJax contextual menu for IE when MathPlayer is +active, and passes mouse events on to MathPlayer to allow screen +readers full access to MathPlayer. It also sets the zoom trigger to double-click, so that readers can see a larger version of the mathematics but double-clicking on any equation. In addition, it loads the mml Element Jax, the TeX and MathML input jax main code (not just the definition files), as well as the `toMathML` extension, which is used by the Show Source option in the MathJax -contextual menu. The full version also loads both the HTML-CSS and +contextual menu. The ``-full`` version also loads both the HTML-CSS and NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which is normally loaded on demand. diff --git a/docs/html/_sources/configuration.txt b/docs/html/_sources/configuration.txt index 290fbf48c..5685d7876 100644 --- a/docs/html/_sources/configuration.txt +++ b/docs/html/_sources/configuration.txt @@ -52,14 +52,14 @@ typical invocation of MathJax would be src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> -which loads MathJax with a configuration file that includes everything you -need in order to enter mathematics in either TeX, LaTeX, or MathML -notation, and produces output using MathML if the browser supports that, -or HTML-with-CSS otherwise. If you **don't** load an explicit -configuration file, you will need to include an in-line configuration -block in order to tell MathJax how to read and display the mathematics on -your pages. See the section below on :ref:`Using In-line Configuration -Options ` for details. +which loads MathJax with a configuration file that includes everything +you need in order to enter mathematics in either TeX, LaTeX, or MathML +notation, and produces output using MathML if the browser supports +that well enough, or HTML-with-CSS otherwise. If you **don't** load +an explicit configuration file, you will need to include an in-line +configuration block in order to tell MathJax how to read and display +the mathematics on your pages. See the section below on :ref:`Using +In-line Configuration Options ` for details. It is best to load MathJax in the document's ```` block, but it is also possible to load MathJax into the ```` section, if @@ -82,7 +82,7 @@ advanced topic, however; see :ref:`Loading MathJax Dynamically Loading MathJax from the CDN ============================ -MathJax is now available as a web service from ``cdn.mathjax.org``, so you +MathJax is available as a web service from ``cdn.mathjax.org``, so you can obtain MathJax from there without needing to install it on your own server. The CDN is part of a distributed "cloud" network, so it is handled by servers around the world. That means that you should get access @@ -100,19 +100,19 @@ get. The CDN has the following directory structure: mathjax/ # project-name 1.0-latest/ - 1.1-beta/ # temporary 1.1-latest/ # the 1.1 release with any ciritical patches + 2.0-beta/ # temporary + 2.0-latest/ # the 2.0 release with any ciritical patches ... - latest/ # the most current version (1.1-latest in this case) + latest/ # the most current version (2.0-latest in this case) Each directory corresponds to an official MathJax release; however, hotfixes (urgent bug fixes) will be applied in each release branch as necessary, even if new releases are not prepared. In other words, ``1.1-latest`` will initially point to v1.1, but over time may be updated with patches that would correspond to releases that might be numbers 1.1a, -1.1b, etc., even if such releases are not actually prepared for -distribution (they likely won't be). - +1.1b, etc., even if such releases are not actually packaged for +separate distribution (they likely won't be). We may occasionally introduce directories for betas, as indicated above, but they will be temporary, and will be removed after the official release. @@ -124,7 +124,7 @@ For example, -will load the stable v1.1 version, even if we release v1.2 or other later +will load the stable v1.1 version, even after we release v2.0 or other later versions, while .. code-block:: html @@ -132,7 +132,7 @@ versions, while will always be the most current stable release, so it will go from v1.1 to -v1.2 automatically when that is released. Note that all the versions +v2.0 automatically when that is released. Note that all the versions available on the CDN are stable versions; the development version is not hosted on the CDN. (If you wish to use the development version of MathJax, you will need to install your own copy; see :ref:`Installing @@ -143,8 +143,9 @@ The use of ``cdn.mathjax.org`` is governed by its `terms of service sure to read that before linking to the MathJax CDN server. If you wish to use the MathJax CDN but use your own configuration file -rather than one of the pre-defined ones, see the information at the end -of the :ref:`Using a configuration file ` section below. +rather than one of the pre-defined ones, see the information at the +end of the :ref:`Using a Local Configuration File +` section below. Configuring MathJax @@ -157,7 +158,7 @@ pre-defined configuration file, but include in-line commands to adjust the configuration to your needs. Note that you must use at least one of these two forms of configuration. -Unlike earlier versions of MathJax, version 1.1 does not load a default +Unlike MathJax v1.0, version 1.1 and higher does not load a default configuration file. If you have been using version 1.0's ``config/MathJax.js`` for your configuration, you will need to load that configuration file explicitly via a ``config`` parameter, as described @@ -180,28 +181,41 @@ stored in the ``MathJax/config`` directory. Among these are the following .. describe:: TeX-AMS-MML_HTMLorMML.js - Allows math to be specified in TeX, LaTeX, or MathML notation, with the - `AMSmath` and `AMSsymbols` packages included, producing output using - MathML if the browser supports it, and HTML-with-CSS otherwise. + Allows math to be specified in :term:`TeX`, :term:`LaTeX`, or + :term:`MathML` notation, with the `AMSmath` and `AMSsymbols` + packages included, producing output using MathML if the browser + supports it sufficiently, and HTML-with-CSS otherwise. .. describe:: TeX-AMS_HTML.js - Allows math to be specified in TeX or LaTeX notation, with the + Allows math to be specified in :term:`TeX` or :term:`LaTeX` notation, with the `AMSmath` and `AMSsymbols` packages included, and produces output using the HTML-CSS output processor. .. describe:: MML_HTMLorMML.js - Allows math to be specified using MathML notation, and produces MathML - output if the browser supports it, or HTML-CSS output otherwise. + Allows math to be specified using :term:`MathML` notation, and produces MathML + output if the browser supports it sufficiently, or HTML-CSS output otherwise. -.. describe:: Accessible.js +.. describe:: AM_HTMLorMML.js - Essentially the same as ``TeX-AMS-MML_HTMLorMML``, but with some - settings specified to make MathJax work better with assistive - technology (for the visually impaired). This includes setting the - zoom trigger to be a double-click, and removing the MathMenu in - Internet Explorer (which can interfere with some screen readers). + Allows math to be specified using :term:`AsciiMath` notation, + producing output in MathML if the browser supports it + sufficiently, or as HTML-with-CSS otherwise. + +.. describe:: TeX-AMS-MML_SVG.js + + Allows math to be specified in :term:`TeX`, :term:`LaTeX`, or + :term:`MathML` notation, with the `AMSmath` and `AMSsymbols` + packages included, producing output using SVG. + +.. describe:: TeX-MML-AM_HTMLorMML.js + + Allows math to be specified in :term:`TeX`, :term:`LaTeX`, + :term:`MathML`, or :term:`AsciiMath` notation, with the `AMSmath` + and `AMSsymbols` packages included, producing output using MathML + if the browser supports it sufficiently, and HTML-with-CSS + otherwise. The first of these is a file that you can edit to suit your needs. It contains nearly all the configuration options that MathJax allows, and has @@ -226,7 +240,7 @@ the main code, and a "full" version, that also includes the complete output processors. For example, with ``TeX-AMS_HTML.js`` and ``TeX-AMS_HTML-full.js``, the latter includes the complete HTML-CSS output processor. The "full" configuration files are substantially larger (on -the order of 70KB), so you need to decide whether it is worth loading the +the order of 70KB more), so you need to decide whether it is worth loading the full configuration for your pages. If most of your pages include mathematics, then it is to your advantage to @@ -271,8 +285,17 @@ can use to first load the main configuration, then the local modifications. -You can also load MathJax from the MathJax CDN server but use a configuration from -your own local server: + +.. _local-config-files: + +Using a local configuration file with the CDN +============================================= + +You can load MathJax from the MathJax CDN server but still use a +configuration from your own local server. For example, suppose you +have a configuration file called ``local.js`` on your own server, in a +directory called ``MathJax/config/local``. Then you can load MathJax +from the CDN and still use your configuration file as follows: .. code-block:: html @@ -285,7 +308,7 @@ the complete URL to the local configuration file. Note that you also have to edit the :meth:`loadComplete()` call that is at the bottom of the configuration file to change it from ``[MathJax]/config/local/local.js`` to the complete URL as you give it -in the ``config`` parameter: +in the ``config`` parameter. In the example above, it would be .. code-block:: javascript @@ -303,23 +326,24 @@ Using in-line configuration options =================================== The second way to configure MathJax is through `in-line configuration`, -that puts the configuration options within the web page itself. This -process has changed in version 1.1 to make it compatible with HTML5. +which puts the configuration options within the web page itself. This +process was changed in version 1.1 to make it compatible with HTML5. Earlier versions of MathJax had in-line configuration included within the content of the `` -in its footer, so that MathJax will delay setting up until the footer is -reached, but will not have to wait until images and other files are -loaded. If you have ``text/x-mathjax-config`` script tags within the main -body of the document, MathJax will read and process those before -continuing its startup. In this way you can use a default configuration -that can be modified on a page-by-page basis. +in its footer, so that MathJax will delay setting up until the footer +is reached, but will not have to wait until images and other files are +loaded. In this way, if you have ``text/x-mathjax-config`` script +tags within the main body of the document, MathJax will read and +process those before continuing its startup. In this way you can use +a default configuration that can be modified on a page-by-page basis. + +Note that :meth:`MathJax.Hub.Configured()` is not called by MathJax; +you must make that call somewhere within the page yourself after the +configuration blocks are set up. If you do not execute this function, +MathJax will not process any of the math on the page. Details of the MathJax configuration process ============================================ Since there are a number of different ways to configure MathJax, it is -important to know how they interact. The configuration process is the +important to know how they interact. The configuration actions are the following: 1. Process any configuration file explicitly specified as a script parameter. diff --git a/docs/html/_sources/glossary.txt b/docs/html/_sources/glossary.txt index 14e18cc93..6325bd82c 100644 --- a/docs/html/_sources/glossary.txt +++ b/docs/html/_sources/glossary.txt @@ -8,6 +8,16 @@ Glossary .. glossary:: + AsciiMath + A notation for mathematics that uses characters commonly + available on all computer keyboards to represent the math in + an algebra-like syntax that should be intuitive and easily + read. + + .. seealso:: + + `AsciiMath home page `_ + Callback A JavaScript function that is used to perform actions that must wait for other actions to complete before they are @@ -44,6 +54,18 @@ Glossary `LaTeX Wikipedia entry `_ + Markdown + A text format commonly used in blogs and wikis for creating + web pages without the need for complicated markup notation. + It is intended to be an easy-to-read and easy-to-write format + that still gives you the ability to specify a rich text result + (including things like bold, italics, bullet lists, and so + on). + + .. seealso:: + + `Markdown home page `_ + MathML An XML specification created to describe mathematical notations and capture both its structure and content. MathML @@ -62,6 +84,18 @@ Glossary `STIX project `_ + SVG + Acronym for `Scalable Vector Graphics`. SVG is a graphics + format that allows images to be described as a collection of + graphics objects (like lines, rectangles, etc) rather than as + a bitmap of colored pixels. MathJax can use this format to + display mathematics as an alterantive to its HTML-CSS or + NativeMML output. + + .. seealso:: + + `SVG Wilipedia entry `_ + TeX A document markup language with robust math markup commands developed by Donald Knuth in the late 1970's, but still in diff --git a/docs/html/_sources/index.txt b/docs/html/_sources/index.txt index 80df118de..6c940b0ae 100644 --- a/docs/html/_sources/index.txt +++ b/docs/html/_sources/index.txt @@ -2,8 +2,8 @@ MathJax Documentation ##################### -MathJax is an open-source JavaScript display engine for LaTeX and -MathML that works in all modern browsers. +MathJax is an open-source JavaScript display engine for LaTeX, +MathML, and AsciiMath notaion that works in all modern browsers. Basic Usage =========== @@ -24,6 +24,7 @@ Basic Usage MathJax TeX and LaTeX Support MathJax MathML Support + MathJax AsciiMath Support MathJax Output Formats .. toctree:: diff --git a/docs/html/_sources/installation.txt b/docs/html/_sources/installation.txt index 97b518c6b..9ddf4f421 100644 --- a/docs/html/_sources/installation.txt +++ b/docs/html/_sources/installation.txt @@ -10,11 +10,12 @@ distributed network service (see :ref:`Using the MathJax CDN yourself, and you can begin using MathJax right away; skip this document on installation and go directly to :ref:`Configuring 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 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 with these tools. +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. 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 with these tools. .. _getting-mathjax-git: @@ -30,9 +31,9 @@ The easiest way to get MathJax and keep it up to date is to use the `Git git clone git://github.com/mathjax/MathJax.git MathJax -to obtain and set up a copy of MathJax. Note that there is no longer -a ``fonts.zip`` file, and that the ``fonts`` directory is now part of -the repository itself. +to obtain and set up a copy of MathJax. (Note that there is no longer +a ``fonts.zip`` file, as there was in v1.0, and that the ``fonts`` +directory is now part of the repository itself.) Whenever you want to update MathJax, you can now use @@ -123,11 +124,11 @@ latest revision using ``svn``, use the command .. code-block:: sh - svn checkout http://svn.github.com/mathjax/MathJax.git MathJax + svn checkout http://github.com/mathjax/MathJax/trunk MathJax -to obtain and set up a copy of MathJax. Note that there is no longer -a ``fonts.zip`` file, and that the ``fonts`` directory is now part of -the repository itself. +to obtain and set up a copy of MathJax. (Note that there is no longer +a ``fonts.zip`` file as of v1.1, and that the ``fonts`` directory is +now part of the repository itself.) Whenever you want to update MathJax, you can now use @@ -152,18 +153,17 @@ This gets you the current development copy of MathJax, which is the version that contains all the latest changes to MathJax. Although we try to make sure this version is a stable and usable version of MathJax, it is under active development, and at times it may be less stable than the "release" -version. If you prefer to use one of the tagged releases instead, then -either use ``git`` as described above, or one of the archive files as -described below. You can use +version. If you prefer to use one of the tagged releases instead, +then use .. code-block:: sh - svn checkout http://svn.github.com/mathjax/MathJax.git@nnn mathjax + svn checkout http://github.com/mathjax/MathJax/branch/[name] MathJax -to check out revision number `nnn`, but it is not easy to tell what -svn revision number is associated with a particular release. GitHub's -``svn`` service doesn't appear to allow you to specify a particular -tagged version. +where ``[name]`` is replaced by the name of the branch you want to +check out; e.g., ``2.0-latest``. The branch names can be found on the +`GitHub MathJax page `_ under the +`branches `_ tab. .. _getting-mathjax-zip: @@ -173,12 +173,12 @@ Obtaining MathJax via an archive Release versions of MathJax are available in archive files from the `MathJax download page `_ or the -`GitHub downloads `_ (click the -big download button on the right), where you can download the archive +`MathJax GitHub page `_ (via the +"zip" button, or the "downloads" tab), where you can download the archive that you need. -You should download the v1.1 archive (which will get you a file with a -name like ``mathjax-MathJax-v1.1-X-XXXXXXXX.zip``, where the X's are +You should download the v2.0 archive (which will get you a file with a +name like ``mathjax-MathJax-v2.0-X-XXXXXXXX.zip``, where the X's are some sequence of random-looking letters and numbers), 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 @@ -188,11 +188,10 @@ let you refer to the main MathJax file as ``/MathJax/MathJax.js`` from within any page on your server. From the `MathJax GitHub download link -`_ (the download button at the -right), you can also select the ``Download .tar.gz`` or ``Download -.zip`` buttons to get a copy of the current development version of -MathJax that contains all the latest changes and bug-fixes. You can -also get older tagged versions (if there are any). +`_, you can also select +the ``Download .tar.gz`` or ``Download .zip`` buttons to get a copy of +the current development version of MathJax that contains all the +latest changes and bug-fixes. If a packaged release receives any important updates, then those updates will be part of the `branch` for that version. The link to @@ -200,9 +199,8 @@ the ``.zip`` file in the download list will be the original release version, not the patched version. To obtain the patched version, use the `Branches` drop down menu (at the far left of the menus within the page) to select the release branch that you want (for example -``v1.1-latest``), and then use the download button and the ``Download -.tar.gz`` or ``Download .zip`` button to get the latest patched -version of that release. +``v2.0-latest``), and then use the "zip" button just above it to get +the latest patched version of that release. Testing your installation @@ -263,7 +261,7 @@ server `_. In the remote server's ``.htaccess`` that contains the following lines: :: - + Header set Access-Control-Allow-Origin "*" @@ -328,7 +326,7 @@ IE9 and remote fonts IE9's same-origin policy affects its ability to load web-based fonts, as described above. This has implications not ony to cross-domain loading of MathJax, but also to the case where you view a local page (with a -``file://`` URL) that accesses MathJax from a remote site, like the MathJax +``file://`` URL) that accesses MathJax from a remote site such as the MathJax CDN service. In this case, IE9 does **not** honor the ``Access-Control-Allow-Origin`` setting of the remote server (as it would if the web page came from an ``http://`` URL), and so it **never** allows the diff --git a/docs/html/_sources/mathjax.txt b/docs/html/_sources/mathjax.txt index c9dae62b2..836125c32 100644 --- a/docs/html/_sources/mathjax.txt +++ b/docs/html/_sources/mathjax.txt @@ -2,16 +2,17 @@ What is MathJax? **************** -MathJax is an open-source JavaScript display engine for LaTeX and -MathML that works in all modern browsers. It was designed with the -goal of consolidating the recent advances in web technologies into a -single, definitive, math-on-the-web platform supporting the major -browsers and operating systems. It requires no setup on the part of -the user (no plugins to downlaod or software to install), so the page -author can write web documents that include mathematics and be -confident that users will be able to view it naturally and easily. -One simply includes MathJax and some mathematics in a web page, and -MathJax does the rest. +MathJax is an open-source JavaScript display engine for LaTeX, MathML, +and AsciiMath notation that works in all modern browsers. It was +designed with the goal of consolidating the recent advances in web +technologies into a single, definitive, math-on-the-web platform +supporting the major browsers and operating systems, including those +on mobile devices. It requires no setup on the part of the user (no +plugins to download or software to install), so the page author can +write web documents that include mathematics and be confident that +users will be able to view it naturally and easily. One simply +includes MathJax and some mathematics in a web page, and MathJax does +the rest. MathJax uses web-based fonts (in those browsers that support it) to produce high-quality typesetting that scales and prints at full @@ -21,11 +22,12 @@ impaired. With MathJax, mathematics is text-based rather than image-based, and so it is available for search engines, meaning that your equations can be searchable, just like the text of your pages. MathJax allows page authors to write formulas using TeX and LaTeX -notation, or `MathML `_, a World Wide -Web Consortium standard for representing mathematics in XML format. -MathJax will even convert TeX notation into MathML, so that it can be -rendered more quickly by those browsers that support MathML natively, -or so that you can copy and paste it into other programs. +notation, `MathML `_, a World Wide Web +Consortium standard for representing mathematics in XML format, or +`AsciiMath `_ +notation. MathJax will even convert TeX notation into MathML, so that +it can be rendered more quickly by those browsers that support MathML +natively, or so that you can copy and paste it into other programs. MathJax is modular, so it loads components only when necessary, and can be extended to include new capabilities as needed. MathJax is diff --git a/docs/html/_sources/mathml.txt b/docs/html/_sources/mathml.txt index 8bcc40f79..415c56da6 100644 --- a/docs/html/_sources/mathml.txt +++ b/docs/html/_sources/mathml.txt @@ -20,10 +20,10 @@ displayed as MathML. Or you could use the `mml2jax` preprocessor and MathML input processor with the HTML-CSS output processor to make MathML available in browsers that don't have native MathML support. It is also possible to have MathJax select the output processor for -you so that MathML is used in those browsers that support it, while -HTML-CSS is used for those that don't. See the :ref:`common -configurations ` section for details and -examples. +you so that MathML is used in those browsers that support it well +enough, while HTML-CSS is used for those that don't. See the +:ref:`common configurations ` section for +details and examples. Of course it is also possible to use all three components together. It may seem strange to go through an internal format just to return to @@ -43,7 +43,7 @@ MathML in HTML pages ==================== For MathML that is handled via the preprocessor, you should not use -the named MathML entities, but rather use the numeric entities like +named MathML entities, but rather use numeric entities like ``√`` or unicode characters embedded in the page itself. The reason is that entities are replaced by the browser before MathJax runs, and some browsers report errors for unknown entities. For @@ -64,12 +64,16 @@ tags. That is, use rather than ````, since there is no closing tag, the rest of -the mathematics will become the content of the ```` tag; but -since ```` should have no content, the rest of the mathematics -will not be displayed. This is a common error that should be avoided. +(prior to HTML5) does not have self-closing tags, and some browsers +will get the nesting of tags wrong if you attempt to use them. For +example, with ````, since there is no closing +tag, the rest of the mathematics will become the content of the +```` tag; but since ```` should have no content, the +rest of the mathematics will not be displayed. This is a common error +that should be avoided. Modern browsers that support HTML5 should be +able to handle self-closing tags, but older browsers have problems +with them, so if you want your mathematics to be visible to the widest +audience, do not use the self-closing form in HTML documents. Supported MathML commands @@ -86,12 +90,12 @@ The deficiencies include: - No support for the elementary math tags: ``mstack``, ``mlongdiv``, ``msgroup``, ``msrow``, ``mscarries``, and ``mscarry``. -- Limited support for line breaking (they are only allowed in direct - children of ``mrow`` or implied ``mrow`` elements). - -- No support for alignment groups in table. +- No support for alignment groups in tables. - No support for right-to-left rendering. +- Not all attributes are supported for tables. E.g., ``columnspan`` + and ``rowspan`` are not implemented yet. + See the `results of the MathML3.0 test suite `_ for details. diff --git a/docs/html/_sources/options/AsciiMath.txt b/docs/html/_sources/options/AsciiMath.txt new file mode 100644 index 000000000..981815b72 --- /dev/null +++ b/docs/html/_sources/options/AsciiMath.txt @@ -0,0 +1,40 @@ +.. _configure-AsciiMath: + +***************************** +The AsciiMath input processor +***************************** + +The options below control the operation of the AsciiMath input +processor that is run when you include ``"input/AsciiMath"`` in the +`jax` array of your configuration or use a combined configuration file +that includes AsciiMath input. They are listed with their default +values. To set any of these options, include a ``AsciiMath`` section +in your :meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + AsciiMath: { + displaystyle: false + } + }); + +would set the ``displaystyle`` configuration option so that the limits +for operators like summation symbols will appear next to them rather +than above and below. + +.. describe:: displaystyle: true + + Determines whether operators like summation symbols will have + their limits above and below the operators (true) or to their + right (false). The former is how they would appear in displayed + equations that appear on their own lines, while the latter is + better suited to in-line equations so that they don't interfere + with the line spacing so much. + +.. describe:: decimal: "." + + This is the character to be used for decimal points in numbers. + if you change this to ``","``, then you need to be careful about + entering points or intervals. E.g., use ``(1, 2)`` rather than + ``(1,2)`` in that case. diff --git a/docs/html/_sources/options/asciimath2jax.txt b/docs/html/_sources/options/asciimath2jax.txt new file mode 100644 index 000000000..cb899efa7 --- /dev/null +++ b/docs/html/_sources/options/asciimath2jax.txt @@ -0,0 +1,110 @@ +.. _configure-asciimath2jax: + +****************************** +The asciimath2jax Preprocessor +****************************** + +The options below control the operation of the `asciimath2jax` preprocessor +that is run when you include ``"asciimath2jax.js"`` in the `extensions` array +of your configuration. They are listed with their default values. To +set any of these options, include a ``asciimath2jax`` section in your +:meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + asciimath2jax: { + delimiters: [['`','`'], ['$','$']] + } + }); + +would set the ASCIIMath delimiters for the `asciimath2jax` +preprocessor to include dollar signs as well as back-ticks. + + +.. describe:: delimiters: [['`','`']] + + Array of pairs of strings that are to be used as math + delimiters. The first in each pair is the initial delimiter and + the second is the terminal delimiter. You can have as many pairs + as you want. For example, + + .. code-block:: javascript + + inlineMath: [ ['$','$'], ['`','`'] ] + + would cause `asciimath2jax` to look for ``$...$`` and ```...``` as + delimiters for inline mathematics. (Note that the single dollar + signs are not enabled by default because they are used too + frequently in normal text, so if you want to use them for math + delimiters, you must specify them explicitly.) + + Note that the delimiters can't look like HTML tags (i.e., can't + include the less-than sign), as these would be turned into tags by + the browser before MathJax has the chance to run. You can only + include text, not tags, as your math delimiters. + +.. describe:: preview: "AsciiMath" + + This controls whether `asciimath2jax` inserts ``MathJax_Preview`` + spans to make a preview available, and what preview to use, when + it locates in-line or display mathematics in the page. The + default is ``"AsciiMath"``, which means use the ASCIIMath code as + the preview (which will be visible until it is processed by + MathJax). Set to ``"none"`` to prevent previews from being + inserted (the math will simply disappear until it is typeset). + Set to an array containing the description of an HTML snippet in + order to use the same preview for all equations on the page. + + Examples: + + .. code-block:: javascript + + preview: ["[math]"], // insert the text "[math]" as the preview + + .. code-block:: javascript + + preview: [["img",{src: "/images/mypic.jpg"}]], // insert an image as the preview + + See the :ref:`description of HTML snippets ` for + details on how to represent HTML code in this way. + +.. describe:: skipTags: ["script","noscript","style","textarea","pre","code"] + + This array lists the names of the tags whose contents should not + be processed by `asciimath2jax` (other than to look for + ignore/process classes as listed below). You can add to (or + remove from) this list to prevent MathJax from processing + mathematics in specific contexts. + +.. describe:: ignoreClass: "asciimath2jax_ignore" + + This is the class name used to mark elements whose contents should + not be processed by asciimath2jax (other than to look for the + ``processClass`` pattern below). Note that this is a regular + expression, and so you need to be sure to quote any `regexp` + special characters. The pattern is inserted into one that + requires your pattern to match a complete word, so setting + ``ignoreClass: "class2"`` would cause it to match an element with + ``class="class1 class2 class3"``. Note that you can assign + several classes by separating them by the vertical line character + (``|``). For instance, with ``ignoreClass: "class1|class2"`` + any element assigned a class of either ``class1`` or ``class2`` + will be skipped. + +.. describe:: processClass: "asciimath2jax_process" + + This is the class name used to mark elements whose contents + *should* be processed by `asciimath2jax`. This is used to restart + processing within tags that have been marked as ignored via the + ``ignoreClass`` or to cause a tag that appears in the ``skipTags`` + list to be processed rather than skipped. Note that this is a + regular expression, and so you need to be sure to quote any + `regexp` special characters. The pattern is inserted into one + that requires your pattern to match a complete word, so setting + ``processClass: "class2"`` would cause it to match an element with + ``class="class1 class2 class3"``. Note that you can assign + several classes by separating them by the vertical line character + (``|``). For instance, with ``processClass: "class1|class2"`` any + element assigned a class of either ``class1`` or ``class2`` will + have its contents processed. diff --git a/docs/html/_sources/options/index.txt b/docs/html/_sources/options/index.txt index 9d68d1b55..f73fca1ce 100644 --- a/docs/html/_sources/options/index.txt +++ b/docs/html/_sources/options/index.txt @@ -21,7 +21,7 @@ configuration if you do. The MathJax components, like the TeX input processor, have their own sections in the configuration object, labeled by the component name, -and using a configuration object as its value. The object is itself +and using an object as its value. That object is itself a configuration object made up of name-value pairs that give the configuration options for the component. @@ -70,6 +70,7 @@ are categorized by the component they affect. The tex2jax preprocessor options The mml2jax preprocessor options + The asciimath2jax preprocessor options The jsMath2jax preprocessor options .. toctree:: @@ -77,6 +78,7 @@ are categorized by the component they affect. The TeX input processor options The MathML input processor options + The AsciiMath input processor options The HTML-CSS output processor options The NativeMML output processor options The MMLorHTML configuration options diff --git a/docs/html/_sources/output.txt b/docs/html/_sources/output.txt index 2affa7edd..26d1e767f 100644 --- a/docs/html/_sources/output.txt +++ b/docs/html/_sources/output.txt @@ -4,24 +4,26 @@ MathJax Output Formats ********************** -Currently, MathJax can render math in two ways: +Currently, MathJax can render math in three ways: -- Using HTML-with-CSS to lay out the mathematics, or +- Using HTML-with-CSS to lay out the mathematics, +- Using :term:`SVG` to lay out the mathematics, or - Using a browser's native MathML support. -These are implemented by the `HTML-CSS` and `NativeMML` output +These are implemented by the `HTML-CSS`, `SVG` and `NativeMML` output processors. If you are using one of the combined configuration files, then this will select one of these output processors for you. If the config file ends in -``_HTML``, then it is the HTML-CSS output processor, and if it ends in +``_HTML``, then it is the HTML-CSS output processor, and if it ends in +``_SVG`` then the SVG output processor will be used. If it ends in ``_HTMLorMML``, then the NativeMML output processor will be chosen if the -browser supports it, otherwise HTML-CSS output will be used. +browser supports it well enough, otherwise HTML-CSS output will be used. -If you are performing your own in-line or file-based configuration, you -select which one you want to use by including either ``"output/HTML-CSS"`` -or ``"output/NativeMML"`` in the `jax` array of your MathJax configuration. -For example +If you are performing your own in-line or file-based configuration, +you select which one you want to use by including either +``"output/HTML-CSS"``, ``"output/SVG"``, or ``"output/NativeMML"`` in +the `jax` array of your MathJax configuration. For example .. code-block:: javascript @@ -34,35 +36,57 @@ The HTML-CSS output processor produces high-quality output in all major browsers, with results that are consistent across browsers and operating systems. This is MathJax's primary output mode. Its major advantage is its quality and consistency; its drawback is that it is -slower than the NativeMML mode at rendering the mathematics. (The -HTML-CSS processor has not yet been optimized for speed, so you can -expect some improvement in the future. Note that IE8 in "IE8 -standards mode" is an order of magnitude slower than any other browser -when processing math through the HTML-CSS output processor; see -:ref:`HTML-CSS with IE8 ` below for some strategies -to deal with this.) +slower than the NativeMML mode at rendering the mathematics. +Historically, the performance in Internet Explorer (and IE8 in +particular) was quite poor, with the page getting slower and slower as +more math is processed. MathJax version 2.0 includes a number of +optimizations to improve the display performance in IE, and it is now +more comparable to other browsers. The HTML-CSS output uses web-based +fonts so that users don't have to have math fonts installed on their +computers; but this does introduce some printing issues in some +browsers. -The NativeMML output processor uses the browser's internal MathML support (if -any) to render the mathematics. Currently, Firefox has native support -for MathML, and IE has the `MathPlayer plugin +The SVG output processor is new in MathJax version 2.0, and it uses +`Scalable Vector Graphics` to render the mathematics on the page. SVG +is supported in all the major browsers and most mobile devices; note, +however, that Internet Explorer prior to IE9 does not support SVG, and +IE9 only does in "IE9 standards mode", not its emulation modes for +earlier versions. The SVG output mode is high quality and slightly +faster than HTML-CSS, and it does not suffer from some of the +font-related issues that HTML-CSS does, so prints well in all +browsers. This format also works well in some ebook readers (e.g., +iBooks). The disadvantage of this mode is that it does not take +advantage of STIX fonts, and so only has access to the characters in +the web-based fonts, and it variable-width tables become fixed size +once they are typeset, and don't rescale if the window size changes +(for example). Since equation numbers are handled through +variable-width tables, that means equation numbers may not stay at the +edge of the window if it is resized. + +The NativeMML output processor uses the browser's internal MathML +support (if any) to render the mathematics. Currently, Firefox has +native support for MathML, and IE has the `MathPlayer plugin `_ for rendering MathML. Opera has some built-in support for MathML that works well with simple equations, but fails with more complex formulas, so we -don't recommend using the NativeMML output processor with Opera. Safari, +don't recommend using the NativeMML output processor with Opera. +Safari has some support for MathML since version 5.1, but the quality +is not as high as either Firefox's implementation or IE with MathPlayer. Chrome, Konqueror, and most other browsers don't support MathML -natively, but may in the future, since MathML is part of the HTML5 +natively, but may in the future, since MathML is part of the HTML5 specification. -The advantage of the NativeMML output Processor is its speed, since native -MathML support is much faster than using complicated HTML and CSS to lay -out mathematics, as the HTML-CSS output processor does. The disadvantage -is that you are dependent on the browser's MathML implementation for your -rendering, and these vary in quality of output and completeness of -implementation. MathJax may rely on features that are not available in -some renderers (for example, Firefox's MathML support does not implement -some of the named widths, such as ``negativethinmathspace``). The results -using the NativeMML output processor may have spacing or other rendering -problems that are outside of MathJax's control. +The advantage of the NativeMML output Processor is its speed, since +native MathML support is much faster than using complicated HTML and +CSS to lay out mathematics, as the HTML-CSS output processor does. +The disadvantage is that you are dependent on the browser's MathML +implementation for your rendering, and these vary in quality of output +and completeness of implementation. MathJax relies on features that +are not available in some renderers (for example, Firefox's MathML +support does not implement the features needed for labeled equations). +The results using the NativeMML output processor may have spacing or +other rendering problems that are outside of MathJax's control. + Automatic Selection of the Output Processor =========================================== @@ -70,9 +94,10 @@ Automatic Selection of the Output Processor Since not all browsers support MathML natively, it would be unwise to choose the NativeMML output processor unless you are sure of your audience's browser capabilities. MathJax can help with that, however, -since a number of its combined configuration files will select NativeMML -output when the browser supports it, and HTML-CSS output otherwise. These -are the configuration files that end in ``_HTMLorMML``. +since a number of its combined configuration files will select +NativeMML output when the browser supports it well enough, and +HTML-CSS output otherwise. These are the configuration files that end +in ``_HTMLorMML``. If you are doing your own configuration, there is a special configuration file that you can include that will choose between NativeMML and HTML-CSS @@ -86,28 +111,37 @@ the abilities of your user's browser. config: ["MMLorHTML.js"], jax: ["input/TeX"] -You can customize which choice to make on a browser-by-browser basis -or a global basis. See the ``config/default.js`` file or the + +By default, MathJax will choose HTML-CSS in all browsers except for +one case: Internet Explorer when the MathPlayer plugin is present. +In the past, MathJax selected NativeMML output for Firefox as well, +but we have found that there are too many rendering issues with +Firefox's native MathML implementation, and so MathJax now selects +HTML-CSS output for Firefox by default as well. Users can still use +the Mathjax contextual menu to select the NativeMML renderer if they +wish to choose greater speed at the expense of some quality. + +You can customize which choice MathJax makes on a browser-by-browser +basis or a global basis. See the ``config/default.js`` file or the :ref:`Configuring MMLorHTML ` section for further -details. As an example, this configuration tells MathJax to use HTML-CSS -output rather than native MathML support for Firefox: +details. As an example, this configuration tells MathJax to use +native MathML support rather than HTML-CSS output for Firefox: .. code-block:: html -With this configuration, MathML output will be used only for IE with the -MathPlayer plugin (Firefox is the only other browser to have native MathML -support that is sufficient for use with MathJax). Note, however, that a -user can employ the MathJax contextual menu to select the other renderer if -he or she wishes. +With this configuration, MathML output will be used for both Firefox +and IE with the MathPlayer plugin. Note, however, that a user can +employ the MathJax contextual menu to select the other renderer if he +or she wishes. MathJax produces MathML that models the underlying mathematics as best it can, rather than using complicated hacks to improve output for a @@ -119,41 +153,29 @@ be taken lightly. .. _html-css-with-ie8: -HTML-CSS with IE8 -================= +HTML-CSS with IE8 and IE9 +========================= -Internet Explorer 8 has at least eight different rendering modes in which -it can operate, and that are triggered by the `DOCTYPE` of the document -being viewed. Its "quirks" mode is its fastest mode, and its "IE8 -standards" mode is its slowest. This is the mode triggered by strict HTML -document types, and since most modern content management systems now -include a `DOCTYPE` that activates "standards" mode, IE8 will operate in -its slowest manner. This is particularly apparent when MathJax is used, -since IE8 in standards mode runs 20 to 30 times slower than it does in its -IE7 emulation mode, and 60 times slower than in quirks mode, on the sample -equations page in ``test/sample.html``. +The performance of MathJax in Internet Explorer 8 and 9 has been +substantially improved in version 2.0. The HTML-CSS output processing +was redesigned to avoid the page reflows that were the main source of +the speed problem in I8 and IE9. For test pages having between 20 and +50 typeset expressions, we see an 80% reduction in output processing +time for IE8, a 50% reduction for IE9, and between 15% and 25% +reduction for most other browsers over the v1.1a times. Since the +processing time in v1.1a grows non-linearly in IE, you should see even +larger savings for pages with more equations when using v2.0. -Most users find this speed reduction unacceptable when there is much -mathematics on the page. To overcome this problem, you may wish to -tell IE8 to use its IE7 emulation mode rather than its IE8 standards -mode. You can accomplish this by including the line +In the past, we recommended forcing IE8 and IE9 into IE7-emulation +mode in order to get better performance. That is no longer necessary. +Indeed, the fastest modes in IE8 and IE9 now are their IE8 standards +and IE9 standards modes, so it is best to force the highest mode +possible. That can be accomplished by adding .. code-block:: html - + -at the top of the ```` section of your HTML documents. This -lets you keep the strict `DOCTYPE` for validation purposes, while -still managing to get reasonable performance from Internet Explorer -8. Note that this line must come at the beginning of the ````, -before any stylesheets or other content are loaded. - -Alternatively, you can use the `MMLorHTML` configuration file -described above to select NativeMML output when possible, and request -that your users install the `MathPlayer plugin -`_, which will render -the mathematics much more quickly. - -It appears that IE9 in IE9 standards mode may perform better than IE8, but -since IE9 is still in beta testing as of this writing, we have yet to see -exactly what the performance of MathJax in IE9 will be like. +at the top of the ```` section of your HTML documents. Note +that this line must come at the beginning of the ````, before +any stylesheets, scripts, or other content are loaded. diff --git a/docs/html/_sources/platforms/index.txt b/docs/html/_sources/platforms/index.txt index 4976868c8..0f0b3b23f 100644 --- a/docs/html/_sources/platforms/index.txt +++ b/docs/html/_sources/platforms/index.txt @@ -4,15 +4,16 @@ Using MathJax in popular web platforms ====================================== -MathJax plugins are available for a growing number of wikis, blogs, and -other content-management systems. These include WordPress, Blogger, -Sphinx, TiddlyWiki, and MathEL-Wiki. A list of these is available in the -`web applications and integrations -`_ list of the +MathJax plugins are available for a growing number of wikis, blogs, +and other content-management systems. These include WordPress, +Blogger, Sphinx, TiddlyWiki, and MathEL-Wiki. A list of these is +available in the `web applications +`_ list of the `MathJax web site `_. If the program you are using is not one of these, you may still be able to -use MathJax by modifying the theme or template for your wiki or blog. +use MathJax by modifying the theme or template for your wiki or blog, +as explained below. Using MathJax in a Theme File diff --git a/docs/html/_sources/start.txt b/docs/html/_sources/start.txt index 8109dd73e..c484bbc42 100644 --- a/docs/html/_sources/start.txt +++ b/docs/html/_sources/start.txt @@ -5,15 +5,15 @@ Getting Started *************** MathJax allows you to include mathematics in your web pages, either -using TeX and LaTeX notation, or as MathML, and you can even use both -in the same document. +using TeX and LaTeX notation, MathML, or AsciiMath notation, and you +can even use all three in the same document. There are two ways to access MathJax: the easiest way is to use the copy of MathJax available from our distributed network service at ``cdn.mathjax.org``, but you can also download and install a copy of -MathJax on your own server, or for use locally on your own hard disk -(with no need for network access). Both of these are described below, -with links to more detailed explanations. This page gives the +MathJax on your own server, or use it locally on your own hard disk +(with no need for network access). All three of these are described +below, with links to more detailed explanations. This page gives the quickest and easiest ways to get MathJax up and running on your web site, but you may want to read the details in order to customize the setup for your pages. @@ -43,12 +43,13 @@ into the ```` block of your document. (It can also go in the load the latest version of MathJax from the distributed server, and configure it to recognize mathematics in both TeX and MathML notation, and ask it to generate its output using MathML if the browser supports -that, and otherwise use HTML-with-CSS to display the mathematics. -This is the most general configuration, and should suffice for most -people's needs. Other configurations are available, however, and you -can also provide additional configuration parameters to taylor one of -the configurations to your needs. More details can be found in the -:ref:`Loading and Configuring MathJax ` instructions. +that well enough, and otherwise use HTML-with-CSS to display the +mathematics. This is one of the most general configurations, and +should suffice for most people's needs. Other configurations are +available, however, and you can also provide additional configuration +parameters to taylor one of the configurations to your needs. More +details can be found in the :ref:`Loading and Configuring MathJax +` instructions. The use of ``cdn.mathjax.org`` is governed by its `terms of service `_, so be @@ -68,7 +69,7 @@ and replace it. This is sometimes called a `man-in-the-middle `_ attack. To prevent such attacks, it is necessary to access the MathJax CDN -over a secure HTTPS connection. This can be easily done by using the +over a secure HTTPS connection. This can be done easily by using the following `` Currently, the Amazon Cloudfront service used by the MathJax CDN does -not support the use of a human-friendly name like cdn.mathjax.org for -secure connections. However, this address is stable and safe to use. +not support the use of a human-friendly name like ``cdn.mathjax.org`` +for secure connections; however, the address given above is stable and +safe to use. Installing Your Own Copy of MathJax @@ -89,7 +91,8 @@ We recommend using the CDN service if you can, but you can also install MathJax on your own server, or locally on your own hard disk. To do so you will need to do the following things: -1. Obtain a copy of MathJax and make it available on your server. +1. Obtain a copy of MathJax and make it available on your server or +hard disk. 2. Configure MathJax to suit the needs of your site. @@ -108,8 +111,8 @@ should obtain a file named something like ``mathjax-MathJax-v1.1-X-XXXXXXXX.zip``, where the X's are random-looking letters and numbers). This archive includes both the MathJax code and the MathJax webfonts, so it is the only file you -need. Note that this is different from earlier releases, which had -the fonts separate from the rest of the code. +need. Note that this is different from v1.0 and earlier releases, +which had the fonts separate from the rest of the code. Unpack the archive and place the resulting MathJax folder onto your web server at a convenient location where you can include it into your @@ -118,7 +121,7 @@ your server would be one natural way to do this. That would let you refer to the main MathJax file via the URL ``/MathJax/MathJax.js`` from within any page on your server. -Note: While this is the easiest way to set up MathJax initially, there +**Note:** While this is the easiest way to set up MathJax initially, there is a better way to do it if you want to be able to keep your copy of MathJax up-to-date. That uses the `Git `_ version control system, and is described in the :ref:`Installing MathJax @@ -128,17 +131,18 @@ of MathJax (see :ref:`Installing MathJax via SVN `). Once you have MathJax set up on your server, you can test it using the -files in the ``MathJax/test`` directory. Load them in your browser -using its web address rather than opening them locally (i.e., use an -``http://`` URL rather than a ``file://`` URL). When you view the -``index.html`` file, after a few moments you should see a message -indicating that MathJax appears to be working. If not, check that the -files have been transferred to the server completely and that the -permissions allow the server to access the files and folders that are -part of the MathJax directory. (Be sure to verify the MathJax -folder's permissions as well.) Check the server log files for any -errors that pertain to the MathJax installation; this may help locate -problems in the permission or locations of files. +files in the ``MathJax/test`` directory. If you are putting MathJax +on a server, load them in your browser using their web addresses +rather than opening them locally (i.e., use an ``http://`` URL rather +than a ``file://`` URL). When you view the ``index.html`` file, after +a few moments you should see a message indicating that MathJax appears +to be working. If not, check that the files have been transferred to +the server completely and that the permissions allow the server to +access the files and folders that are part of the MathJax directory. +(Be sure to verify the MathJax folder's permissions as well.) Check +the server log files for any errors that pertain to the MathJax +installation; this may help locate problems in the permission or +locations of files. Configuring your copy of MathJax @@ -147,11 +151,12 @@ Configuring your copy of MathJax When you include MathJax into your web pages as described below, it will load the file ``config/TeX-AMS-MML_HTMLorMML.js`` (i.e., the file named ``TeX-AMS-MML_HTMLorMML.js`` in the ``config`` folder of the -main ``MathJax`` folder). This file preloads all the most commonly-used -components of MathJax, allowing it to process mathematics that is in -the TeX or LaTeX format, or in MathML notation. It will produce -output in MathML form if the user's browser supports that, and will use -HTML-with-CSS to render the mathematics otherwise. +main ``MathJax`` folder). This file preloads all the most +commonly-used components of MathJax, allowing it to process +mathematics that is in the TeX or LaTeX format, or in MathML notation. +It will produce output in MathML form if the user's browser supports +that sufficiently, and will use HTML-with-CSS to render the +mathematics otherwise. There are a number of other prebuilt configuration files that you can choose from as well, or you could use the ``config/default.js`` file and @@ -160,11 +165,11 @@ described more fully in :ref:`Common Configurations `, and the configuration options are described in :ref:`Configuration Options `. -Note: The configuration process has changed in MathJax v1.1, so if you have -existing pages that use MathJax, you may need to modify the tag that -loads MathJax so that it conforms with the new configuration process. -See :ref:`Installing and Configuring MathJax ` for more -details. +Note: The configuration process changed between MathJax v1.0 and v1.1, +so if you have existing pages that use MathJax v1.0, you may need to +modify the tag that loads MathJax so that it conforms with the new +configuration process. See :ref:`Installing and Configuring MathJax +` for more details. Linking your copy of MathJax into a web page @@ -210,13 +215,15 @@ of MathJax. Putting mathematics in a web page ================================= -To put mathematics in your web page, you can use either :term:`TeX` -and :term:`LaTeX` notation or :term:`MathML` notation or both within -the same page; the MathJax configuration tells MathJax which you want -to use, and how you plan to indicate the mathematics when you are -using TeX notation. The configuration file used in the examples above -tells MathJax to look for both TeX and MathML notation within your -pages. These two formats are described in more detail below. +To put mathematics in your web page, you can use :term:`TeX` and +:term:`LaTeX` notation, :term:`MathML` notation, :term:`AsciiMath` +notation, or a combination of all three within the same page; the +MathJax configuration tells MathJax which you want to use, and how you +plan to indicate the mathematics when you are using TeX notation. The +configuration file used in the examples above tells MathJax to look +for both TeX and MathML notation within your pages. Other +configuration files tell MathJax to use AsciiMath input. These three +formats are described in more detail below. .. _tex-and-latex-input: @@ -258,10 +265,14 @@ options ` page, for additional configuration parameters that you can specify for the `tex2jax` preprocessor, which is the component of MathJax that identifies TeX notation within the page. See the :ref:`TeX and LaTeX ` page for -more on MathJax's support for TeX. +more on MathJax's support for TeX, and in particular how to deal with +single dollar signs in your text when you have enabled single +dollar-sign delimiters. -Here is a complete sample page containing TeX mathematics (also available -in the ``test/sample-tex.html`` file): +Here is a complete sample page containing TeX mathematics (also +available in the `test/sample-tex.html +`_ +file): .. code-block:: html @@ -290,6 +301,16 @@ a tag in HTML. Putting a space on both sides of the less-than sign should be sufficient, but see :ref:`TeX and LaTeX support ` for details. +If you are using MathJax within a blog, wiki, or other content +management system, the markup language used by that system may +interfere with the TeX notation used by MathJax. For example, if your +blog uses :term:`Markdown` notation for authoring your pages, the +underscores used by TeX to indicate subscripts may be confused with +the use of underscores by Markdown to indicate italics, and the two +uses may prevent your mathematics from being displayed. See :ref:`TeX +and LaTeX support ` for some suggestions about how to +deal with the problem. + There are a number of extensions for the TeX input processor that are loaded by the ``TeX-AMS-MML_HTMLorMML`` configuration. These include: @@ -305,9 +326,13 @@ loaded by the ``TeX-AMS-MML_HTMLorMML`` configuration. These include: - `TeX/noUndefined.js`, which prevents undefined macros from producing an error message, and instead shows the macro name in red. -Other extensions may be loaded automatically when needed. +Other extensions may be loaded automatically when needed. See +:ref:`TeX and LaTeX support ` for details on the other +TeX extensions that are available. +.. _mathml-input: + MathML input ------------ @@ -321,10 +346,21 @@ works with both), and that the web page need not be served with any special MIME-type. Also note that, unless you are using XHTML rather than HTML, you should not include a namespace prefix for your ```` tags; for example, you should not use ```` except -in a file where you have tied the ``m`` namespace to the MathML DTD. +in a file where you have tied the ``m`` namespace to the MathML DTD by +adding the ``xmlns:m="http://www.w3.org/1998/Math/MathML"`` attribtue +to your file's ```` tag. -Here is a complete sample page containing MathML mathematics (also -available in the ``test/sample-mml.html`` file): +Although it is not required, it is recommended that you include the +``xmlns="http://www.w3.org/1998/Math/MathML"`` attribute on all +```` tags in your document (and this is preferred to the use of +a namespace prefix like ``m:`` above, since those are deprecated in +HTML5) in order to make your MathML work in the widest range of +situations. + +Here is a complete sample page containing MathML mathematics (also +available in the `test/sample-mml.html +`_ +file): .. code-block:: html @@ -338,13 +374,19 @@ available in the ``test/sample-mml.html`` file): - When a0, - there are two solutions to +

    + When + + a0 + , + there are two solutions to + ax2 + bx + c = 0 - and they are - + + and they are + x = @@ -363,6 +405,7 @@ available in the ``test/sample-mml.html`` file): . +

    @@ -374,20 +417,66 @@ should use .. code-block:: html - + -rather than ```` in an HTML document. If you use the -self-closing form, some browsers will not build the math tree properly, and -MathJax will receive a damaged math structure, which will not be rendered -as the original notation would have been. Unfortunately, there is nothing -MathJax can do about that, since the browser has incorrectly interpreted -the tags long before MathJax has a chance to work with them. +rather than ```` in an HTML document. If you +use the self-closing form, some browsers will not build the math tree +properly, and MathJax will receive a damaged math structure, which +will not be rendered as the original notation would have been. +Typically, this will cause parts of your expression to not be +displayed. Unfortunately, there is nothing MathJax can do about that, +since the browser has incorrectly interpreted the tags long before +MathJax has a chance to work with them. + +The component of MathJax that recognizes MathML notation within the +page is called the `mml2jax` extension, and it has only a few +configuration options; see the ``config/default.js`` file or the +:ref:`mml2jax configuration options ` page for more +details. See the :ref:`MathML ` page for more on +MathJax's MathML support. + + +.. _asciimath-input: + +AsciiMath input +--------------- + +MathJax v2.0 includes a new input format: :term:`AsciiMath` notation. +For mathematics written in this form, you mark your mathematical +expressions by surrounding them in "back-ticks", i.e., ```...```. + +Here is a complete sample page containing AsciiMath notation (also +available in the `test/sample-asciimath.html +`_ +file): + +.. code-block:: html + + + + + MathJax AsciiMath Test Page + + + + +

    When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and + they are

    +

    + `x = (-b +- sqrt(b^2-4ac))/(2a) .` +

    + + + + +The component of MathJax that recognizes asciimath notation within the +page is called the `asciimath2jax` extension, and it has only a few +configuration options; see the ``config/default.js`` file or the +:ref:`asciimath2jax configuration options ` page for more +details. See the :ref:`AsciiMath support ` page for more on +MathJax's AsciiMath support. -The component of MathJax that recognizes MathML notation is called the -`mml2jax` extension, and it has only a few configuration options; see the -``config/default.js`` file or the :ref:`mml2jax configuration options -` page for more details. See the :ref:`MathML -` page for more on MathJax's MathML support. Where to go from here? diff --git a/docs/html/_sources/tex.txt b/docs/html/_sources/tex.txt index 5bf2e8324..7452360b0 100644 --- a/docs/html/_sources/tex.txt +++ b/docs/html/_sources/tex.txt @@ -81,7 +81,7 @@ TeX and LaTeX in HTML documents Keep in mind that your mathematics is part of an HTML document, so you need to be aware of the special characters used by HTML as part of its markup. There cannot be HTML tags within the math delimiters (other -than ``
    ``) as TeX-formatted math does not include HTML tags. +than ``
    ``) as TeX-formatted math does not include HTML tags. Also, since the mathematics is initially given as text on the page, you need to be careful that your mathematics doesn't look like HTML tags to the browser (which parses the page before MathJax gets to see @@ -129,6 +129,151 @@ easier to enter ``<`` and ``>`` using TeX-like syntax: Keep in mind that the browser interprets your text before MathJax does. +Another source of difficulty is when MathJax is used in content +management systems that have their own document processing commands +that are interpreted before the HTML page is created. For example, +many blogs and wikis use formats like :term:`Markdown` to allow you to +create the content of you pages. In Markdown, the underscore is used +to indicate italics, and this usage will conflict with MathJax's ise +of the underscore to indicate a subscript. Since Markdown is applied +to the page first, it will convert your subscripts markers into +italics (inserting ```` tags into your mathematics, which will +cause MathJax to ignore the math). + +Such systems need to be told not to modify the mathematics that +appears between math delimiters. That usually involves modifying the +content-management system itself, which is beyond the means of most +page authors. If you are lucky, someone else will already have done +this for you, and you can find a MathJax plugin for your system on the +`MathJax-In-Use page +`_ page. + +If there is no plugin for your system, or if it doesn't handle the +subtleties of issolating the mathematics from the other markup that it +supports, then you may have to "trick" it into leaving your +mathematics untouched. Most content-management systems provide some +means of indicating text that should not be modified ("verbatim" +text), often for giving code snippets for computer languages. +You may be use that to enclose your mathematics so that the system +leaves it unchanged and MathJax can process it. For example, in +Markdown, the back-tick (`````) is used to mark verbatim text, so + +.. code-block:: latex + + ... we have `\(x_1 = 132\)` and `\(x_2 = 370\)` and so ... + +may be able to protect the underscores from being processed by +Markdown. + +Some content-management systems use the backslash (``\``) as a special +character for "escaping" other characters, but TeX uses this character +to indicate a macro name. In such systems, you may have to double the +backslashes in order to obtain a single backslash in your HTML page. +For example, you may have to do + +.. code-block:: latex + + \\begin{array}{cc} + a & b \\\\ + c & c + \\end{array} + +to get an array with the four entries *a*, *b*, *c*, and *d*. Note in +particular that if you want ``\\`` you will have to double *both* +backslashes, giving ``\\\\``. + +Finally, if you have enabled single dollar-signs as math delimiters, +and you want to include a literal dollar sign in your web page (one +that doesn't represent a math delimiter), you will need to prevent +MathJax from using it as a math delimiter. If you also enable the +``processEscapes`` configuration parameter, then you can use ``\$`` in +the text of your page to get a dollar sign (without the backslash) in +the end. Alternatively, you use something like +``$`` to isolate the dollar sign so that +MathJax will not use it as a delimiter. + + +.. _tex-macros: + +Defining TeX macros +=================== + +You can use the ``\def``, ``\newcommand``, ``\renewcommand``, +``\newenvironment``, ``\renewenvironment``, and ``\let`` commands to +create your own macros and environments. Unlike actual TeX, however, +in order for MathJax to process these, they must be enclosed in math +delimiters (since MathJax only processes macros in math-mode). For +example + +.. code-block:: latex + + \( + \def\RR{\bf R} + \def\bold#1{\bf #1} + \) + +would define ``\RR`` to produce a bold-faced "R", and ``\bold{...}`` +to put its argument into bold face. Both definitions would be +available throughout the rest of the page. + +You can include macro definitions in the `Macros` section of the `TeX` +blocks of your configuration, but they must be represetned as +JavaScript objects. For example, the two macros above can be +pre-defined in the configuraiton by + +.. code-block:: javascript + + MathJax.Hub.Config({ + TeX: { + Macros: { + RR: "{\\bf R}", + bold: ["{\\bf #1}",1] + } + } + }); + +Here you give the macro as a `name:value` pair, where the `name` +is the name of the control sequence (without the backslash) that you +are defining, and `value` is either the replacement string for the +macro (when there are no arguments) or an array consisting of the +replacement string followed by the number of arguments for the macro. + +Note that the replacement string is given as a JavaScript string +literal, and the backslash has special meaning in JavaScript strings. +So to get an actual backslash in the string you must double it, as int +he examples above. + +If you have many such definitions that you want to use on more than +one page, you could put them into a configuration file that you can +load along with the main configuration file. For example, you could +create a file in ``MathJax/config/local`` called ``local.js`` that +contains your macro definitions: + +.. code-block:: javascript + + MathJax.Hub.Config({ + TeX: { + Macros: { + RR: "{\\bf R}", + bold: ["{\\bf #1}",1] + } + } + }); + + MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js"); + +and then load it along with your main configuration file on the script +that loads ``MathJax.js``: + +.. code-block:: html + + + +If you are using the CDN, you can make a local configuration file on +your own server, and load MathJax itself from the CDN and your +configuration file from your server. See :ref:`Using a Local +Configuration File with the CDN ` for details. + .. _tex-extensions: @@ -165,7 +310,53 @@ script prior to loading MathJax. For example will load the `autobold` TeX extension in addition to those already included in the ``TeX-AMS_HTML`` configuration file. -The main extensions are described below. +You can also load these extensions from within a math expresion using +the non-standard ``\require{extension}`` macro. For example + +.. code-block:: latex + + \(\require{color}\) + +would load the `color` extension into the page. This way you you can +load extensions into pages that didn't load them in their +configurations (and prevents you from having to load all the +extensions into all pages even if they aren't used). + +The main extensions are described below. + + +Action +------ + +The `action` extension gives you access to the MathML ```` +element. It defines three new non-standard macros: + +.. describe:: \\mathtip{math}{tip} + + Use ``tip`` (in math mode) as tooltip for ``math``. + +.. describe:: \\texttip{math}{tip} + + Use ``tip`` (in text mode) as tooltip for ``math``. + +.. describe:: \\toggle{math1}{math2}...\\endtoggle + + Show ``math1``, and when clicked, show ``math2``, and so on. + When the last one is clicked, go back to math1. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["action.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + AMSmath and AMSsymbols ---------------------- @@ -208,6 +399,295 @@ appears in a section of an HTML page that is in bold. This extension is **not** loaded by the combined configuration files. +BBox +---- + +The `bbox` extension defines a new macro for adding background colors, +borders, and padding to your math expressions. + +.. describe:: \\bbox[options]{math} + + puts a bounding box around ``math`` using the provided ``options``. + The options can be one of the following: + + 1. A color name used for the background color. + 2. A dimension (e.g., ``2px``) to be used as a padding around the + mathematics (on all sides). + 3. Style attributes to be applied to the mathematics (e.g., + ``border:1px solid red``). + 4. A combination of these separated by commas. + +Here are some examples: + +.. code-block:: latex + + \bbox[red]{x+y} % a red box behind x+y + \bbox[2pt]{x+1} % an invisible box around x+y with 2pt of extra space + \bbox[red,2pt]{x+1} % a red box around x+y with 2pt of extra space + \bbox[5px,border:2px solid red] + % a 2px red border around the math 5px away + +This extension is **not** included in any of the combined configurations, +but it will be loaded automatically, so you do not need to include it +in your `extensions` array. + + +Begingroup +---------- + +The `begingroup` extension implements commands that provide a +mechanism for localizing macro defintions so that they are not +permanent. This is useful if you have a blog site, for example, and +want to isolate changes that your readers make in their comments so +that they don't affect later comments. + +It defines two new non-standard macros, ``\begingroup`` and +``\endgroup``, that are used to start and stop a local namespace for +macros. Any macros that are defined between the ``\begingroup`` and +``\endgroup`` will be removed after the ``\endgroup`` is executed. +For example, if you put ``\(\begingroup\)`` at the top of each reader's +comments and ``\(\endgroup\)`` at the end, then any macros they define +within their response will be removed after it is processed. + +In addition to these two macros, the `begingroup` extension defines +the standard ``\global`` and ``\gdef`` control sequences from TeX. +(The ``\let``, ``\def``, ``\newcommand``, and ``\newenvironment`` +control sequences are already defined in the core TeX input jax.) + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["begingroup.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +Cancel +------ + +The `cancel` extension defines the following macros: + +.. describe:: \\cancel{math} + + Strikeout ``math`` from lower left to upper right. + +.. describe:: \\bcancel{math} + + Strikeout ``math`` from upper left to lower right. + +.. describe:: \\xcancel{math} + + Strikeout ``math`` with an "X". + +.. describe:: \\cancelto{value}{math} + + Strikeout ``math`` with an arrow going to ``value``. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["cancel.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +Color +----- + +The ``\color`` command in the core TeX input jax is not standard in +that it takes the mathematics to be colored as one of its parameters, +whereas the LaTeX ``\color`` command is a switch that changes the +color of everything that follows it. + +The `color` extension changes the ``\color`` command to be compatible +with the LaTeX implementation, and also defines ``\colorbox``, +``\fcolorbox``, and ``\DefineColor``, as in the LaTeX color package. +It defines the standard set of colors (Apricot, Aquamarine, +Bittersweet, and so on), and provides the RGB and grey-scale color +spaces in addition to named colors. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["color.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands, +and have ``\color`` be compatible with LaTeX usage. + + +Enclose +------- + +The `enclose` extension gives you access to the MathML ```` +element for adding boxes, ovals, strikethroughs, and other marks over +your mathematics. It defines the following non-standard macro: + +.. describe:: \\enclose{notation}[attributes]{math} + + Where ``notation`` is a comma-separated list of MathML + ```` notations (e.g., ``circle``, ``left``, + ``updiagonalstrike``, ``longdiv``, etc.), ``attributes`` are + MathML attribute values allowed on the ```` element + (e.g., ``mathcolor="red"``, ``mathbackground="yellow"``), and + ``math`` is the mathematics to be enclosed. + +For example + +.. code-block:: latex + + \enclose{circle}[mathcolor="red"]{x} + \enclose{circle}[mathcolor="red"]{\color{black}{x}} + \enclose{circle,box}{x} + \enclose{circle}{\enclose{box}{x}} + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["action.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +Extpfeil +-------- + +The `extpfeil` extension adds more macros for producing extensible +arrows, including ``\xtwoheadrightarrow``, ``\xtwoheadleftarrow``, +``\xmapsto``, ``\xlongequal``, ``\xtofrom``, and a non-standard +``\Newextarrow`` for creating your own extensible arrows. The latter +has the form + +.. describe:: \\Newextarrow{\\cs}{lspace,rspace}{unicode-char} + + where ``\cs`` is the new control sequence name to be defined, + ``lspace`` and ``rspace`` are integers representing the amount of + space (in suitably small units) to use at the left and right of + text that is placed above or below the arrow, and ``unicode-char`` + is a number representing a unicode character position in either + decimal or hexadecimal notation. + +For example + +.. code-block:: latex + + \Newextarrow{\xrightharpoonup}{5,10}{0x21C0} + +defines an extensible right harpoon with barb up. Note that MathJax +knows how to stretch only a limited number of characters, so you may +not actually get a stretchy character this way. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["extpfeil.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +HTML +---- + +The `HTML` extension gives you access to some HTML features like +styles, classes, element ID's and clickable links. It defines the +following non-standard macros: + +.. describe:: \\href{url}{math} + + Makes ``math`` be a link to the page given by ``url``. + +.. describe:: \\class{name}{math} + + Attaches the CSS class ``name`` to the output associated with + ``math`` when it is included in the HTML page. This allows your + CSS to style the element. + +.. describe:: \\cssId{id}{math} + + Attaches an id attribute with value ``id`` to the output + associated with ``math`` when it is included in the HTML page. + This allows your CSS to style the element, or your javascript to + locate it on the page. + +.. describe:: \\style{css}{math} + + Adds the give ``css`` declarations to the element associated with + ``math``. + +For example: + +.. code-block:: latex + + x \href{why-equal.html}{=} y^2 + 1 + + (x+1)^2 = \class{hidden}{(x+1)(x+1)} + + (x+1)^2 = \cssId{step1}{\style{visibility:hidden}{(x+1)(x+1)}} + +This extension is **not** included in any of the combined configurations, +but it will be loaded automatically when any of these macros is used, +so you do not need to include it explicitly in your configuration. + + +mhchem +------ + +The `mhchem` extensions implements the ``\ce``, ``\cf``, and ``\cee`` +chemical equation macros of the LaTeX `mhchem` package. See the +`mhchem CPAN page `_ for more +information and a link to the documentation for `mhchem`. + +For example + +.. code-block:: latex + + \ce{C6H5-CHO} + \ce{$A$ ->[\ce{+H2O}] $B$} + \ce{SO4^2- + Ba^2+ -> BaSO4 v} + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["mhchem.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + noErrors -------- @@ -230,10 +710,11 @@ following to your :meth:`MathJax.Hub.Config()` call: inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"] multiLine: true, // false for TeX on all one line style: { - "font-family": "serif", - "font-size": "80%", + "font-size": "90%", + "text-align": "left", "color": "black", - "border": "1px solid" + "padding": "1px 3px", + "border": "1px solid" // add any additional CSS styles that you want // (be sure there is no extra comma at the end of the last item) } @@ -358,6 +839,11 @@ macro is defined in an extension, the name of the extension follows the macro name. If the extension is in brackets, the extension will be loaded automatically when the macro or environment is first used. +More complete details about how to use these macros, with examples and +explanations, is available at Carol Fisher's `TeX Commands Available +in MathJax +`_ page. + Symbols ------- @@ -431,8 +917,11 @@ B \barwedge AMSsymbols \Bbb \Bbbk AMSsymbols + \bbox [bbox] + \bcancel cancel \because AMSsymbols \begin + \begingroup begingroup non-standard \beta \beth AMSsymbols \between AMSsymbols @@ -498,13 +987,18 @@ C .. code-block:: latex \cal + \cancel cancel + \cancelto cancel \cap \Cap AMSsymbols \cases \cdot \cdotp \cdots + \ce mhchem + \cee mhchem \centerdot AMSsymbols + \cf mhchem \cfrac AMSmath \check \checkmark AMSsymbols @@ -522,7 +1016,8 @@ C \class [HTML] non-standard \clubsuit \colon - \color + \color color + \colorbox color \complement AMSsymbols \cong \coprod @@ -603,12 +1098,15 @@ E \ell \emptyset + \enclose enclose non-standard \end + \endgroup begingroup non-standard \enspace \epsilon \eqalign \eqalignno \eqcirc AMSsymbols + \eqref [AMSmath] \eqsim AMSsymbols \eqslantgtr AMSsymbols \eqslantless AMSsymbols @@ -625,6 +1123,7 @@ F \fallingdotseq AMSsymbols \fbox + \fcolorbox color \Finv AMSsymbols \flat \forall @@ -642,6 +1141,7 @@ G \Gamma \gamma \gcd + \gdef begingroup \ge \genfrac AMSmath \geq @@ -652,6 +1152,7 @@ G \ggg AMSsymbols \gggtr AMSsymbols \gimel AMSsymbols + \global begingroup \gnapprox AMSsymbols \gneq AMSsymbols \gneqq AMSsymbols @@ -774,6 +1275,7 @@ L \lesseqqgtr AMSsymbols \lessgtr AMSsymbols \lesssim AMSsymbols + \let [newcommand] \lfloor \lg \lgroup @@ -843,6 +1345,7 @@ M \mathscr \mathsf \mathstrut + \mathtip action non-standard \mathtt \matrix \max @@ -850,9 +1353,11 @@ M \measuredangle AMSsymbols \mho AMSsymbols \mid + \middle \min \mit \mkern + \mmlToken non-standard \mod \models \moveleft @@ -880,6 +1385,7 @@ N \neq \newcommand [newcommand] \newenvironment [newcommand] + \Newextarrow extpfeil \newline \nexists AMSsymbols \ngeq AMSsymbols @@ -1007,7 +1513,9 @@ R \rbrack \rceil \Re + \ref [AMSmath] \renewcommand [newcommand] + \renewenvironment [newcommand] \require non-standard \restriction AMSsymbols \rfloor @@ -1130,6 +1638,7 @@ T \textit \textrm \textstyle + \texttip action non-standard \tfrac AMSmath \therefore AMSsymbols \Theta @@ -1142,6 +1651,7 @@ T \tiny \Tiny non-standard \to + \toggle action non-standard \top \triangle \triangledown AMSsymbols @@ -1250,8 +1760,14 @@ X \Xi \xi + \xcancel cancel \xleftarrow AMSmath + \xlongequal extpfeil + \xmapsto extpfeil \xrightarrow AMSmath + \xtofrom extpfeil + \xtwoheadleftarrow extpfeil + \xtwoheadrightarrow extpfeil Y - diff --git a/docs/html/_sources/whats-new.txt b/docs/html/_sources/whats-new.txt index 5c4b694fa..0a5419fc5 100644 --- a/docs/html/_sources/whats-new.txt +++ b/docs/html/_sources/whats-new.txt @@ -29,7 +29,7 @@ Optimization * Parallel downloading of files needed by MathJax, for faster startup times. -* Shorter timeout for web fonts, so if they can't be downlaoded, you don't +* Shorter timeout for web fonts, so if they can't be downloaded, you don't have to wait so long. * Rollover to image fonts if a web font fails to load (so you don't have diff --git a/docs/html/api/ajax.html b/docs/html/api/ajax.html index cd1624856..712dc8fb5 100644 --- a/docs/html/api/ajax.html +++ b/docs/html/api/ajax.html @@ -6,13 +6,13 @@ - The MathJax.Ajax Object — MathJax v1.1 documentation + The MathJax.Ajax Object — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -423,12 +423,12 @@ actual root URL location).

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/callback.html b/docs/html/api/callback.html index 05de0e371..29f5017bd 100644 --- a/docs/html/api/callback.html +++ b/docs/html/api/callback.html @@ -6,13 +6,13 @@ - The MathJax.Callback Class — MathJax v1.1 documentation + The MathJax.Callback Class — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -420,12 +420,12 @@ and returns the signal object. See
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/elementjax.html b/docs/html/api/elementjax.html index 7fa8eb433..454b0ae03 100644 --- a/docs/html/api/elementjax.html +++ b/docs/html/api/elementjax.html @@ -6,13 +6,13 @@ - The MathJax.ElementJax Class — MathJax v1.1 documentation + The MathJax.ElementJax Class — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -271,12 +271,12 @@ contextual menu.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/html.html b/docs/html/api/html.html index 4e26eb044..06ae321ed 100644 --- a/docs/html/api/html.html +++ b/docs/html/api/html.html @@ -6,13 +6,13 @@ - The MathJax.HTML Object — MathJax v1.1 documentation + The MathJax.HTML Object — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -300,12 +300,12 @@ above,

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/hub.html b/docs/html/api/hub.html index b33e847d3..befab3afc 100644 --- a/docs/html/api/hub.html +++ b/docs/html/api/hub.html @@ -6,13 +6,13 @@ - The MathJax.Hub Object — MathJax v1.1 documentation + The MathJax.Hub Object — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -685,12 +685,12 @@ error on the page.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/index.html b/docs/html/api/index.html index 2c86519b3..ff28f7b7a 100644 --- a/docs/html/api/index.html +++ b/docs/html/api/index.html @@ -6,13 +6,13 @@ - The MathJax API — MathJax v1.1 documentation + The MathJax API — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -132,11 +132,11 @@ on the main MathJax documentation page.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/api/inputjax.html b/docs/html/api/inputjax.html index 1ca46c0fd..68b3cc299 100644 --- a/docs/html/api/inputjax.html +++ b/docs/html/api/inputjax.html @@ -6,13 +6,13 @@ - The MathJax.InputJax Class — MathJax v1.1 documentation + The MathJax.InputJax Class — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -210,12 +210,12 @@ of the various types from one another.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/jax.html b/docs/html/api/jax.html index 1947b45ab..fa862d3f5 100644 --- a/docs/html/api/jax.html +++ b/docs/html/api/jax.html @@ -6,13 +6,13 @@ - The Base Jax Class — MathJax v1.1 documentation + The Base Jax Class — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -313,12 +313,12 @@ isn’t called until those files are completely loaded.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/message.html b/docs/html/api/message.html index 0d216852c..a6e58b3a0 100644 --- a/docs/html/api/message.html +++ b/docs/html/api/message.html @@ -6,13 +6,13 @@ - The MathJax.Message Object — MathJax v1.1 documentation + The MathJax.Message Object — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -272,12 +272,12 @@ newlines. This is used in debugging MathJax operations.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/object.html b/docs/html/api/object.html index ce1f81a7a..5fda49fa5 100644 --- a/docs/html/api/object.html +++ b/docs/html/api/object.html @@ -6,13 +6,13 @@ - The MathJax Object-Oriented Programming Model — MathJax v1.1 documentation + The MathJax Object-Oriented Programming Model — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -341,12 +341,12 @@ wrapping the def for the previous | -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/outputjax.html b/docs/html/api/outputjax.html index 93329edb0..8b059973f 100644 --- a/docs/html/api/outputjax.html +++ b/docs/html/api/outputjax.html @@ -6,13 +6,13 @@ - The MathJax.OutputJax Class — MathJax v1.1 documentation + The MathJax.OutputJax Class — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -228,12 +228,12 @@ tag associated with the element jax.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/queue.html b/docs/html/api/queue.html index e10cfa204..1fafb6e8b 100644 --- a/docs/html/api/queue.html +++ b/docs/html/api/queue.html @@ -6,13 +6,13 @@ - The MathJax.Callback.Queue Class — MathJax v1.1 documentation + The MathJax.Callback.Queue Class — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -231,12 +231,12 @@ it has been waiting for a command to complete.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/signal.html b/docs/html/api/signal.html index 44270331e..5dfae463a 100644 --- a/docs/html/api/signal.html +++ b/docs/html/api/signal.html @@ -6,13 +6,13 @@ - The MathJax.Callback.Signal Class — MathJax v1.1 documentation + The MathJax.Callback.Signal Class — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -319,12 +319,12 @@ message is posted to the signal.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/api/variable.html b/docs/html/api/variable.html index 75bbae9bb..a99c59d56 100644 --- a/docs/html/api/variable.html +++ b/docs/html/api/variable.html @@ -6,13 +6,13 @@ - The MathJax variable — MathJax v1.1 documentation + The MathJax variable — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • @@ -205,12 +205,12 @@ perform typesetting actions (and is previous | -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • The MathJax API »
  • diff --git a/docs/html/asciimath.html b/docs/html/asciimath.html new file mode 100644 index 000000000..312891995 --- /dev/null +++ b/docs/html/asciimath.html @@ -0,0 +1,213 @@ + + + + + + + + MathJax AsciiMath Support — MathJax v2.0 documentation + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +

    MathJax AsciiMath SupportΒΆ

    +

    The support for AsciiMath in MathJax consists of two parts: +the asciimath2jax preprocessor, and the AsciiMath input processor. +The first of these looks for mathematics within your web page +(indicated by delimiters like `...`) and marks the mathematics for +later processing by MathJax. The AsciiMath input processor is what +converts the AsciiMath notation into MathJax’s internal format, where +one of MathJax’s output processors then displays it in the web page.

    +

    The AsciiMath input jax actually includes a copy of Peter Jipsen’s +ASCIIMathML.js file (see the AsciiMath home page for +details), and is included by permission of the author. This means +that the results of MathJax’s AsciiMath processing should be the same +as using the actual ASCIIMathML.js package (at least as far as the +MathML that it generates is concerned). Thanks go to David Lippman +for writing the initial version of the AsciiMath preprocessor and +input jax.

    +

    The asciimath2jax preprocessor can be configured to look for whatever +markers you want to use for your math delimiters. See the +asciimath2jax configuration options section for +details on how to customize the action of asciimath2jax.

    +

    The AsciiMath input processor handles conversion of your mathematical +notation into MathJax’s internal format (which is essentially MathML). +The AsciiMath input processor has few configuration options (see the +AsciiMath options section for details).

    +

    The AsciiMath input jax handles only the original ASCIIMathML notation +(from ASCIIMathML v1.4.7), not the extened LaTeXMathML notation added +in version 2.0 of ASCIIMathML, though the AsciiMath input jax does +expose the tables that define the symbols that AsciiMath processes, +and so it would be possible to extend them to include additional +symbols. In general, it is probably better to use MathJax’s TeX +input jax to handle LaTeX notation instead.

    +
    +

    AsciiMath delimitersΒΆ

    +

    By default, the asciimath2jax preprocessor defines the back-tick +(`) as the delimiters for mathematics in AsciiMath format. It +does not define $...$ as math delimiters. That is because +dollar signs appear too often in non-mathematical settings, which +could cause some text to be treated as mathematics unexpectedly. For +example, with single-dollar delimiters, ”... the cost is $2.50 for the +first one, and $2.00 for each additional one ...” would cause the +phrase “2.50 for the first one, and” to be treated as mathematics +since it falls between dollar signs. For this reason, if you want to +use single-dollars for AsciiMath notation, you must enable that +explicitly in your configuration:

    +
    MathJax.Hub.Config({
    +  asciimath2jax: {
    +    delimiters: [['$','$'], ['`','`']]
    +  }
    +});
    +
    +
    +

    Note that the dollar signs are frequently used as a delimiter for +mathematics in the TeX format, and you can not enable the +dollar-sign delimiter for both. It is probably best to leave dollar +signs for TeX notation.

    +

    See the config/default.js file, or the asiimath2jax +configuration options page, for additional +configuration parameters that you can specify for the asciimath2jax +preprocessor, which is the component of MathJax that identifies +AsciiMath notation within the page.

    +
    +
    +

    AsciiMath in HTML documentsΒΆ

    +

    The AsciiMath syntax is descibed in the ASCIIMathML syntax page.

    +

    Keep in mind that your mathematics is part of an HTML document, so you +need to be aware of the special characters used by HTML as part of its +markup. There cannot be HTML tags within the math delimiters (other +than <BR>) as AsciiMath-formatted math does not include HTML tags. +Also, since the mathematics is initially given as text on the page, +you need to be careful that your mathematics doesn’t look like HTML +tags to the browser (which parses the page before MathJax gets to see +it). In particular, that means that you have to be careful about +things like less-than and greater-than signs (< and >), and +ampersands (&), which have special meaning to the browsers. For +example,

    +
    ... when `x<y` we have ...
    +
    +

    will cause a problem, because the brower will think <y is the +beginning of a tag named y (even though there is no such tag in +HTML). When this happens, the browser will think the tag continues up +to the next > in the document (typically the end of the next +actual tag in the HTML file), and you may notice that you are missing +part of the text of the document. In the example above, the “we +have ...” will not be displayed because the browser thinks it is +part of the tag starting at <y. This is one indication you can +use to spot this problem; it is a common error and should be avoided.

    +

    Usually, it is sufficient to simply put spaces around these symbols to +cause the browser to avoid them, so

    +
    ... when `x < y` we have ...
    +
    +

    should work. Alternatively, you can use the HTML entities &lt;, +&gt; and &amp; to encode these characters so that the browser +will not interpret them, but MathJax will. E.g.,

    +
    ... when `x &lt; y` we have ...
    +
    +
    +

    Keep in mind that the browser interprets your text before MathJax +does.

    +
    +
    + + +
    +
    +
    +
    +
    +

    Table Of Contents

    + + +

    Previous topic

    +

    MathJax MathML Support

    +

    Next topic

    +

    MathJax Output Formats

    + + +
    +
    +
    +
    + + + + + \ No newline at end of file diff --git a/docs/html/callbacks.html b/docs/html/callbacks.html index beda23173..4a32ce5d9 100644 --- a/docs/html/callbacks.html +++ b/docs/html/callbacks.html @@ -6,13 +6,13 @@ - Using Callbacks — MathJax v1.1 documentation + Using Callbacks — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Synchronizing your code with MathJax »
  • @@ -290,12 +290,12 @@ schedules it to be called in half a second.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Synchronizing your code with MathJax »
  • diff --git a/docs/html/community.html b/docs/html/community.html index 15e6a58cb..c3847dcac 100644 --- a/docs/html/community.html +++ b/docs/html/community.html @@ -6,13 +6,13 @@ - The MathJax Community — MathJax v1.1 documentation + The MathJax Community — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -141,11 +141,11 @@ our previous | -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/config-files.html b/docs/html/config-files.html index 6704108ae..4a3d2c1f2 100644 --- a/docs/html/config-files.html +++ b/docs/html/config-files.html @@ -6,13 +6,13 @@ - Common Configurations — MathJax v1.1 documentation + Common Configurations — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -60,32 +60,79 @@ it via

    where path-to-MathJax is the URL to the MathJax directory on your -server or hard disk.

    -

    The remaining files are combined configuration files that include not just -configuration parameters but also the files that MathJax would need to -load for those configurations. This means MathJax will have to load fewer -files, and since each file access requires establishing connections over -the network, it can be better to load one larger file than several smaller -ones. See Loading and Configuring MathJax for more -details about how to load configurations, and how to modify the parameters -for a configuration file.

    +server or hard disk. If you are using MathJax from the CDN, you can +view the contents of default.js as a +reference, but you will not be able to edit the CDN copy. It is +possible to use the CDN copy of MathJax with your own configuration +file, however; see Using a Local Configuration File with the CDN for details.

    +

    The remaining files in the MathJax/config directory are +combined configuration files that include not just configuration +parameters but also the files that MathJax would need to load for +those configurations. This means MathJax will have to load fewer +files, and since each file access requires establishing connections +over the network, it can be faster to load one larger file than +several smaller ones. See Loading and Configuring MathJax for more details about how to load configurations, and how +to modify the parameters for a configuration file.

    The following sections describe the contents of the combined configuration files. Each comes in two flavors: a standard version and a “full” version. The standard version simply defines the output processor(s) that are part of the configuration, but doesn’t load the code that implements the output -processor; the full version loads the complete output processors, so +processor. The full version loads the complete output processors, so everything that MathJax needs for the page should be loaded up front, and there will be no delay once the page is ready to be processed. To obtain the “full” version, add -full to the end of the configuration file name.

    +
    +

    The TeX-MML-AM_HTMLorMML configuration fileΒΆ

    +

    This configuration file is the most general of the pre-defined +configurations. It loads all the main MathJax components, including +the TeX, MathML, and AsciiMath preprocessors and input processors, the +AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, both +the native MathML and HTML-with-CSS output processor definitions, and +the MathMenu and MathZoom extensions. It is equivalent to the +following configuration:

    +
    MathJax.Hub.Config({
    +  config: ["MMLorHTML.js"],
    +  jax: ["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS","output/NativeMML"],
    +  extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathMenu.js","MathZoom.js"],
    +  TeX: {
    +    extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
    +  }
    +});
    +
    +
    +

    In addition, it loads the mml Element Jax, the TeX, MathML, and +AsciiMath input jax main code (not just the definition files), as well +as the toMathML extension, which is used by the Show Source option +in the MathJax contextual menu. The -full version also loads both the +HTML-CSS and NativeMML output jax main code, plus the HTML-CSS +mtable extension, which is normally loaded on demand.

    +

    See the tex2jax configuration section for +other configuration options for the tex2jax preprocessor, and the +TeX input jax configuration section for options +that control the TeX input processor. +See the mml2jax configuration section for +other configuration options for the mml2jax preprocessor, and the +MathML input jax configuration section for +options that control the MathML input processor. +See the asciimath2jax configuration section for +other configuration options for the asciimath2jax preprocessor, and the +AsciiMath input jax configuration section for +options that control the AsciiMath input processor. +See MathJax Output Formats for more +information on the NativeMML and HTML-CSS output processors. See the +MMLorHTML configuration section for +details on the options that control the MMLorHTML configuration.

    +

    The TeX-AMS-MML_HTMLorMML configuration fileΒΆ

    -

    This configuration file is the most general of the pre-defined -configurations. It loads all the important MathJax components, including +

    This configuration file is the most commonly used of the pre-defined +configurations. It loads all the main MathJax components, including the TeX and MathML preprocessors and input processors, the AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, both the native -MathML and HTML-with-CSS output processor definitions, and the MathMenu and -MathZoom extensions. It is equivalent to the following configuration:

    +MathML and HTML-with-CSS output processor definitions, and the +MathMenu and MathZoom extensions. It is equivalent to the following +configuration:

    MathJax.Hub.Config({
       config: ["MMLorHTML.js"],
       jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"],
    @@ -96,12 +143,12 @@ MathZoom extensions.  It is equivalent to the following configuration:

    });
    -

    In addition, it loads the mml Element Jax, the TeX and MathML input jax -main code (not just the definition files), as well as the toMathML -extension, which is used by the Show Source option in the MathJax -contextual menu. The full version also loads both the HTML-CSS and -NativeMML output jax main code, plus the HTML-CSS mtable extension, which -is normally loaded on demand.

    +

    In addition, it loads the mml Element Jax, the TeX and MathML input +jax main code (not just the definition files), as well as the +toMathML extension, which is used by the Show Source option in the +MathJax contextual menu. The -full version also loads both the +HTML-CSS and NativeMML output jax main code, plus the HTML-CSS +mtable extension, which is normally loaded on demand.

    See the tex2jax configuration section for other configuration options for the tex2jax preprocessor, and the TeX input jax configuration section for options @@ -138,7 +185,7 @@ extensions. It is equivalent to the following configuration:

    In addition, it loads the mml Element Jax and the TeX input jax main code (not just the definition file), as well as the toMathML extension, which -is used by the Show Source option in the MathJax contextual menu. The full +is used by the Show Source option in the MathJax contextual menu. The -full version also loads the HTML-CSS output jax main code, plus the HTML-CSS mtable extension, which is normally loaded on demand.

    See the tex2jax configuration section for @@ -152,7 +199,7 @@ information on the HTML-CSS output processor.

    The MML_HTMLorMML configuration fileΒΆ

    This configuration file is for sites that only use MathML format for their mathematics. It will use MathML output in browsers where that is -supported, and HTML-CSS output otherwise. The user can still use the +supported well, and HTML-CSS output otherwise. The user can still use the MathJax contextual menu to select the other output format if they desire.

    This file includes all the important MathJax components for MathML input and output, including the mml2jax preprocessor and MathML input jax, the @@ -168,7 +215,7 @@ and MathZoom extensions. It is equivalent to the following configuration:

    In addition, it loads the mml Element Jax and the MathML input jax main code (not just the definition file), as well as the toMathML extension, which is used by the Show Source option in the MathJax contextual menu. -The full version also loads both the HTML-CSS and NativeMML output jax main +The -full version also loads both the HTML-CSS and NativeMML output jax main code files, plus the HTML-CSS mtable extension, which is normally loaded on demand.

    See the mml2jax configuration section for @@ -180,12 +227,86 @@ information on the NativeMML and HTML-CSS output processors. See the MMLorHTML configuration section for details on the options that control the MMLorHTML configuration.

    +
    +

    The AM_HTMLorMML configuration fileΒΆ

    +

    This configuration file is for sites that only use AsciiMath format for their +mathematics. It will use MathML output in browsers where that is +supported well, and HTML-CSS output otherwise. The user can still use the +MathJax contextual menu to select the other output format if they desire.

    +

    This file includes all the important MathJax components for AsciiMath +input and output, including the asciimath2jax preprocessor and +AsciiMath input jax, the NativeMML and HTML-CSS output processor +definition files, and the MathMenu and MathZoom extensions. It is +equivalent to the following configuration:

    +
    MathJax.Hub.Config({
    +  config: ["MMLorHTML.js"],
    +  jax: ["input/AsciiMath","output/HTML-CSS","output/NativeMML"],
    +  extensions: ["asciimath2jax.js","MathMenu.js","MathZoom.js"]
    +});
    +
    +
    +

    In addition, it loads the mml Element Jax and the TeX input jax main code +(not just the definition file), as well as the toMathML extension, which +is used by the Show Source option in the MathJax contextual menu. The -full +version also loads the HTML-CSS output jax main code, plus the HTML-CSS +mtable extension, which is normally loaded on demand.

    +

    See the asciimath2jax configuration +section for other configuration options for the asciimath2jax +preprocessor, and the AsciiMath input jax configuration section for options that control the AsciiMath +input processor. See MathJax Output Formats +for more information on the HTML-CSS and NativeMML output processors. +See the MMLorHTML configuration section +for details on the options that control the MMLorHTML +configuration.

    +
    +
    +

    The TeX-AMS-MML_SVG configuration fileΒΆ

    +

    This configuration file is the same as TeX-AMS-MML_HTMLorMML except +that it uses the SVG output renderer rather than the NativeMML or +HTML-CSS ones. It loads all the main MathJax components, including +the TeX and MathML preprocessors and input processors, the AMSmath, +AMSsymbols, noErrors, and noUndefined TeX extensions, the SVG output +processor definitions, and the MathMenu and MathZoom extensions. It +is equivalent to the following configuration:

    +
    MathJax.Hub.Config({
    +  jax: ["input/TeX","input/MathML","output/SVG"],
    +  extensions: ["tex2jax.js","mml2jax.js","MathMenu.js","MathZoom.js"],
    +  TeX: {
    +    extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
    +  }
    +});
    +
    +
    +

    In addition, it loads the mml Element Jax, the TeX and MathML input +jax main code (not just the definition files), as well as the +toMathML extension, which is used by the Show Source option in the +MathJax contextual menu. The -full version also loads both the +SVG output jax main code, plus the SVG mtable extension, which +is normally loaded on demand.

    +

    See the tex2jax configuration section for +other configuration options for the tex2jax preprocessor, and the +TeX input jax configuration section for options +that control the TeX input processor. +See the mml2jax configuration section for +other configuration options for the mml2jax preprocessor, and the +MathML input jax configuration section for +options that control the MathML input processor. +See MathJax Output Formats for more +information on the SVG output processor.

    +

    The Accessible configuration fileΒΆ

    This configuration file is essentially the same as TeX-AMS-MML_HTMLorMML except that it includes options that are designed for assistive technology, particularly for those with visual -challenges. It is equivalent to the following configuration:

    +challenged. This file is deprecated since the controls that make +MathJax work with screen readers are now available in the MathJax +contextual menu, and so there is no need to set them in the +configuration file any longer. So you can use any of the other +pre-defined configurations and readers with special needs should be +able to change the MathJax settings themselves to be appropriate for +their software.

    +

    The Accessible configuration is equivalent to the following:

    MathJax.Hub.Config({
       config: ["MMLorHTML.js"],
       jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"],
    @@ -193,20 +314,24 @@ challenges.  It is equivalent to the following configuration:

    TeX: { extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] }, - NativeMML: { showMathMenuMSIE: false }, - menuSettings: { zoom: "Double-Click" }, + menuSettings: { + zoom: "Double-Click", + mpContext: true, + mpMouse: true + }, errorSettings: { message: ["[Math Error]"] } });
    -

    This turns off the MathJax contextual menu for Internet Explorer, since -it can interfere with some screen readers. It also sets the zoom trigger +

    This turns off the MathJax contextual menu for IE when MathPlayer is +active, and passes mouse events on to MathPlayer to allow screen +readers full access to MathPlayer. It also sets the zoom trigger to double-click, so that readers can see a larger version of the mathematics but double-clicking on any equation.

    In addition, it loads the mml Element Jax, the TeX and MathML input jax main code (not just the definition files), as well as the toMathML extension, which is used by the Show Source option in the MathJax -contextual menu. The full version also loads both the HTML-CSS and +contextual menu. The -full version also loads both the HTML-CSS and NativeMML output jax main code, plus the HTML-CSS mtable extension, which is normally loaded on demand.

    @@ -221,9 +346,12 @@ is normally loaded on demand.

    Table Of Contents

    diff --git a/docs/html/configuration.html b/docs/html/configuration.html index 6379bad1b..86b5d89a7 100644 --- a/docs/html/configuration.html +++ b/docs/html/configuration.html @@ -6,13 +6,13 @@ - Loading and Configuring MathJax — MathJax v1.1 documentation + Loading and Configuring MathJax — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -89,14 +89,14 @@ typical invocation of MathJax would be

    </script> -

    which loads MathJax with a configuration file that includes everything you -need in order to enter mathematics in either TeX, LaTeX, or MathML -notation, and produces output using MathML if the browser supports that, -or HTML-with-CSS otherwise. If you don’t load an explicit -configuration file, you will need to include an in-line configuration -block in order to tell MathJax how to read and display the mathematics on -your pages. See the section below on Using In-line Configuration -Options for details.

    +

    which loads MathJax with a configuration file that includes everything +you need in order to enter mathematics in either TeX, LaTeX, or MathML +notation, and produces output using MathML if the browser supports +that well enough, or HTML-with-CSS otherwise. If you don’t load +an explicit configuration file, you will need to include an in-line +configuration block in order to tell MathJax how to read and display +the mathematics on your pages. See the section below on Using +In-line Configuration Options for details.

    It is best to load MathJax in the document’s <head> block, but it is also possible to load MathJax into the <body> section, if needed. If you do this, load it as early as possible, as @@ -111,7 +111,7 @@ been prepared, for example, via a Loading MathJax Dynamically for more details.

    Loading MathJax from the CDNΒΆ

    -

    MathJax is now available as a web service from cdn.mathjax.org, so you +

    MathJax is available as a web service from cdn.mathjax.org, so you can obtain MathJax from there without needing to install it on your own server. The CDN is part of a distributed “cloud” network, so it is handled by servers around the world. That means that you should get access @@ -124,10 +124,11 @@ that your pages always use the same version of MathJax.

    get. The CDN has the following directory structure:

    mathjax/         # project-name
        1.0-latest/
    -   1.1-beta/     # temporary
        1.1-latest/   # the 1.1 release with any ciritical patches
    +   2.0-beta/     # temporary
    +   2.0-latest/   # the 2.0 release with any ciritical patches
        ...
    -   latest/       # the most current version (1.1-latest in this case)
    +   latest/       # the most current version (2.0-latest in this case)
     

    Each directory corresponds to an official MathJax release; however, @@ -135,9 +136,9 @@ hotfixes (urgent bug fixes) will be applied in each release branch as necessary, even if new releases are not prepared. In other words, 1.1-latest will initially point to v1.1, but over time may be updated with patches that would correspond to releases that might be numbers 1.1a, -1.1b, etc., even if such releases are not actually prepared for -distribution (they likely won’t be).

    -

    We may occasionally introduce directories for betas, as indicated above, +1.1b, etc., even if such releases are not actually packaged for +separate distribution (they likely won’t be). +We may occasionally introduce directories for betas, as indicated above, but they will be temporary, and will be removed after the official release.

    To load from a particular release, use the directory for that release. @@ -145,13 +146,13 @@ For example,

    <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/1.1-latest/MathJax.js"></script>
     
    -

    will load the stable v1.1 version, even if we release v1.2 or other later +

    will load the stable v1.1 version, even after we release v2.0 or other later versions, while

    <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
     

    will always be the most current stable release, so it will go from v1.1 to -v1.2 automatically when that is released. Note that all the versions +v2.0 automatically when that is released. Note that all the versions available on the CDN are stable versions; the development version is not hosted on the CDN. (If you wish to use the development version of MathJax, you will need to install your own copy; see Installing @@ -159,8 +160,8 @@ and Testing MathJax for information on how to do that.)

    The use of cdn.mathjax.org is governed by its terms of service, so be sure to read that before linking to the MathJax CDN server.

    If you wish to use the MathJax CDN but use your own configuration file -rather than one of the pre-defined ones, see the information at the end -of the Using a configuration file section below.

    +rather than one of the pre-defined ones, see the information at the +end of the Using a Local Configuration File section below.

    Configuring MathJaxΒΆ

    @@ -170,7 +171,7 @@ used independently, or in combination. For example, you can load a main pre-defined configuration file, but include in-line commands to adjust the configuration to your needs.

    Note that you must use at least one of these two forms of configuration. -Unlike earlier versions of MathJax, version 1.1 does not load a default +Unlike MathJax v1.0, version 1.1 and higher does not load a default configuration file. If you have been using version 1.0’s config/MathJax.js for your configuration, you will need to load that configuration file explicitly via a config parameter, as described @@ -191,15 +192,16 @@ describing them, which you can edit to suit your needs.

    TeX-AMS-MML_HTMLorMML.js
    -

    Allows math to be specified in TeX, LaTeX, or MathML notation, with the -AMSmath and AMSsymbols packages included, producing output using -MathML if the browser supports it, and HTML-with-CSS otherwise.

    +

    Allows math to be specified in TeX, LaTeX, or +MathML notation, with the AMSmath and AMSsymbols +packages included, producing output using MathML if the browser +supports it sufficiently, and HTML-with-CSS otherwise.

    TeX-AMS_HTML.js
    -

    Allows math to be specified in TeX or LaTeX notation, with the +

    Allows math to be specified in TeX or LaTeX notation, with the AMSmath and AMSsymbols packages included, and produces output using the HTML-CSS output processor.

    @@ -207,18 +209,34 @@ using the HTML-CSS output processor.

    MML_HTMLorMML.js
    -

    Allows math to be specified using MathML notation, and produces MathML -output if the browser supports it, or HTML-CSS output otherwise.

    +

    Allows math to be specified using MathML notation, and produces MathML +output if the browser supports it sufficiently, or HTML-CSS output otherwise.

    -Accessible.js
    -

    Essentially the same as TeX-AMS-MML_HTMLorMML, but with some -settings specified to make MathJax work better with assistive -technology (for the visually impaired). This includes setting the -zoom trigger to be a double-click, and removing the MathMenu in -Internet Explorer (which can interfere with some screen readers).

    +AM_HTMLorMML.js +

    Allows math to be specified using AsciiMath notation, +producing output in MathML if the browser supports it +sufficiently, or as HTML-with-CSS otherwise.

    +
    + +
    +
    +TeX-AMS-MML_SVG.js
    +

    Allows math to be specified in TeX, LaTeX, or +MathML notation, with the AMSmath and AMSsymbols +packages included, producing output using SVG.

    +
    + +
    +
    +TeX-MML-AM_HTMLorMML.js
    +

    Allows math to be specified in TeX, LaTeX, +MathML, or AsciiMath notation, with the AMSmath +and AMSsymbols packages included, producing output using MathML +if the browser supports it sufficiently, and HTML-with-CSS +otherwise.

    The first of these is a file that you can edit to suit your needs. It @@ -241,7 +259,7 @@ the main code, and a “full” version, that also includes the complete output processors. For example, with TeX-AMS_HTML.js and TeX-AMS_HTML-full.js, the latter includes the complete HTML-CSS output processor. The “full” configuration files are substantially larger (on -the order of 70KB), so you need to decide whether it is worth loading the +the order of 70KB more), so you need to decide whether it is worth loading the full configuration for your pages.

    If most of your pages include mathematics, then it is to your advantage to load the full version, but if you are including MathJax in a theme file for @@ -278,8 +296,14 @@ can use

    to first load the main configuration, then the local modifications.

    -

    You can also load MathJax from the MathJax CDN server but use a configuration from -your own local server:

    + +
    +

    Using a local configuration file with the CDNΒΆ

    +

    You can load MathJax from the MathJax CDN server but still use a +configuration from your own local server. For example, suppose you +have a configuration file called local.js on your own server, in a +directory called MathJax/config/local. Then you can load MathJax +from the CDN and still use your configuration file as follows:

    <script type="text/javascript"
        src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML,http://myserver.com/MathJax/config/local/local.js">
     </script>
    @@ -290,7 +314,7 @@ the complete URL to the local configuration file.  Note that you also
     have to edit the loadComplete() call that is at the bottom of
     the configuration file to change it from
     [MathJax]/config/local/local.js to the complete URL as you give it
    -in the config parameter:

    +in the config parameter. In the example above, it would be

    MathJax.Ajax.loadComplete("http://myserver.com/MathJax/config/local/local.js");
     
    @@ -302,22 +326,23 @@ location of your configuration file.

    Using in-line configuration optionsΒΆ

    The second way to configure MathJax is through in-line configuration, -that puts the configuration options within the web page itself. This -process has changed in version 1.1 to make it compatible with HTML5. +which puts the configuration options within the web page itself. This +process was changed in version 1.1 to make it compatible with HTML5. Earlier versions of MathJax had in-line configuration included within the content of the <script> tag that loads MathJax.js, but HTML5 makes it illegal to have content for a script with a src attribute.

    -

    MathJax solves this problem by using separate <script> tags to perform -configuration for MathJax. Because MathJax starts its configuration -process as soon as it is loaded, the configuration script must come -before the script tag that loads MathJax.js itself. You do this -by including a <script> with type="text/x-mathjax-config", whose -content will be run when MathJax performs its configuration. Generally, -this script will include a MathJax.Hub.Config() call to perform -MathJax configuration, but it can also include other MathJax commands, -such as registering signal actions, or any JavaScript commands that you -want. You can have as many such script tags as you want, and MathJax will -process them in order as they appear in the document.

    +

    MathJax solves this problem by using separate <script> tags to +perform the configuration for and loading of MathJax. Because MathJax +starts its configuration process as soon as it is loaded, the +configuration script must come before the script tag that loads +MathJax.js itself. You do this by including a <script> with +type="text/x-mathjax-config" whose content will be run when +MathJax performs its configuration. Generally, this script will +include a MathJax.Hub.Config() call to perform MathJax +configuration, but it can also include other MathJax commands, such as +registering signal actions, or any JavaScript commands that you want. +You can have as many such script tags as you need, and MathJax will +process them in the order in which they appear in the document.

    For instance,

    <script type="text/x-mathjax-config">
       MathJax.Hub.Config({
    @@ -340,15 +365,16 @@ the TeX input processor and the HTML-CSS output proces
     HTML-CSS processor to use the TeX fonts rather than other locally installed
     fonts (e.g., STIX fonts).  See the configuration options section (or the comments in the config/default.js
     file) for more information about the configuration options that you can
    -include in the MathJax.Hub.Config() call.  Note that this
    +include in the MathJax.Hub.Config() call.  This
     configuration does not load any pre-defined configuration file.

    Note that you can combine in-line configuration with file-based configuration; simply include text/x-mathjax-config scripts as above, but also include config=filename when you load the MathJax.js file. For example, the tex2jax preprocessor does not enable the TeX single-dollar in-line math delimiters by default. You can load one of the -pre-defined configuration files that include the TeX preprocessor, and use -an in-line configuration block to enable the single-dollar signs:

    +pre-defined configuration files that includes the TeX preprocessor, and use +an in-line configuration block to enable the single-dollar signs, as +in this example:

    <script type="text/x-mathjax-config">
       MathJax.Hub.Config({
         tex2jax: {
    @@ -405,17 +431,21 @@ example, you could use

    </script>
    -

    in its footer, so that MathJax will delay setting up until the footer is -reached, but will not have to wait until images and other files are -loaded. If you have text/x-mathjax-config script tags within the main -body of the document, MathJax will read and process those before -continuing its startup. In this way you can use a default configuration -that can be modified on a page-by-page basis.

    +

    in its footer, so that MathJax will delay setting up until the footer +is reached, but will not have to wait until images and other files are +loaded. In this way, if you have text/x-mathjax-config script +tags within the main body of the document, MathJax will read and +process those before continuing its startup. In this way you can use +a default configuration that can be modified on a page-by-page basis.

    +

    Note that MathJax.Hub.Configured() is not called by MathJax; +you must make that call somewhere within the page yourself after the +configuration blocks are set up. If you do not execute this function, +MathJax will not process any of the math on the page.

    Details of the MathJax configuration processΒΆ

    Since there are a number of different ways to configure MathJax, it is -important to know how they interact. The configuration process is the +important to know how they interact. The configuration actions are the following:

    1. Process any configuration file explicitly specified as a script parameter.
    2. @@ -444,6 +474,7 @@ when MathJax runs, and browser-dependent erratic behavior will result.

    3. Loading MathJax from the CDN
    4. Configuring MathJax
    5. Using a configuration file
    6. +
    7. Using a local configuration file with the CDN
    8. Using in-line configuration options
    9. Configuring MathJax after it is loaded
    10. Details of the MathJax configuration process
    11. @@ -486,11 +517,11 @@ when MathJax runs, and browser-dependent erratic behavior will result.

    12. previous |
    13. -
    14. MathJax v1.1 documentation »
    15. +
    16. MathJax v2.0 documentation »
    diff --git a/docs/html/dynamic.html b/docs/html/dynamic.html index 6e1fe82f3..9551c6777 100644 --- a/docs/html/dynamic.html +++ b/docs/html/dynamic.html @@ -6,13 +6,13 @@ - Loading MathJax Dynamically — MathJax v1.1 documentation + Loading MathJax Dynamically — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -246,11 +246,11 @@ converting the math images to their original TeX code.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/genindex.html b/docs/html/genindex.html index 7f0c3ab5b..512a33000 100644 --- a/docs/html/genindex.html +++ b/docs/html/genindex.html @@ -6,13 +6,13 @@ - Index — MathJax v1.1 documentation + Index — MathJax v2.0 documentation - + @@ -32,7 +32,7 @@
  • index
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -54,6 +54,7 @@
    addText()
    +
    AsciiMath
    Augment()
    @@ -163,6 +164,7 @@

    M

    +
    Markdown
    MathML
    @@ -225,6 +227,7 @@
    Styles()
    Subclass()
    Suspend()
    +
    SVG
    @@ -288,11 +291,11 @@
  • index
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/glossary.html b/docs/html/glossary.html index 6dc84b013..167b367c2 100644 --- a/docs/html/glossary.html +++ b/docs/html/glossary.html @@ -6,13 +6,13 @@ - Glossary — MathJax v1.1 documentation + Glossary — MathJax v2.0 documentation - + @@ -36,7 +36,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -48,6 +48,16 @@

    GlossaryΒΆ

    +
    AsciiMath
    +

    A notation for mathematics that uses characters commonly +available on all computer keyboards to represent the math in +an algebra-like syntax that should be intuitive and easily +read.

    +
    +

    See also

    +

    AsciiMath home page

    +
    +
    Callback
    A JavaScript function that is used to perform actions that must wait for other actions to complete before they are @@ -79,6 +89,18 @@ its internal format manager. The code for the jax are in the

    LaTeX Wikipedia entry

    +
    Markdown
    +

    A text format commonly used in blogs and wikis for creating +web pages without the need for complicated markup notation. +It is intended to be an easy-to-read and easy-to-write format +that still gives you the ability to specify a rich text result +(including things like bold, italics, bullet lists, and so +on).

    +
    +

    See also

    +

    Markdown home page

    +
    +
    MathML

    An XML specification created to describe mathematical notations and capture both its structure and content. MathML @@ -97,6 +119,18 @@ package. A comprehensive set of scientific glyphs.

    STIX project

    +
    SVG
    +

    Acronym for Scalable Vector Graphics. SVG is a graphics +format that allows images to be described as a collection of +graphics objects (like lines, rectangles, etc) rather than as +a bitmap of colored pixels. MathJax can use this format to +display mathematics as an alterantive to its HTML-CSS or +NativeMML output.

    +
    +

    See also

    +

    SVG Wilipedia entry

    +
    +
    TeX

    A document markup language with robust math markup commands developed by Donald Knuth in the late 1970’s, but still in @@ -146,11 +180,11 @@ formats for mathematical journals, articles, and books.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/index.html b/docs/html/index.html index 3c7762f24..5a02c2be1 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -6,13 +6,13 @@ - MathJax Documentation — MathJax v1.1 documentation + MathJax Documentation — MathJax v2.0 documentation - + @@ -36,7 +36,7 @@
  • next |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -47,8 +47,8 @@

    MathJax DocumentationΒΆ

    -

    MathJax is an open-source JavaScript display engine for LaTeX and -MathML that works in all modern browsers.

    +

    MathJax is an open-source JavaScript display engine for LaTeX, +MathML, and AsciiMath notaion that works in all modern browsers.

    Basic UsageΒΆ

    @@ -66,6 +66,7 @@ MathML that works in all modern browsers.

    @@ -121,7 +122,7 @@ MathML that works in all modern browsers.


    -

    This version of the documentation was built July 27, 2011.

    +

    This version of the documentation was built February 15, 2012.

    @@ -179,11 +180,11 @@ MathML that works in all modern browsers.

  • next |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/installation.html b/docs/html/installation.html index cdb6ce176..f13c3c6c1 100644 --- a/docs/html/installation.html +++ b/docs/html/installation.html @@ -6,13 +6,13 @@ - Installing and Testing MathJax — MathJax v1.1 documentation + Installing and Testing MathJax — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -55,20 +55,21 @@ distributed network service (see Using the MathJax CDN). In that case, there is no need to install MathJax yourself, and you can begin using MathJax right away; skip this document on installation and go directly to Configuring 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 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 with these tools.

    +

    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. 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 with these tools.

    Obtaining MathJax via GitΒΆ

    The easiest way to get MathJax and keep it up to date is to use the Git version control system to access our GitHub repository. Use the command

    git clone git://github.com/mathjax/MathJax.git MathJax
     
    -

    to obtain and set up a copy of MathJax. Note that there is no longer -a fonts.zip file, and that the fonts directory is now part of -the repository itself.

    +

    to obtain and set up a copy of MathJax. (Note that there is no longer +a fonts.zip file, as there was in v1.0, and that the fonts +directory is now part of the repository itself.)

    Whenever you want to update MathJax, you can now use

    cd MathJax
     git remote show origin
    @@ -134,12 +135,12 @@ git pull origin v1.1-latest
     

    If you are more comfortable with the subversion source control system, you may want to use GitHub’s svn service to obtain MathJax. If you want to get the latest revision using svn, use the command

    -
    svn checkout http://svn.github.com/mathjax/MathJax.git MathJax
    +
    svn checkout http://github.com/mathjax/MathJax/trunk MathJax
     
    -

    to obtain and set up a copy of MathJax. Note that there is no longer -a fonts.zip file, and that the fonts directory is now part of -the repository itself.

    +

    to obtain and set up a copy of MathJax. (Note that there is no longer +a fonts.zip file as of v1.1, and that the fonts directory is +now part of the repository itself.)

    Whenever you want to update MathJax, you can now use

    cd MathJax
     svn status -u
    @@ -158,26 +159,25 @@ latest bug fixes and new features as they become available.

    that contains all the latest changes to MathJax. Although we try to make sure this version is a stable and usable version of MathJax, it is under active development, and at times it may be less stable than the “release” -version. If you prefer to use one of the tagged releases instead, then -either use git as described above, or one of the archive files as -described below. You can use

    -
    svn checkout http://svn.github.com/mathjax/MathJax.git@nnn mathjax
    +version.  If you prefer to use one of the tagged releases instead,
    +then use

    +
    svn checkout http://github.com/mathjax/MathJax/branch/[name] MathJax
     
    -

    to check out revision number nnn, but it is not easy to tell what -svn revision number is associated with a particular release. GitHub’s -svn service doesn’t appear to allow you to specify a particular -tagged version.

    +

    where [name] is replaced by the name of the branch you want to +check out; e.g., 2.0-latest. The branch names can be found on the +GitHub MathJax page under the +branches tab.

    Obtaining MathJax via an archiveΒΆ

    Release versions of MathJax are available in archive files from the MathJax download page or the -GitHub downloads (click the -big download button on the right), where you can download the archive +MathJax GitHub page (via the +“zip” button, or the “downloads” tab), where you can download the archive that you need.

    -

    You should download the v1.1 archive (which will get you a file with a -name like mathjax-MathJax-v1.1-X-XXXXXXXX.zip, where the X’s are +

    You should download the v2.0 archive (which will get you a file with a +name like mathjax-MathJax-v2.0-X-XXXXXXXX.zip, where the X’s are some sequence of random-looking letters and numbers), 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 @@ -185,20 +185,18 @@ it locally rather then through a web server). One natural location is to put it at the top level of your web server’s hierarchy. That would let you refer to the main MathJax file as /MathJax/MathJax.js from within any page on your server.

    -

    From the MathJax GitHub download link (the download button at the -right), you can also select the Download .tar.gz or Download -.zip buttons to get a copy of the current development version of -MathJax that contains all the latest changes and bug-fixes. You can -also get older tagged versions (if there are any).

    +

    From the MathJax GitHub download link, you can also select +the Download .tar.gz or Download .zip buttons to get a copy of +the current development version of MathJax that contains all the +latest changes and bug-fixes.

    If a packaged release receives any important updates, then those updates will be part of the branch for that version. The link to the .zip file in the download list will be the original release version, not the patched version. To obtain the patched version, use the Branches drop down menu (at the far left of the menus within the page) to select the release branch that you want (for example -v1.1-latest), and then use the download button and the Download -.tar.gz or Download .zip button to get the latest patched -version of that release.

    +v2.0-latest), and then use the “zip” button just above it to get +the latest patched version of that release.

    Testing your installationΒΆ

    @@ -248,7 +246,7 @@ MathJax is installed, and if that server is running the MathJax/fonts/ folder, create a file called .htaccess that contains the following lines:

    -
    <FilesMatch "\.(ttf|otf|eot)$">
    +
         
         
    diff --git a/docs/html/jsMath.html b/docs/html/jsMath.html
    index a3016d5e3..b69e7a395 100644
    --- a/docs/html/jsMath.html
    +++ b/docs/html/jsMath.html
    @@ -6,13 +6,13 @@
       
         
         
    -    Converting to MathJax from jsMath — MathJax v1.1 documentation
    +    Converting to MathJax from jsMath — MathJax v2.0 documentation
         
         
         
         
         
    -    
    +    
         
          
       
    @@ -40,7 +40,7 @@
             
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -130,11 +130,11 @@ page for more details.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/mathjax.html b/docs/html/mathjax.html index c9f7fff84..602e8f62d 100644 --- a/docs/html/mathjax.html +++ b/docs/html/mathjax.html @@ -6,13 +6,13 @@ - What is MathJax? — MathJax v1.1 documentation + What is MathJax? — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -51,16 +51,17 @@

    What is MathJax?ΒΆ

    -

    MathJax is an open-source JavaScript display engine for LaTeX and -MathML that works in all modern browsers. It was designed with the -goal of consolidating the recent advances in web technologies into a -single, definitive, math-on-the-web platform supporting the major -browsers and operating systems. It requires no setup on the part of -the user (no plugins to downlaod or software to install), so the page -author can write web documents that include mathematics and be -confident that users will be able to view it naturally and easily. -One simply includes MathJax and some mathematics in a web page, and -MathJax does the rest.

    +

    MathJax is an open-source JavaScript display engine for LaTeX, MathML, +and AsciiMath notation that works in all modern browsers. It was +designed with the goal of consolidating the recent advances in web +technologies into a single, definitive, math-on-the-web platform +supporting the major browsers and operating systems, including those +on mobile devices. It requires no setup on the part of the user (no +plugins to download or software to install), so the page author can +write web documents that include mathematics and be confident that +users will be able to view it naturally and easily. One simply +includes MathJax and some mathematics in a web page, and MathJax does +the rest.

    MathJax uses web-based fonts (in those browsers that support it) to produce high-quality typesetting that scales and prints at full resolution (unlike mathematics included as images). MathJax can be @@ -69,11 +70,12 @@ impaired. With MathJax, mathematics is text-based rather than image-based, and so it is available for search engines, meaning that your equations can be searchable, just like the text of your pages. MathJax allows page authors to write formulas using TeX and LaTeX -notation, or MathML, a World Wide -Web Consortium standard for representing mathematics in XML format. -MathJax will even convert TeX notation into MathML, so that it can be -rendered more quickly by those browsers that support MathML natively, -or so that you can copy and paste it into other programs.

    +notation, MathML, a World Wide Web +Consortium standard for representing mathematics in XML format, or +AsciiMath +notation. MathJax will even convert TeX notation into MathML, so that +it can be rendered more quickly by those browsers that support MathML +natively, or so that you can copy and paste it into other programs.

    MathJax is modular, so it loads components only when necessary, and can be extended to include new capabilities as needed. MathJax is highly configurable, allowing authors to customize it for the special @@ -123,11 +125,11 @@ mathematics on your web pages interactive and dynamic.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/mathml.html b/docs/html/mathml.html index 770567a3a..519d84693 100644 --- a/docs/html/mathml.html +++ b/docs/html/mathml.html @@ -6,13 +6,13 @@ - MathJax MathML Support — MathJax v1.1 documentation + MathJax MathML Support — MathJax v2.0 documentation - - + + @@ -35,12 +35,12 @@ index
  • - next |
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -66,10 +66,10 @@ displayed as MathML. Or you could use the mml2jax preprocessor and MathML input processor with the HTML-CSS output processor to make MathML available in browsers that don’t have native MathML support. It is also possible to have MathJax select the output processor for -you so that MathML is used in those browsers that support it, while -HTML-CSS is used for those that don’t. See the common -configurations section for details and -examples.

    +you so that MathML is used in those browsers that support it well +enough, while HTML-CSS is used for those that don’t. See the +common configurations section for +details and examples.

    Of course it is also possible to use all three components together. It may seem strange to go through an internal format just to return to MathML in the end, but this is actually what makes it possible to view @@ -85,7 +85,7 @@ even with a pure MathML workflow.

    MathML in HTML pagesΒΆ

    For MathML that is handled via the preprocessor, you should not use -the named MathML entities, but rather use the numeric entities like +named MathML entities, but rather use numeric entities like &#x221A; or unicode characters embedded in the page itself. The reason is that entities are replaced by the browser before MathJax runs, and some browsers report errors for unknown entities. For @@ -103,12 +103,16 @@ tags. That is, use

    rather than <mspace width="thinmathspace />. This is because HTML -does not have self-closing tags, and some browsers will get the -nesting of tags wrong if you attempt to use them. For example, with -<mspace width="1em" />, since there is no closing tag, the rest of -the mathematics will become the content of the <mspace> tag; but -since <mspace> should have no content, the rest of the mathematics -will not be displayed. This is a common error that should be avoided.

    +(prior to HTML5) does not have self-closing tags, and some browsers +will get the nesting of tags wrong if you attempt to use them. For +example, with <mspace width="1em" />, since there is no closing +tag, the rest of the mathematics will become the content of the +<mspace> tag; but since <mspace> should have no content, the +rest of the mathematics will not be displayed. This is a common error +that should be avoided. Modern browsers that support HTML5 should be +able to handle self-closing tags, but older browsers have problems +with them, so if you want your mathematics to be visible to the widest +audience, do not use the self-closing form in HTML documents.

    Supported MathML commandsΒΆ

    @@ -121,10 +125,10 @@ coming.

    • No support for the elementary math tags: mstack, mlongdiv, msgroup, msrow, mscarries, and mscarry.
    • -
    • Limited support for line breaking (they are only allowed in direct -children of mrow or implied mrow elements).
    • -
    • No support for alignment groups in table.
    • +
    • No support for alignment groups in tables.
    • No support for right-to-left rendering.
    • +
    • Not all attributes are supported for tables. E.g., columnspan +and rowspan are not implemented yet.

    See the results of the MathML3.0 test suite for details.

    @@ -149,8 +153,8 @@ children of mrow or i

    MathJax TeX and LaTeX Support

    Next topic

    -

    MathJax Output Formats

    +

    MathJax AsciiMath Support

    diff --git a/docs/html/model.html b/docs/html/model.html index 511600603..9cce4ee7c 100644 --- a/docs/html/model.html +++ b/docs/html/model.html @@ -6,13 +6,13 @@ - The MathJax Processing Model — MathJax v1.1 documentation + The MathJax Processing Model — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -291,11 +291,11 @@ dynamic as the rest of the page.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/options/AsciiMath.html b/docs/html/options/AsciiMath.html new file mode 100644 index 000000000..7b8e9a97f --- /dev/null +++ b/docs/html/options/AsciiMath.html @@ -0,0 +1,145 @@ + + + + + + + + The AsciiMath input processor — MathJax v2.0 documentation + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +

    The AsciiMath input processorΒΆ

    +

    The options below control the operation of the AsciiMath input +processor that is run when you include "input/AsciiMath" in the +jax array of your configuration or use a combined configuration file +that includes AsciiMath input. They are listed with their default +values. To set any of these options, include a AsciiMath section +in your MathJax.Hub.Config() call. For example

    +
    MathJax.Hub.Config({
    +  AsciiMath: {
    +    displaystyle: false
    +  }
    +});
    +
    +
    +

    would set the displaystyle configuration option so that the limits +for operators like summation symbols will appear next to them rather +than above and below.

    +
    +
    +displaystyle: true
    +

    Determines whether operators like summation symbols will have +their limits above and below the operators (true) or to their +right (false). The former is how they would appear in displayed +equations that appear on their own lines, while the latter is +better suited to in-line equations so that they don’t interfere +with the line spacing so much.

    +
    + +
    +
    +decimal: "."
    +

    This is the character to be used for decimal points in numbers. +if you change this to ",", then you need to be careful about +entering points or intervals. E.g., use (1, 2) rather than +(1,2) in that case.

    +
    + +
    + + +
    +
    +
    +
    +
    +

    Previous topic

    +

    The MathML input processor

    +

    Next topic

    +

    The HTML-CSS output processor

    + + +
    +
    +
    +
    + + + + + \ No newline at end of file diff --git a/docs/html/options/FontWarnings.html b/docs/html/options/FontWarnings.html index 0392d2475..404985822 100644 --- a/docs/html/options/FontWarnings.html +++ b/docs/html/options/FontWarnings.html @@ -6,13 +6,13 @@ - The FontWarnings extension — MathJax v1.1 documentation + The FontWarnings extension — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -252,12 +252,12 @@ The default is 1.5 seconds.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/HTML-CSS.html b/docs/html/options/HTML-CSS.html index cded40fa7..fd85b522e 100644 --- a/docs/html/options/HTML-CSS.html +++ b/docs/html/options/HTML-CSS.html @@ -6,13 +6,13 @@ - The HTML-CSS output processor — MathJax v1.1 documentation + The HTML-CSS output processor — MathJax v2.0 documentation - + - + @@ -39,9 +39,9 @@ next |
  • - previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -211,8 +211,8 @@ where the tooltip will be placed.

    Previous topic

    -

    The MathML input processor

    +

    The AsciiMath input processor

    Next topic

    The NativeMML output processor

    @@ -243,14 +243,14 @@ where the tooltip will be placed.

    next |
  • - previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/MMLorHTML.html b/docs/html/options/MMLorHTML.html index 7a99b3d6b..35ecd69f3 100644 --- a/docs/html/options/MMLorHTML.html +++ b/docs/html/options/MMLorHTML.html @@ -6,13 +6,13 @@ - The MMLorHTML configuration options — MathJax v1.1 documentation + The MMLorHTML configuration options — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -128,12 +128,12 @@ complicated output generated by MathJax, so its setting is
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/MathML.html b/docs/html/options/MathML.html index e6bcaafa3..05b2d69c5 100644 --- a/docs/html/options/MathML.html +++ b/docs/html/options/MathML.html @@ -6,13 +6,13 @@ - The MathML input processor — MathJax v1.1 documentation + The MathML input processor — MathJax v2.0 documentation - + - + @@ -36,12 +36,12 @@ index
  • - next |
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -86,8 +86,8 @@ spacing would be used (rather than TeX spacing rules).

    The TeX input processor

    Next topic

    -

    The HTML-CSS output processor

    +

    The AsciiMath input processor

    diff --git a/docs/html/options/MathMenu.html b/docs/html/options/MathMenu.html index 9606f3096..976783e2d 100644 --- a/docs/html/options/MathMenu.html +++ b/docs/html/options/MathMenu.html @@ -6,13 +6,13 @@ - The MathMenu extension — MathJax v1.1 documentation + The MathMenu extension — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -179,12 +179,12 @@ style in a JavaScript object.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/MathZoom.html b/docs/html/options/MathZoom.html index 4a5489fc7..ac8d370fc 100644 --- a/docs/html/options/MathZoom.html +++ b/docs/html/options/MathZoom.html @@ -6,13 +6,13 @@ - The MathZoom extension — MathJax v1.1 documentation + The MathZoom extension — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -132,12 +132,12 @@ style in a JavaScript object.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/NativeMML.html b/docs/html/options/NativeMML.html index 7f591cd5c..f4b17612b 100644 --- a/docs/html/options/NativeMML.html +++ b/docs/html/options/NativeMML.html @@ -6,13 +6,13 @@ - The NativeMML output processor — MathJax v1.1 documentation + The NativeMML output processor — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -156,12 +156,12 @@ CSS style in a JavaScript object.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/TeX.html b/docs/html/options/TeX.html index a899cd036..4637b84b6 100644 --- a/docs/html/options/TeX.html +++ b/docs/html/options/TeX.html @@ -6,13 +6,13 @@ - The TeX input processor — MathJax v1.1 documentation + The TeX input processor — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -178,12 +178,12 @@ be sufficient for any reasonable equation.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/asciimath2jax.html b/docs/html/options/asciimath2jax.html new file mode 100644 index 000000000..f90a02269 --- /dev/null +++ b/docs/html/options/asciimath2jax.html @@ -0,0 +1,213 @@ + + + + + + + + The asciimath2jax Preprocessor — MathJax v2.0 documentation + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +

    The asciimath2jax PreprocessorΒΆ

    +

    The options below control the operation of the asciimath2jax preprocessor +that is run when you include "asciimath2jax.js" in the extensions array +of your configuration. They are listed with their default values. To +set any of these options, include a asciimath2jax section in your +MathJax.Hub.Config() call. For example

    +
    MathJax.Hub.Config({
    +  asciimath2jax: {
    +    delimiters: [['`','`'], ['$','$']]
    +  }
    +});
    +
    +
    +

    would set the ASCIIMath delimiters for the asciimath2jax +preprocessor to include dollar signs as well as back-ticks.

    +
    +
    +delimiters: [['`','`']]
    +

    Array of pairs of strings that are to be used as math +delimiters. The first in each pair is the initial delimiter and +the second is the terminal delimiter. You can have as many pairs +as you want. For example,

    +
    inlineMath: [ ['$','$'], ['`','`'] ]
    +
    +
    +

    would cause asciimath2jax to look for $...$ and `...` as +delimiters for inline mathematics. (Note that the single dollar +signs are not enabled by default because they are used too +frequently in normal text, so if you want to use them for math +delimiters, you must specify them explicitly.)

    +

    Note that the delimiters can’t look like HTML tags (i.e., can’t +include the less-than sign), as these would be turned into tags by +the browser before MathJax has the chance to run. You can only +include text, not tags, as your math delimiters.

    +
    + +
    +
    +preview: "AsciiMath"
    +

    This controls whether asciimath2jax inserts MathJax_Preview +spans to make a preview available, and what preview to use, when +it locates in-line or display mathematics in the page. The +default is "AsciiMath", which means use the ASCIIMath code as +the preview (which will be visible until it is processed by +MathJax). Set to "none" to prevent previews from being +inserted (the math will simply disappear until it is typeset). +Set to an array containing the description of an HTML snippet in +order to use the same preview for all equations on the page.

    +

    Examples:

    +
    preview: ["[math]"],     //  insert the text "[math]" as the preview
    +
    +
    +
    preview: [["img",{src: "/images/mypic.jpg"}]],  // insert an image as the preview
    +
    +
    +

    See the description of HTML snippets for +details on how to represent HTML code in this way.

    +
    + +
    +
    +skipTags: ["script","noscript","style","textarea","pre","code"]
    +

    This array lists the names of the tags whose contents should not +be processed by asciimath2jax (other than to look for +ignore/process classes as listed below). You can add to (or +remove from) this list to prevent MathJax from processing +mathematics in specific contexts.

    +
    + +
    +
    +ignoreClass: "asciimath2jax_ignore"
    +

    This is the class name used to mark elements whose contents should +not be processed by asciimath2jax (other than to look for the +processClass pattern below). Note that this is a regular +expression, and so you need to be sure to quote any regexp +special characters. The pattern is inserted into one that +requires your pattern to match a complete word, so setting +ignoreClass: "class2" would cause it to match an element with +class="class1 class2 class3". Note that you can assign +several classes by separating them by the vertical line character +(|). For instance, with ignoreClass: "class1|class2" +any element assigned a class of either class1 or class2 +will be skipped.

    +
    + +
    +
    +processClass: "asciimath2jax_process"
    +

    This is the class name used to mark elements whose contents +should be processed by asciimath2jax. This is used to restart +processing within tags that have been marked as ignored via the +ignoreClass or to cause a tag that appears in the skipTags +list to be processed rather than skipped. Note that this is a +regular expression, and so you need to be sure to quote any +regexp special characters. The pattern is inserted into one +that requires your pattern to match a complete word, so setting +processClass: "class2" would cause it to match an element with +class="class1 class2 class3". Note that you can assign +several classes by separating them by the vertical line character +(|). For instance, with processClass: "class1|class2" any +element assigned a class of either class1 or class2 will +have its contents processed.

    +
    + +
    + + +
    +
    +
    +
    +
    +

    Previous topic

    +

    The mml2jax Preprocessor

    +

    Next topic

    +

    The jsMath2jax Preprocessor

    + + +
    +
    +
    +
    + + + + + \ No newline at end of file diff --git a/docs/html/options/hub.html b/docs/html/options/hub.html index eca230d41..3b9c964e6 100644 --- a/docs/html/options/hub.html +++ b/docs/html/options/hub.html @@ -6,13 +6,13 @@ - The Core Configuration Options — MathJax v1.1 documentation + The Core Configuration Options — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -354,12 +354,12 @@ does not cause a default configuration file to be loaded.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/index.html b/docs/html/options/index.html index 2acda7ade..d51aa4a92 100644 --- a/docs/html/options/index.html +++ b/docs/html/options/index.html @@ -6,13 +6,13 @@ - Configuration Objects — MathJax v1.1 documentation + Configuration Objects — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -66,7 +66,7 @@ browsers (namely Internet Explorer) will fail to process the configuration if you do.

    The MathJax components, like the TeX input processor, have their own sections in the configuration object, labeled by the component name, -and using a configuration object as its value. The object is itself +and using an object as its value. That object is itself a configuration object made up of name-value pairs that give the configuration options for the component.

    For example,

    @@ -106,6 +106,7 @@ are categorized by the component they affect.

    @@ -113,6 +114,7 @@ are categorized by the component they affect.

    diff --git a/docs/html/options/jsMath2jax.html b/docs/html/options/jsMath2jax.html index 819d2e45b..f504ad799 100644 --- a/docs/html/options/jsMath2jax.html +++ b/docs/html/options/jsMath2jax.html @@ -6,13 +6,13 @@ - The jsMath2jax Preprocessor — MathJax v1.1 documentation + The jsMath2jax Preprocessor — MathJax v2.0 documentation - + - + @@ -39,9 +39,9 @@ next |
  • - previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -98,8 +98,8 @@ details on how to represent HTML code in this way.

    Previous topic

    -

    The mml2jax Preprocessor

    +

    The asciimath2jax Preprocessor

    Next topic

    The TeX input processor

    @@ -130,14 +130,14 @@ details on how to represent HTML code in this way.

    next |
  • - previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/options/mml2jax.html b/docs/html/options/mml2jax.html index 77b38fa3c..39b16ab0a 100644 --- a/docs/html/options/mml2jax.html +++ b/docs/html/options/mml2jax.html @@ -6,13 +6,13 @@ - The mml2jax Preprocessor — MathJax v1.1 documentation + The mml2jax Preprocessor — MathJax v2.0 documentation - + - + @@ -36,12 +36,12 @@ index
  • - next |
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -101,8 +101,8 @@ details on how to represent HTML code in this way.

    The tex2jax Preprocessor

    Next topic

    -

    The jsMath2jax Preprocessor

    +

    The asciimath2jax Preprocessor

    diff --git a/docs/html/options/tex2jax.html b/docs/html/options/tex2jax.html index 4a7649a01..53c107e15 100644 --- a/docs/html/options/tex2jax.html +++ b/docs/html/options/tex2jax.html @@ -6,13 +6,13 @@ - The tex2jax Preprocessor — MathJax v1.1 documentation + The tex2jax Preprocessor — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • @@ -235,12 +235,12 @@ have its contents processed.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Configuration Objects »
  • diff --git a/docs/html/output.html b/docs/html/output.html index fbf91f5c1..6d4de3465 100644 --- a/docs/html/output.html +++ b/docs/html/output.html @@ -6,13 +6,13 @@ - MathJax Output Formats — MathJax v1.1 documentation + MathJax Output Formats — MathJax v2.0 documentation - + - + @@ -38,9 +38,9 @@ next |
  • - previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -51,22 +51,24 @@

    MathJax Output FormatsΒΆ

    -

    Currently, MathJax can render math in two ways:

    +

    Currently, MathJax can render math in three ways:

      -
    • Using HTML-with-CSS to lay out the mathematics, or
    • +
    • Using HTML-with-CSS to lay out the mathematics,
    • +
    • Using SVG to lay out the mathematics, or
    • Using a browser’s native MathML support.
    -

    These are implemented by the HTML-CSS and NativeMML output +

    These are implemented by the HTML-CSS, SVG and NativeMML output processors.

    If you are using one of the combined configuration files, then this will select one of these output processors for you. If the config file ends in _HTML, then it is the HTML-CSS output processor, and if it ends in +_SVG then the SVG output processor will be used. If it ends in _HTMLorMML, then the NativeMML output processor will be chosen if the -browser supports it, otherwise HTML-CSS output will be used.

    -

    If you are performing your own in-line or file-based configuration, you -select which one you want to use by including either "output/HTML-CSS" -or "output/NativeMML" in the jax array of your MathJax configuration. -For example

    +browser supports it well enough, otherwise HTML-CSS output will be used.

    +

    If you are performing your own in-line or file-based configuration, +you select which one you want to use by including either +"output/HTML-CSS", "output/SVG", or "output/NativeMML" in +the jax array of your MathJax configuration. For example

    jax: ["input/TeX","output/HTML-CSS"]
     
    @@ -76,40 +78,61 @@ in your document.

    major browsers, with results that are consistent across browsers and operating systems. This is MathJax’s primary output mode. Its major advantage is its quality and consistency; its drawback is that it is -slower than the NativeMML mode at rendering the mathematics. (The -HTML-CSS processor has not yet been optimized for speed, so you can -expect some improvement in the future. Note that IE8 in “IE8 -standards mode” is an order of magnitude slower than any other browser -when processing math through the HTML-CSS output processor; see -HTML-CSS with IE8 below for some strategies -to deal with this.)

    -

    The NativeMML output processor uses the browser’s internal MathML support (if -any) to render the mathematics. Currently, Firefox has native support -for MathML, and IE has the MathPlayer plugin for rendering +slower than the NativeMML mode at rendering the mathematics. +Historically, the performance in Internet Explorer (and IE8 in +particular) was quite poor, with the page getting slower and slower as +more math is processed. MathJax version 2.0 includes a number of +optimizations to improve the display performance in IE, and it is now +more comparable to other browsers. The HTML-CSS output uses web-based +fonts so that users don’t have to have math fonts installed on their +computers; but this does introduce some printing issues in some +browsers.

    +

    The SVG output processor is new in MathJax version 2.0, and it uses +Scalable Vector Graphics to render the mathematics on the page. SVG +is supported in all the major browsers and most mobile devices; note, +however, that Internet Explorer prior to IE9 does not support SVG, and +IE9 only does in “IE9 standards mode”, not its emulation modes for +earlier versions. The SVG output mode is high quality and slightly +faster than HTML-CSS, and it does not suffer from some of the +font-related issues that HTML-CSS does, so prints well in all +browsers. This format also works well in some ebook readers (e.g., +iBooks). The disadvantage of this mode is that it does not take +advantage of STIX fonts, and so only has access to the characters in +the web-based fonts, and it variable-width tables become fixed size +once they are typeset, and don’t rescale if the window size changes +(for example). Since equation numbers are handled through +variable-width tables, that means equation numbers may not stay at the +edge of the window if it is resized.

    +

    The NativeMML output processor uses the browser’s internal MathML +support (if any) to render the mathematics. Currently, Firefox has +native support for MathML, and IE has the MathPlayer plugin for rendering MathML. Opera has some built-in support for MathML that works well with simple equations, but fails with more complex formulas, so we -don’t recommend using the NativeMML output processor with Opera. Safari, +don’t recommend using the NativeMML output processor with Opera. +Safari has some support for MathML since version 5.1, but the quality +is not as high as either Firefox’s implementation or IE with MathPlayer. Chrome, Konqueror, and most other browsers don’t support MathML natively, but may in the future, since MathML is part of the HTML5 specification.

    -

    The advantage of the NativeMML output Processor is its speed, since native -MathML support is much faster than using complicated HTML and CSS to lay -out mathematics, as the HTML-CSS output processor does. The disadvantage -is that you are dependent on the browser’s MathML implementation for your -rendering, and these vary in quality of output and completeness of -implementation. MathJax may rely on features that are not available in -some renderers (for example, Firefox’s MathML support does not implement -some of the named widths, such as negativethinmathspace). The results -using the NativeMML output processor may have spacing or other rendering -problems that are outside of MathJax’s control.

    +

    The advantage of the NativeMML output Processor is its speed, since +native MathML support is much faster than using complicated HTML and +CSS to lay out mathematics, as the HTML-CSS output processor does. +The disadvantage is that you are dependent on the browser’s MathML +implementation for your rendering, and these vary in quality of output +and completeness of implementation. MathJax relies on features that +are not available in some renderers (for example, Firefox’s MathML +support does not implement the features needed for labeled equations). +The results using the NativeMML output processor may have spacing or +other rendering problems that are outside of MathJax’s control.

    Automatic Selection of the Output ProcessorΒΆ

    Since not all browsers support MathML natively, it would be unwise to choose the NativeMML output processor unless you are sure of your audience’s browser capabilities. MathJax can help with that, however, -since a number of its combined configuration files will select NativeMML -output when the browser supports it, and HTML-CSS output otherwise. These -are the configuration files that end in _HTMLorMML.

    +since a number of its combined configuration files will select +NativeMML output when the browser supports it well enough, and +HTML-CSS output otherwise. These are the configuration files that end +in _HTMLorMML.

    If you are doing your own configuration, there is a special configuration file that you can include that will choose between NativeMML and HTML-CSS depending on the browser in use. To invoke it, add "MMLorHTML.js" to @@ -120,14 +143,22 @@ the abilities of your user’s browser.

    jax: ["input/TeX"]
    -

    You can customize which choice to make on a browser-by-browser basis -or a global basis. See the config/default.js file or the +

    By default, MathJax will choose HTML-CSS in all browsers except for +one case: Internet Explorer when the MathPlayer plugin is present. +In the past, MathJax selected NativeMML output for Firefox as well, +but we have found that there are too many rendering issues with +Firefox’s native MathML implementation, and so MathJax now selects +HTML-CSS output for Firefox by default as well. Users can still use +the Mathjax contextual menu to select the NativeMML renderer if they +wish to choose greater speed at the expense of some quality.

    +

    You can customize which choice MathJax makes on a browser-by-browser +basis or a global basis. See the config/default.js file or the Configuring MMLorHTML section for further -details. As an example, this configuration tells MathJax to use HTML-CSS -output rather than native MathML support for Firefox:

    +details. As an example, this configuration tells MathJax to use +native MathML support rather than HTML-CSS output for Firefox:

    <script type="text/x-mathjax-config">
       MathJax.Hub.Config({
    -    MMLorHTML: { prefer: { Firefox: "HTML" } }
    +    MMLorHTML: { prefer: { Firefox: "MML" } }
       });
     </script>
     <script type="text/javascript"
    @@ -135,11 +166,10 @@ output rather than native MathML support for Firefox:

    </script>
    -

    With this configuration, MathML output will be used only for IE with the -MathPlayer plugin (Firefox is the only other browser to have native MathML -support that is sufficient for use with MathJax). Note, however, that a -user can employ the MathJax contextual menu to select the other renderer if -he or she wishes.

    +

    With this configuration, MathML output will be used for both Firefox +and IE with the MathPlayer plugin. Note, however, that a user can +employ the MathJax contextual menu to select the other renderer if he +or she wishes.

    MathJax produces MathML that models the underlying mathematics as best it can, rather than using complicated hacks to improve output for a particular MathML implementation. When you make the choice to use the @@ -147,37 +177,28 @@ NativeMML output processor, you are making a trade-off: gaining speed at the expense of quality and reliability, a decision that should not be taken lightly.

    -
    -

    HTML-CSS with IE8ΒΆ

    -

    Internet Explorer 8 has at least eight different rendering modes in which -it can operate, and that are triggered by the DOCTYPE of the document -being viewed. Its “quirks” mode is its fastest mode, and its “IE8 -standards” mode is its slowest. This is the mode triggered by strict HTML -document types, and since most modern content management systems now -include a DOCTYPE that activates “standards” mode, IE8 will operate in -its slowest manner. This is particularly apparent when MathJax is used, -since IE8 in standards mode runs 20 to 30 times slower than it does in its -IE7 emulation mode, and 60 times slower than in quirks mode, on the sample -equations page in test/sample.html.

    -

    Most users find this speed reduction unacceptable when there is much -mathematics on the page. To overcome this problem, you may wish to -tell IE8 to use its IE7 emulation mode rather than its IE8 standards -mode. You can accomplish this by including the line

    -
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
    +
    +

    HTML-CSS with IE8 and IE9ΒΆ

    +

    The performance of MathJax in Internet Explorer 8 and 9 has been +substantially improved in version 2.0. The HTML-CSS output processing +was redesigned to avoid the page reflows that were the main source of +the speed problem in I8 and IE9. For test pages having between 20 and +50 typeset expressions, we see an 80% reduction in output processing +time for IE8, a 50% reduction for IE9, and between 15% and 25% +reduction for most other browsers over the v1.1a times. Since the +processing time in v1.1a grows non-linearly in IE, you should see even +larger savings for pages with more equations when using v2.0.

    +

    In the past, we recommended forcing IE8 and IE9 into IE7-emulation +mode in order to get better performance. That is no longer necessary. +Indeed, the fastest modes in IE8 and IE9 now are their IE8 standards +and IE9 standards modes, so it is best to force the highest mode +possible. That can be accomplished by adding

    +
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
     
    -

    at the top of the <head> section of your HTML documents. This -lets you keep the strict DOCTYPE for validation purposes, while -still managing to get reasonable performance from Internet Explorer -8. Note that this line must come at the beginning of the <head>, -before any stylesheets or other content are loaded.

    -

    Alternatively, you can use the MMLorHTML configuration file -described above to select NativeMML output when possible, and request -that your users install the MathPlayer plugin, which will render -the mathematics much more quickly.

    -

    It appears that IE9 in IE9 standards mode may perform better than IE8, but -since IE9 is still in beta testing as of this writing, we have yet to see -exactly what the performance of MathJax in IE9 will be like.

    +

    at the top of the <head> section of your HTML documents. Note +that this line must come at the beginning of the <head>, before +any stylesheets, scripts, or other content are loaded.

    @@ -191,14 +212,14 @@ exactly what the performance of MathJax in IE9 will be like.

    Previous topic

    -

    MathJax MathML Support

    +

    MathJax AsciiMath Support

    Next topic

    The MathJax Community

    @@ -229,13 +250,13 @@ exactly what the performance of MathJax in IE9 will be like.

    next |
  • - previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/platforms/index.html b/docs/html/platforms/index.html index efae5122c..e809a5368 100644 --- a/docs/html/platforms/index.html +++ b/docs/html/platforms/index.html @@ -6,13 +6,13 @@ - Using MathJax in popular web platforms — MathJax v1.1 documentation + Using MathJax in popular web platforms — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -51,13 +51,14 @@ @@ -129,12 +129,12 @@ your pages. If you need to adjust the configuration, see
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Using MathJax in popular web platforms »
  • diff --git a/docs/html/platforms/wordpress.html b/docs/html/platforms/wordpress.html index b63114c6b..7d0a759d2 100644 --- a/docs/html/platforms/wordpress.html +++ b/docs/html/platforms/wordpress.html @@ -6,13 +6,13 @@ - Installing MathJax in WordPress — MathJax v1.1 documentation + Installing MathJax in WordPress — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Using MathJax in popular web platforms »
  • @@ -131,12 +131,12 @@ your pages. If you need to adjust the configuration, see
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Using MathJax in popular web platforms »
  • diff --git a/docs/html/queues.html b/docs/html/queues.html index eb52bf5fa..753fac82a 100644 --- a/docs/html/queues.html +++ b/docs/html/queues.html @@ -6,13 +6,13 @@ - Using Queues — MathJax v1.1 documentation + Using Queues — MathJax v2.0 documentation - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Synchronizing your code with MathJax »
  • @@ -319,12 +319,12 @@ finishes everything it has queued when it was loaded. For example,

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

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • Synchronizing your code with MathJax »
  • diff --git a/docs/html/start.html b/docs/html/start.html index d53559969..bde07a94c 100644 --- a/docs/html/start.html +++ b/docs/html/start.html @@ -6,13 +6,13 @@ - Getting Started — MathJax v1.1 documentation + Getting Started — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -52,14 +52,14 @@

    Getting StartedΒΆ

    MathJax allows you to include mathematics in your web pages, either -using TeX and LaTeX notation, or as MathML, and you can even use both -in the same document.

    +using TeX and LaTeX notation, MathML, or AsciiMath notation, and you +can even use all three in the same document.

    There are two ways to access MathJax: the easiest way is to use the copy of MathJax available from our distributed network service at cdn.mathjax.org, but you can also download and install a copy of -MathJax on your own server, or for use locally on your own hard disk -(with no need for network access). Both of these are described below, -with links to more detailed explanations. This page gives the +MathJax on your own server, or use it locally on your own hard disk +(with no need for network access). All three of these are described +below, with links to more detailed explanations. This page gives the quickest and easiest ways to get MathJax up and running on your web site, but you may want to read the details in order to customize the setup for your pages.

    @@ -82,12 +82,12 @@ it. load the latest version of MathJax from the distributed server, and configure it to recognize mathematics in both TeX and MathML notation, and ask it to generate its output using MathML if the browser supports -that, and otherwise use HTML-with-CSS to display the mathematics. -This is the most general configuration, and should suffice for most -people’s needs. Other configurations are available, however, and you -can also provide additional configuration parameters to taylor one of -the configurations to your needs. More details can be found in the -Loading and Configuring MathJax instructions.

    +that well enough, and otherwise use HTML-with-CSS to display the +mathematics. This is one of the most general configurations, and +should suffice for most people’s needs. Other configurations are +available, however, and you can also provide additional configuration +parameters to taylor one of the configurations to your needs. More +details can be found in the Loading and Configuring MathJax instructions.

    The use of cdn.mathjax.org is governed by its terms of service, so be sure to read that before linking to the MathJax CDN server.

    To see how to enter mathematics in your web pages, see Putting @@ -101,7 +101,7 @@ possible a hostile 3rd party could intercept the MathJax program data, and replace it. This is sometimes called a man-in-the-middle attack.

    To prevent such attacks, it is necessary to access the MathJax CDN -over a secure HTTPS connection. This can be easily done by using the +over a secure HTTPS connection. This can be done easily by using the following <script> tag instead of the one listed above:

    <script type="text/javascript"
       src="https://d3eoax9i5htok0.cloudfront.net/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
    @@ -109,8 +109,9 @@ following <script>

    Currently, the Amazon Cloudfront service used by the MathJax CDN does -not support the use of a human-friendly name like cdn.mathjax.org for -secure connections. However, this address is stable and safe to use.

    +not support the use of a human-friendly name like cdn.mathjax.org +for secure connections; however, the address given above is stable and +safe to use.

    @@ -118,8 +119,9 @@ secure connections. However, this address is stable and safe to use.

    We recommend using the CDN service if you can, but you can also install MathJax on your own server, or locally on your own hard disk. To do so you will need to do the following things:

    -
      -
    1. Obtain a copy of MathJax and make it available on your server.
    2. +

      1. Obtain a copy of MathJax and make it available on your server or +hard disk.

      +
      1. Configure MathJax to suit the needs of your site.
      2. Link MathJax into the web pages that are to include mathematics.
      3. Put mathematics into your web pages so that MathJax can display @@ -133,52 +135,53 @@ should obtain a file named something like mathjax-MathJax-v1.1-X-XXXXXXXX.zip, where the X’s are random-looking letters and numbers). This archive includes both the MathJax code and the MathJax webfonts, so it is the only file you -need. Note that this is different from earlier releases, which had -the fonts separate from the rest of the code.

        +need. Note that this is different from v1.0 and earlier releases, +which had the fonts separate from the rest of the code.

        Unpack the archive and place the resulting MathJax folder onto your web server at a convenient location where you can include it into your web pages. For example, making MathJax a top-level directory on your server would be one natural way to do this. That would let you refer to the main MathJax file via the URL /MathJax/MathJax.js from within any page on your server.

        -

        Note: While this is the easiest way to set up MathJax initially, there +

        Note: While this is the easiest way to set up MathJax initially, there is a better way to do it if you want to be able to keep your copy of MathJax up-to-date. That uses the Git version control system, and is described in the Installing MathJax document. If you prefer using Subversion, you can also use that to get a copy of MathJax (see Installing MathJax via SVN).

        Once you have MathJax set up on your server, you can test it using the -files in the MathJax/test directory. Load them in your browser -using its web address rather than opening them locally (i.e., use an -http:// URL rather than a file:// URL). When you view the -index.html file, after a few moments you should see a message -indicating that MathJax appears to be working. If not, check that the -files have been transferred to the server completely and that the -permissions allow the server to access the files and folders that are -part of the MathJax directory. (Be sure to verify the MathJax -folder’s permissions as well.) Check the server log files for any -errors that pertain to the MathJax installation; this may help locate -problems in the permission or locations of files.

        +files in the MathJax/test directory. If you are putting MathJax +on a server, load them in your browser using their web addresses +rather than opening them locally (i.e., use an http:// URL rather +than a file:// URL). When you view the index.html file, after +a few moments you should see a message indicating that MathJax appears +to be working. If not, check that the files have been transferred to +the server completely and that the permissions allow the server to +access the files and folders that are part of the MathJax directory. +(Be sure to verify the MathJax folder’s permissions as well.) Check +the server log files for any errors that pertain to the MathJax +installation; this may help locate problems in the permission or +locations of files.

    Configuring your copy of MathJaxΒΆ

    When you include MathJax into your web pages as described below, it will load the file config/TeX-AMS-MML_HTMLorMML.js (i.e., the file named TeX-AMS-MML_HTMLorMML.js in the config folder of the -main MathJax folder). This file preloads all the most commonly-used -components of MathJax, allowing it to process mathematics that is in -the TeX or LaTeX format, or in MathML notation. It will produce -output in MathML form if the user’s browser supports that, and will use -HTML-with-CSS to render the mathematics otherwise.

    +main MathJax folder). This file preloads all the most +commonly-used components of MathJax, allowing it to process +mathematics that is in the TeX or LaTeX format, or in MathML notation. +It will produce output in MathML form if the user’s browser supports +that sufficiently, and will use HTML-with-CSS to render the +mathematics otherwise.

    There are a number of other prebuilt configuration files that you can choose from as well, or you could use the config/default.js file and customize the settings yourself. The combined configuration files are described more fully in Common Configurations, and the configuration options are described in Configuration Options.

    -

    Note: The configuration process has changed in MathJax v1.1, so if you have -existing pages that use MathJax, you may need to modify the tag that -loads MathJax so that it conforms with the new configuration process. -See Installing and Configuring MathJax for more -details.

    +

    Note: The configuration process changed between MathJax v1.0 and v1.1, +so if you have existing pages that use MathJax v1.0, you may need to +modify the tag that loads MathJax so that it conforms with the new +configuration process. See Installing and Configuring MathJax for more details.

    Linking your copy of MathJax into a web pageΒΆ

    @@ -215,13 +218,15 @@ of MathJax.

    Putting mathematics in a web pageΒΆ

    -

    To put mathematics in your web page, you can use either TeX -and LaTeX notation or MathML notation or both within -the same page; the MathJax configuration tells MathJax which you want -to use, and how you plan to indicate the mathematics when you are -using TeX notation. The configuration file used in the examples above -tells MathJax to look for both TeX and MathML notation within your -pages. These two formats are described in more detail below.

    +

    To put mathematics in your web page, you can use TeX and +LaTeX notation, MathML notation, AsciiMath +notation, or a combination of all three within the same page; the +MathJax configuration tells MathJax which you want to use, and how you +plan to indicate the mathematics when you are using TeX notation. The +configuration file used in the examples above tells MathJax to look +for both TeX and MathML notation within your pages. Other +configuration files tell MathJax to use AsciiMath input. These three +formats are described in more detail below.

    TeX and LaTeX inputΒΆ

    Mathematics that is written in TeX or LaTeX format is @@ -255,9 +260,12 @@ options page, for additional configuration parameters that you can specify for the tex2jax preprocessor, which is the component of MathJax that identifies TeX notation within the page. See the TeX and LaTeX page for -more on MathJax’s support for TeX.

    -

    Here is a complete sample page containing TeX mathematics (also available -in the test/sample-tex.html file):

    +more on MathJax’s support for TeX, and in particular how to deal with +single dollar signs in your text when you have enabled single +dollar-sign delimiters.

    +

    Here is a complete sample page containing TeX mathematics (also +available in the test/sample-tex.html +file):

    <!DOCTYPE html>
     <html>
     <head>
    @@ -282,6 +290,15 @@ In particular, you need to be careful about the use of less-than
     signs, since those are what the browser uses to indicate the start of
     a tag in HTML.  Putting a space on both sides of the less-than sign
     should be sufficient, but see TeX and LaTeX support for details.

    +

    If you are using MathJax within a blog, wiki, or other content +management system, the markup language used by that system may +interfere with the TeX notation used by MathJax. For example, if your +blog uses Markdown notation for authoring your pages, the +underscores used by TeX to indicate subscripts may be confused with +the use of underscores by Markdown to indicate italics, and the two +uses may prevent your mathematics from being displayed. See TeX +and LaTeX support for some suggestions about how to +deal with the problem.

    There are a number of extensions for the TeX input processor that are loaded by the TeX-AMS-MML_HTMLorMML configuration. These include:

      @@ -294,10 +311,12 @@ an error message when there is a problem processing the TeX, and
    • TeX/noUndefined.js, which prevents undefined macros from producing an error message, and instead shows the macro name in red.
    -

    Other extensions may be loaded automatically when needed.

    +

    Other extensions may be loaded automatically when needed. See +TeX and LaTeX support for details on the other +TeX extensions that are available.

    -

    MathML inputΒΆ

    +

    MathML inputΒΆ

    For mathematics written in MathML notation, you mark your mathematics using standard <math> tags, where <math display="block"> represents displayed mathematics and <math @@ -307,9 +326,18 @@ works with both), and that the web page need not be served with any special MIME-type. Also note that, unless you are using XHTML rather than HTML, you should not include a namespace prefix for your <math> tags; for example, you should not use <m:math> except -in a file where you have tied the m namespace to the MathML DTD.

    +in a file where you have tied the m namespace to the MathML DTD by +adding the xmlns:m="http://www.w3.org/1998/Math/MathML" attribtue +to your file’s <html> tag.

    +

    Although it is not required, it is recommended that you include the +xmlns="http://www.w3.org/1998/Math/MathML" attribute on all +<math> tags in your document (and this is preferred to the use of +a namespace prefix like m: above, since those are deprecated in +HTML5) in order to make your MathML work in the widest range of +situations.

    Here is a complete sample page containing MathML mathematics (also -available in the test/sample-mml.html file):

    +available in the test/sample-mml.html +file):

    <!DOCTYPE html>
     <html>
     <head>
    @@ -320,13 +348,19 @@ available in the test/sample-mml.
     </head>
     <body>
     
    -When <math><mi>a</mi><mo>&#x2260;</mo><mn>0</mn></math>,
    -there are two solutions to <math>
    +<p>
    +When
    +<math xmlns="http://www.w3.org/1998/Math/MathML">
    +  <mi>a</mi><mo>&#x2260;</mo><mn>0</mn>
    +</math>,
    +there are two solutions to
    +<math xmlns="http://www.w3.org/1998/Math/MathML">
       <mi>a</mi><msup><mi>x</mi><mn>2</mn></msup>
       <mo>+</mo> <mi>b</mi><mi>x</mi>
       <mo>+</mo> <mi>c</mi> <mo>=</mo> <mn>0</mn>
    -</math> and they are
    -<math mode="display">
    +</math>
    +and they are
    +<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
       <mi>x</mi> <mo>=</mo>
       <mrow>
         <mfrac>
    @@ -345,6 +379,7 @@ there are two solutions to <math>
       </mrow>
       <mtext>.</mtext>
     </math>
    +</p>
     
     </body>
     </html>
    @@ -354,18 +389,57 @@ there are two solutions to <math>
     page), you should not use self-closing tags, but should use explicit
     open and close tags for all your math elements.  For example, you
     should use

    -
    <mspace width="thinmathspace"></mspace>
    +
    <mspace width="5pt"></mspace>
     
    -

    rather than <mspace width="5pt" /> in an HTML document. If you use the -self-closing form, some browsers will not build the math tree properly, and -MathJax will receive a damaged math structure, which will not be rendered -as the original notation would have been. Unfortunately, there is nothing -MathJax can do about that, since the browser has incorrectly interpreted -the tags long before MathJax has a chance to work with them.

    -

    The component of MathJax that recognizes MathML notation is called the -mml2jax extension, and it has only a few configuration options; see the -config/default.js file or the mml2jax configuration options page for more details. See the MathML page for more on MathJax’s MathML support.

    +

    rather than <mspace width="5pt" /> in an HTML document. If you +use the self-closing form, some browsers will not build the math tree +properly, and MathJax will receive a damaged math structure, which +will not be rendered as the original notation would have been. +Typically, this will cause parts of your expression to not be +displayed. Unfortunately, there is nothing MathJax can do about that, +since the browser has incorrectly interpreted the tags long before +MathJax has a chance to work with them.

    +

    The component of MathJax that recognizes MathML notation within the +page is called the mml2jax extension, and it has only a few +configuration options; see the config/default.js file or the +mml2jax configuration options page for more +details. See the MathML page for more on +MathJax’s MathML support.

    +
    +
    +

    AsciiMath inputΒΆ

    +

    MathJax v2.0 includes a new input format: AsciiMath notation. +For mathematics written in this form, you mark your mathematical +expressions by surrounding them in “back-ticks”, i.e., `...`.

    +

    Here is a complete sample page containing AsciiMath notation (also +available in the test/sample-asciimath.html +file):

    +
    <!DOCTYPE html>
    +<html>
    +<head>
    +<title>MathJax AsciiMath Test Page</title>
    +<script type="text/javascript"
    +  src="../MathJax.js?config=AM_HTMLorMML-full"></script>
    +</head>
    +<body>
    +
    +<p>When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and
    +they are</p>
    +<p style="text-align:center">
    +  `x = (-b +- sqrt(b^2-4ac))/(2a) .`
    +</p>
    +
    +</body>
    +</html>
    +
    +
    +

    The component of MathJax that recognizes asciimath notation within the +page is called the asciimath2jax extension, and it has only a few +configuration options; see the config/default.js file or the +asciimath2jax configuration options page for more +details. See the AsciiMath support page for more on +MathJax’s AsciiMath support.

    @@ -413,6 +487,7 @@ MathJax, you could visit the Putting mathematics in a web page
  • Where to go from here?
  • @@ -455,11 +530,11 @@ MathJax, you could visit the previous | -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/startup.html b/docs/html/startup.html index b3857888d..2571a54ff 100644 --- a/docs/html/startup.html +++ b/docs/html/startup.html @@ -6,13 +6,13 @@ - The MathJax Startup Sequence — MathJax v1.1 documentation + The MathJax Startup Sequence — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -237,11 +237,11 @@ complete, however, before 7 will be performed.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/synchronize.html b/docs/html/synchronize.html index 61a14e1cd..4d5bfb2ff 100644 --- a/docs/html/synchronize.html +++ b/docs/html/synchronize.html @@ -6,13 +6,13 @@ - Synchronizing your code with MathJax — MathJax v1.1 documentation + Synchronizing your code with MathJax — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -146,11 +146,11 @@ directory for a working example of using signals.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/tex.html b/docs/html/tex.html index c3ef77e3c..019c936a7 100644 --- a/docs/html/tex.html +++ b/docs/html/tex.html @@ -6,13 +6,13 @@ - MathJax TeX and LaTeX Support — MathJax v1.1 documentation + MathJax TeX and LaTeX Support — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -115,7 +115,7 @@ the page.

    Keep in mind that your mathematics is part of an HTML document, so you need to be aware of the special characters used by HTML as part of its markup. There cannot be HTML tags within the math delimiters (other -than <BR>) as TeX-formatted math does not include HTML tags. +than <br>) as TeX-formatted math does not include HTML tags. Also, since the mathematics is initially given as text on the page, you need to be careful that your mathematics doesn’t look like HTML tags to the browser (which parses the page before MathJax gets to see @@ -153,6 +153,126 @@ easier to enter <

    Keep in mind that the browser interprets your text before MathJax does.

    +

    Another source of difficulty is when MathJax is used in content +management systems that have their own document processing commands +that are interpreted before the HTML page is created. For example, +many blogs and wikis use formats like Markdown to allow you to +create the content of you pages. In Markdown, the underscore is used +to indicate italics, and this usage will conflict with MathJax’s ise +of the underscore to indicate a subscript. Since Markdown is applied +to the page first, it will convert your subscripts markers into +italics (inserting <i> tags into your mathematics, which will +cause MathJax to ignore the math).

    +

    Such systems need to be told not to modify the mathematics that +appears between math delimiters. That usually involves modifying the +content-management system itself, which is beyond the means of most +page authors. If you are lucky, someone else will already have done +this for you, and you can find a MathJax plugin for your system on the +MathJax-In-Use page page.

    +

    If there is no plugin for your system, or if it doesn’t handle the +subtleties of issolating the mathematics from the other markup that it +supports, then you may have to “trick” it into leaving your +mathematics untouched. Most content-management systems provide some +means of indicating text that should not be modified (“verbatim” +text), often for giving code snippets for computer languages. +You may be use that to enclose your mathematics so that the system +leaves it unchanged and MathJax can process it. For example, in +Markdown, the back-tick (`) is used to mark verbatim text, so

    +
    ... we have `\(x_1 = 132\)` and `\(x_2 = 370\)` and so ...
    +
    +
    +

    may be able to protect the underscores from being processed by +Markdown.

    +

    Some content-management systems use the backslash (\) as a special +character for “escaping” other characters, but TeX uses this character +to indicate a macro name. In such systems, you may have to double the +backslashes in order to obtain a single backslash in your HTML page. +For example, you may have to do

    +
    \\begin{array}{cc}
    +  a & b \\\\
    +  c & c
    +\\end{array}
    +
    +
    +

    to get an array with the four entries a, b, c, and d. Note in +particular that if you want \\ you will have to double both +backslashes, giving \\\\.

    +

    Finally, if you have enabled single dollar-signs as math delimiters, +and you want to include a literal dollar sign in your web page (one +that doesn’t represent a math delimiter), you will need to prevent +MathJax from using it as a math delimiter. If you also enable the +processEscapes configuration parameter, then you can use \$ in +the text of your page to get a dollar sign (without the backslash) in +the end. Alternatively, you use something like +<span>$</span> to isolate the dollar sign so that +MathJax will not use it as a delimiter.

    + +
    +

    Defining TeX macrosΒΆ

    +

    You can use the \def, \newcommand, \renewcommand, +\newenvironment, \renewenvironment, and \let commands to +create your own macros and environments. Unlike actual TeX, however, +in order for MathJax to process these, they must be enclosed in math +delimiters (since MathJax only processes macros in math-mode). For +example

    +
    \(
    +   \def\RR{\bf R}
    +   \def\bold#1{\bf #1}
    +\)
    +
    +
    +

    would define \RR to produce a bold-faced “R”, and \bold{...} +to put its argument into bold face. Both definitions would be +available throughout the rest of the page.

    +

    You can include macro definitions in the Macros section of the TeX +blocks of your configuration, but they must be represetned as +JavaScript objects. For example, the two macros above can be +pre-defined in the configuraiton by

    +
    MathJax.Hub.Config({
    +  TeX: {
    +    Macros: {
    +      RR: "{\\bf R}",
    +      bold: ["{\\bf #1}",1]
    +    }
    +  }
    +});
    +
    +
    +

    Here you give the macro as a name:value pair, where the name +is the name of the control sequence (without the backslash) that you +are defining, and value is either the replacement string for the +macro (when there are no arguments) or an array consisting of the +replacement string followed by the number of arguments for the macro.

    +

    Note that the replacement string is given as a JavaScript string +literal, and the backslash has special meaning in JavaScript strings. +So to get an actual backslash in the string you must double it, as int +he examples above.

    +

    If you have many such definitions that you want to use on more than +one page, you could put them into a configuration file that you can +load along with the main configuration file. For example, you could +create a file in MathJax/config/local called local.js that +contains your macro definitions:

    +
    MathJax.Hub.Config({
    +  TeX: {
    +    Macros: {
    +      RR: "{\\bf R}",
    +      bold: ["{\\bf #1}",1]
    +    }
    +  }
    +});
    +
    +MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js");
    +
    +
    +

    and then load it along with your main configuration file on the script +that loads MathJax.js:

    +
    <script src="/MathJax/MathJax.js?config=TeX-AMS_HTML,local/local.js"></script>
    +
    +
    +

    If you are using the CDN, you can make a local configuration file on +your own server, and load MathJax itself from the CDN and your +configuration file from your server. See Using a Local +Configuration File with the CDN for details.

    TeX and LaTeX extensionsΒΆ

    @@ -182,7 +302,50 @@ script prior to loading MathJax. For example

    will load the autobold TeX extension in addition to those already included in the TeX-AMS_HTML configuration file.

    +

    You can also load these extensions from within a math expresion using +the non-standard \require{extension} macro. For example

    +
    \(\require{color}\)
    +
    +
    +

    would load the color extension into the page. This way you you can +load extensions into pages that didn’t load them in their +configurations (and prevents you from having to load all the +extensions into all pages even if they aren’t used).

    The main extensions are described below.

    +
    +

    ActionΒΆ

    +

    The action extension gives you access to the MathML <maction> +element. It defines three new non-standard macros:

    +
    +
    +\mathtip{math}{tip}
    +

    Use tip (in math mode) as tooltip for math.

    +
    + +
    +
    +\texttip{math}{tip}
    +

    Use tip (in text mode) as tooltip for math.

    +
    + +
    +
    +\toggle{math1}{math2}...\endtoggle
    +

    Show math1, and when clicked, show math2, and so on. +When the last one is clicked, go back to math1.

    +
    + +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["action.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands.

    +

    AMSmath and AMSsymbolsΒΆ

    The AMSmath extension implements AMS math environments and macros, and @@ -215,6 +378,268 @@ appears in a section of an HTML page that is in bold.

    This extension is not loaded by the combined configuration files.

    +
    +

    BBoxΒΆ

    +

    The bbox extension defines a new macro for adding background colors, +borders, and padding to your math expressions.

    +
    +
    +\bbox[options]{math}
    +

    puts a bounding box around math using the provided options. +The options can be one of the following:

    +
      +
    1. A color name used for the background color.
    2. +
    3. A dimension (e.g., 2px) to be used as a padding around the +mathematics (on all sides).
    4. +
    5. Style attributes to be applied to the mathematics (e.g., +border:1px solid red).
    6. +
    7. A combination of these separated by commas.
    8. +
    +
    + +

    Here are some examples:

    +
    \bbox[red]{x+y}      % a red box behind x+y
    +\bbox[2pt]{x+1}      % an invisible box around x+y with 2pt of extra space
    +\bbox[red,2pt]{x+1}  % a red box around x+y with 2pt of extra space
    +\bbox[5px,border:2px solid red]
    +                     % a 2px red border around the math 5px away
    +
    +
    +

    This extension is not included in any of the combined configurations, +but it will be loaded automatically, so you do not need to include it +in your extensions array.

    +
    +
    +

    BegingroupΒΆ

    +

    The begingroup extension implements commands that provide a +mechanism for localizing macro defintions so that they are not +permanent. This is useful if you have a blog site, for example, and +want to isolate changes that your readers make in their comments so +that they don’t affect later comments.

    +

    It defines two new non-standard macros, \begingroup and +\endgroup, that are used to start and stop a local namespace for +macros. Any macros that are defined between the \begingroup and +\endgroup will be removed after the \endgroup is executed. +For example, if you put \(\begingroup\) at the top of each reader’s +comments and \(\endgroup\) at the end, then any macros they define +within their response will be removed after it is processed.

    +

    In addition to these two macros, the begingroup extension defines +the standard \global and \gdef control sequences from TeX. +(The \let, \def, \newcommand, and \newenvironment +control sequences are already defined in the core TeX input jax.)

    +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["begingroup.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands.

    +
    +
    +

    CancelΒΆ

    +

    The cancel extension defines the following macros:

    +
    +
    +\cancel{math}
    +

    Strikeout math from lower left to upper right.

    +
    + +
    +
    +\bcancel{math}
    +

    Strikeout math from upper left to lower right.

    +
    + +
    +
    +\xcancel{math}
    +

    Strikeout math with an “X”.

    +
    + +
    +
    +\cancelto{value}{math}
    +

    Strikeout math with an arrow going to value.

    +
    + +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["cancel.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands.

    +
    +
    +

    ColorΒΆ

    +

    The \color command in the core TeX input jax is not standard in +that it takes the mathematics to be colored as one of its parameters, +whereas the LaTeX \color command is a switch that changes the +color of everything that follows it.

    +

    The color extension changes the \color command to be compatible +with the LaTeX implementation, and also defines \colorbox, +\fcolorbox, and \DefineColor, as in the LaTeX color package. +It defines the standard set of colors (Apricot, Aquamarine, +Bittersweet, and so on), and provides the RGB and grey-scale color +spaces in addition to named colors.

    +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["color.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands, +and have \color be compatible with LaTeX usage.

    +
    +
    +

    EncloseΒΆ

    +

    The enclose extension gives you access to the MathML <menclose> +element for adding boxes, ovals, strikethroughs, and other marks over +your mathematics. It defines the following non-standard macro:

    +
    +
    +\enclose{notation}[attributes]{math}
    +

    Where notation is a comma-separated list of MathML +<menclose> notations (e.g., circle, left, +updiagonalstrike, longdiv, etc.), attributes are +MathML attribute values allowed on the <menclose> element +(e.g., mathcolor="red", mathbackground="yellow"), and +math is the mathematics to be enclosed.

    +
    + +

    For example

    +
    \enclose{circle}[mathcolor="red"]{x}
    +\enclose{circle}[mathcolor="red"]{\color{black}{x}}
    +\enclose{circle,box}{x}
    +\enclose{circle}{\enclose{box}{x}}
    +
    +
    +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["action.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands.

    +
    +
    +

    ExtpfeilΒΆ

    +

    The extpfeil extension adds more macros for producing extensible +arrows, including \xtwoheadrightarrow, \xtwoheadleftarrow, +\xmapsto, \xlongequal, \xtofrom, and a non-standard +\Newextarrow for creating your own extensible arrows. The latter +has the form

    +
    +
    +\Newextarrow{\cs}{lspace,rspace}{unicode-char}
    +

    where \cs is the new control sequence name to be defined, +lspace and rspace are integers representing the amount of +space (in suitably small units) to use at the left and right of +text that is placed above or below the arrow, and unicode-char +is a number representing a unicode character position in either +decimal or hexadecimal notation.

    +
    + +

    For example

    +
    \Newextarrow{\xrightharpoonup}{5,10}{0x21C0}
    +
    +
    +

    defines an extensible right harpoon with barb up. Note that MathJax +knows how to stretch only a limited number of characters, so you may +not actually get a stretchy character this way.

    +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["extpfeil.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands.

    +
    +
    +

    HTMLΒΆ

    +

    The HTML extension gives you access to some HTML features like +styles, classes, element ID’s and clickable links. It defines the +following non-standard macros:

    +
    +
    +\href{url}{math}
    +

    Makes math be a link to the page given by url.

    +
    + +
    +
    +\class{name}{math}
    +

    Attaches the CSS class name to the output associated with +math when it is included in the HTML page. This allows your +CSS to style the element.

    +
    + +
    +
    +\cssId{id}{math}
    +

    Attaches an id attribute with value id to the output +associated with math when it is included in the HTML page. +This allows your CSS to style the element, or your javascript to +locate it on the page.

    +
    + +
    +
    +\style{css}{math}
    +

    Adds the give css declarations to the element associated with +math.

    +
    + +

    For example:

    +
    x \href{why-equal.html}{=} y^2 + 1
    +
    +(x+1)^2 = \class{hidden}{(x+1)(x+1)}
    +
    +(x+1)^2 = \cssId{step1}{\style{visibility:hidden}{(x+1)(x+1)}}
    +
    +
    +

    This extension is not included in any of the combined configurations, +but it will be loaded automatically when any of these macros is used, +so you do not need to include it explicitly in your configuration.

    +
    +
    +

    mhchemΒΆ

    +

    The mhchem extensions implements the \ce, \cf, and \cee +chemical equation macros of the LaTeX mhchem package. See the +mhchem CPAN page for more +information and a link to the documentation for mhchem.

    +

    For example

    +
    \ce{C6H5-CHO}
    +\ce{$A$ ->[\ce{+H2O}] $B$}
    +\ce{SO4^2- + Ba^2+ -> BaSO4 v}
    +
    +
    +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["mhchem.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands.

    +

    noErrorsΒΆ

    The noErrors extension prevents TeX error messages from being @@ -232,9 +657,10 @@ following to your inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"] multiLine: true, // false for TeX on all one line style: { - "font-family": "serif", - "font-size": "80%", + "font-size": "90%", + "text-align": "left", "color": "black", + "padding": "1px 3px", "border": "1px solid" // add any additional CSS styles that you want // (be sure there is no extra comma at the end of the last item) @@ -340,6 +766,9 @@ array. You can configure the extension as follows:

    macro is defined in an extension, the name of the extension follows the macro name. If the extension is in brackets, the extension will be loaded automatically when the macro or environment is first used.

    +

    More complete details about how to use these macros, with examples and +explanations, is available at Carol Fisher’s TeX Commands Available +in MathJax page.

    SymbolsΒΆ

    #
    @@ -408,8 +837,11 @@ be loaded automatically when the macro or environment is first used.

    \barwedge AMSsymbols \Bbb \Bbbk AMSsymbols +\bbox [bbox] +\bcancel cancel \because AMSsymbols \begin +\begingroup begingroup non-standard \beta \beth AMSsymbols \between AMSsymbols @@ -474,13 +906,18 @@ be loaded automatically when the macro or environment is first used.

    CΒΆ

    \cal
    +\cancel                 cancel
    +\cancelto               cancel
     \cap
     \Cap                    AMSsymbols
     \cases
     \cdot
     \cdotp
     \cdots
    +\ce                     mhchem
    +\cee                    mhchem
     \centerdot              AMSsymbols
    +\cf                     mhchem
     \cfrac                  AMSmath
     \check
     \checkmark              AMSsymbols
    @@ -498,7 +935,8 @@ be loaded automatically when the macro or environment is first used.

    \class [HTML] non-standard \clubsuit \colon -\color +\color color +\colorbox color \complement AMSsymbols \cong \coprod @@ -577,12 +1015,15 @@ be loaded automatically when the macro or environment is first used.

    EΒΆ

    \ell
     \emptyset
    +\enclose                enclose         non-standard
     \end
    +\endgroup               begingroup      non-standard
     \enspace
     \epsilon
     \eqalign
     \eqalignno
     \eqcirc                 AMSsymbols
    +\eqref                 [AMSmath]
     \eqsim                  AMSsymbols
     \eqslantgtr             AMSsymbols
     \eqslantless            AMSsymbols
    @@ -598,6 +1039,7 @@ be loaded automatically when the macro or environment is first used.

    FΒΆ

    \fallingdotseq          AMSsymbols
     \fbox
    +\fcolorbox              color
     \Finv                   AMSsymbols
     \flat
     \forall
    @@ -614,6 +1056,7 @@ be loaded automatically when the macro or environment is first used.

    \Gamma \gamma \gcd +\gdef begingroup \ge \genfrac AMSmath \geq @@ -624,6 +1067,7 @@ be loaded automatically when the macro or environment is first used.

    \ggg AMSsymbols \gggtr AMSsymbols \gimel AMSsymbols +\global begingroup \gnapprox AMSsymbols \gneq AMSsymbols \gneqq AMSsymbols @@ -741,6 +1185,7 @@ be loaded automatically when the macro or environment is first used.

    \lesseqqgtr AMSsymbols \lessgtr AMSsymbols \lesssim AMSsymbols +\let [newcommand] \lfloor \lg \lgroup @@ -809,6 +1254,7 @@ be loaded automatically when the macro or environment is first used.

    \mathscr \mathsf \mathstrut +\mathtip action non-standard \mathtt \matrix \max @@ -816,9 +1262,11 @@ be loaded automatically when the macro or environment is first used.

    \measuredangle AMSsymbols \mho AMSsymbols \mid +\middle \min \mit \mkern +\mmlToken non-standard \mod \models \moveleft @@ -845,6 +1293,7 @@ be loaded automatically when the macro or environment is first used.

    \neq \newcommand [newcommand] \newenvironment [newcommand] +\Newextarrow extpfeil \newline \nexists AMSsymbols \ngeq AMSsymbols @@ -968,7 +1417,9 @@ be loaded automatically when the macro or environment is first used.

    \rbrack \rceil \Re +\ref [AMSmath] \renewcommand [newcommand] +\renewenvironment [newcommand] \require non-standard \restriction AMSsymbols \rfloor @@ -1089,6 +1540,7 @@ be loaded automatically when the macro or environment is first used.

    \textit \textrm \textstyle +\texttip action non-standard \tfrac AMSmath \therefore AMSsymbols \Theta @@ -1101,6 +1553,7 @@ be loaded automatically when the macro or environment is first used.

    \tiny \Tiny non-standard \to +\toggle action non-standard \top \triangle \triangledown AMSsymbols @@ -1205,8 +1658,14 @@ be loaded automatically when the macro or environment is first used.

    XΒΆ

    \Xi
     \xi
    +\xcancel                cancel
     \xleftarrow             AMSmath
    +\xlongequal             extpfeil
    +\xmapsto                extpfeil
     \xrightarrow            AMSmath
    +\xtofrom                extpfeil
    +\xtwoheadleftarrow      extpfeil
    +\xtwoheadrightarrow     extpfeil
     
    @@ -1277,9 +1736,19 @@ vmatrix
  • MathJax TeX and LaTeX Support
  • diff --git a/docs/html/typeset.html b/docs/html/typeset.html index ebe59da67..048a154df 100644 --- a/docs/html/typeset.html +++ b/docs/html/typeset.html @@ -6,13 +6,13 @@ - Modifying Math on the Page — MathJax v1.1 documentation + Modifying Math on the Page — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -310,11 +310,11 @@ You typed: ${}$
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/upgrade.html b/docs/html/upgrade.html index ae60fed1f..d4564b428 100644 --- a/docs/html/upgrade.html +++ b/docs/html/upgrade.html @@ -6,13 +6,13 @@ - Migrating from MathJax v1.0 to v1.1 — MathJax v1.1 documentation + Migrating from MathJax v1.0 to v1.1 — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -315,11 +315,11 @@ retired in favor of the GitHub site.

  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/whats-new.html b/docs/html/whats-new.html index 33ab049fb..8a6246359 100644 --- a/docs/html/whats-new.html +++ b/docs/html/whats-new.html @@ -6,13 +6,13 @@ - What’s New in MathJax v1.1 — MathJax v1.1 documentation + What’s New in MathJax v1.1 — MathJax v2.0 documentation - + @@ -40,7 +40,7 @@
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • @@ -70,7 +70,7 @@ and speeds up typesetting of the mathematics on the page.
  • Improved responsiveness to mouse events during typesetting.
  • Parallel downloading of files needed by MathJax, for faster startup times.
  • -
  • Shorter timeout for web fonts, so if they can’t be downlaoded, you don’t +
  • Shorter timeout for web fonts, so if they can’t be downloaded, you don’t have to wait so long.
  • Rollover to image fonts if a web font fails to load (so you don’t have to wait for every font to fail.
  • @@ -252,11 +252,11 @@ font menu (since Opera can’t display many of the characters).
  • previous |
  • -
  • MathJax v1.1 documentation »
  • +
  • MathJax v2.0 documentation »
  • diff --git a/docs/source/CSS-styles.rst b/docs/source/CSS-styles.rst index bf014f5c2..b7b8b0bbb 100644 --- a/docs/source/CSS-styles.rst +++ b/docs/source/CSS-styles.rst @@ -5,8 +5,8 @@ CSS Style Objects ***************** Many MathJax components allow you to specify CSS styles that control -the look of the elements they create. These are described using CSS -style objects, which are JavaScript objects that represent standard +the look of the elements they create. These are described using `CSS +style objects`, which are JavaScript objects that represent standard CSS declarations. The main CSS style object is a collection of `name:value` pairs where the `name` is the CSS selector that is being defined, and the `value` is an object that gives the style for that @@ -31,24 +31,26 @@ declaration: styles: { + ".MathJax_Display": { + "text-align": "center", + margin: "1em 0em" + }, + ".MathJax .merror": { "background-color": "#FFFF88", color: "#CC0000", border: "1px solid #CC0000", padding: "1px 3px", - "font-family": "serif", "font-style": "normal", "font-size": "90%" - }, - - ".MathJax_Preview": {color: "#888888"}, + } } -This defines two CSS styles, one for the selector ``.MathJax -.merror``, which specifies a background color, foreground color, -border, and so on, and a second for ``.MathJax_Preview`` that sets its -color. +This defines two CSS styles, one for the selector +``.MathJax_Display``, which specifies its text alignment and margin +settings, and a second for ``.MathJax .merror``, which specifies a +background color, foreground color, border, and so on. You can add as many such definitions to a ``styles`` object as you wish. Note, however, that since this is a JavaScript object, the diff --git a/docs/source/asciimath.rst b/docs/source/asciimath.rst new file mode 100644 index 000000000..bbfccea88 --- /dev/null +++ b/docs/source/asciimath.rst @@ -0,0 +1,127 @@ +.. _AsciiMath-support: + +************************* +MathJax AsciiMath Support +************************* + +The support for :term:`AsciiMath` in MathJax consists of two parts: +the `asciimath2jax` preprocessor, and the `AsciiMath` input processor. +The first of these looks for mathematics within your web page +(indicated by delimiters like ```...```) and marks the mathematics for +later processing by MathJax. The AsciiMath input processor is what +converts the AsciiMath notation into MathJax's internal format, where +one of MathJax's output processors then displays it in the web page. + +The AsciiMath input jax actually includes a copy of Peter Jipsen's +``ASCIIMathML.js`` file (see the `AsciiMath home page +`_ for +details), and is included by permission of the author. This means +that the results of MathJax's AsciiMath processing should be the same +as using the actual ``ASCIIMathML.js`` package (at least as far as the +MathML that it generates is concerned). Thanks go to David Lippman +for writing the initial version of the AsciiMath preprocessor and +input jax. + +The `asciimath2jax` preprocessor can be configured to look for whatever +markers you want to use for your math delimiters. See the +:ref:`asciimath2jax configuration options ` section for +details on how to customize the action of `asciimath2jax`. + +The AsciiMath input processor handles conversion of your mathematical +notation into MathJax's internal format (which is essentially MathML). +The AsciiMath input processor has few configuration options (see the +:ref:`AsciiMath options ` section for details). + +The AsciiMath input jax handles only the original ASCIIMathML notation +(from ASCIIMathML v1.4.7), not the extened LaTeXMathML notation added +in version 2.0 of ASCIIMathML, though the AsciiMath input jax does +expose the tables that define the symbols that AsciiMath processes, +and so it would be possible to extend them to include additional +symbols. In general, it is probably better to use MathJax's :ref:`TeX +input jax ` to handle LaTeX notation instead. + + +AsciiMath delimiters +==================== + +By default, the `asciimath2jax` preprocessor defines the back-tick +(`````) as the delimiters for mathematics in AsciiMath format. It +does **not** define ``$...$`` as math delimiters. That is because +dollar signs appear too often in non-mathematical settings, which +could cause some text to be treated as mathematics unexpectedly. For +example, with single-dollar delimiters, "... the cost is $2.50 for the +first one, and $2.00 for each additional one ..." would cause the +phrase "2.50 for the first one, and" to be treated as mathematics +since it falls between dollar signs. For this reason, if you want to +use single-dollars for AsciiMath notation, you must enable that +explicitly in your configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + asciimath2jax: { + delimiters: [['$','$'], ['`','`']] + } + }); + +Note that the dollar signs are frequently used as a delimiter for +mathematics in the :term:`TeX` format, and you can not enable the +dollar-sign delimiter for both. It is probably best to leave dollar +signs for TeX notation. + +See the ``config/default.js`` file, or the :ref:`asiimath2jax +configuration options ` page, for additional +configuration parameters that you can specify for the `asciimath2jax` +preprocessor, which is the component of MathJax that identifies +AsciiMath notation within the page. + + +AsciiMath in HTML documents +=============================== + +The AsciiMath syntax is descibed in the `ASCIIMathML syntax page +`_. + +Keep in mind that your mathematics is part of an HTML document, so you +need to be aware of the special characters used by HTML as part of its +markup. There cannot be HTML tags within the math delimiters (other +than ``
    ``) as AsciiMath-formatted math does not include HTML tags. +Also, since the mathematics is initially given as text on the page, +you need to be careful that your mathematics doesn't look like HTML +tags to the browser (which parses the page before MathJax gets to see +it). In particular, that means that you have to be careful about +things like less-than and greater-than signs (``<`` and ``>``), and +ampersands (``&``), which have special meaning to the browsers. For +example, + +.. code-block:: html + + ... when `x`` in the document (typically the end of the next +actual tag in the HTML file), and you may notice that you are missing +part of the text of the document. In the example above, the "``we +have ...``" will not be displayed because the browser thinks it is +part of the tag starting at `` where ``path-to-MathJax`` is the URL to the MathJax directory on your -server or hard disk. +server or hard disk. If you are using MathJax from the CDN, you can +view the contents of `default.js +`_ as a +reference, but you will not be able to edit the CDN copy. It is +possible to use the CDN copy of MathJax with your own configuration +file, however; see :ref:`Using a Local Configuration File with the CDN +` for details. -The remaining files are combined configuration files that include not just -configuration parameters but also the files that MathJax would need to -load for those configurations. This means MathJax will have to load fewer -files, and since each file access requires establishing connections over -the network, it can be better to load one larger file than several smaller -ones. See :ref:`Loading and Configuring MathJax ` for more -details about how to load configurations, and how to modify the parameters -for a configuration file. +The remaining files in the `MathJax/config +`_ directory are +combined configuration files that include not just configuration +parameters but also the files that MathJax would need to load for +those configurations. This means MathJax will have to load fewer +files, and since each file access requires establishing connections +over the network, it can be faster to load one larger file than +several smaller ones. See :ref:`Loading and Configuring MathJax +` for more details about how to load configurations, and how +to modify the parameters for a configuration file. The following sections describe the contents of the combined configuration files. Each comes in two flavors: a standard version and a "full" version. The standard version simply defines the output processor(s) that are part of the configuration, but doesn't load the code that implements the output -processor; the full version loads the complete output processors, so +processor. The full version loads the complete output processors, so everything that MathJax needs for the page should be loaded up front, and there will be no delay once the page is ready to be processed. To obtain the "full" version, add ``-full`` to the end of the configuration file name. -The ``TeX-AMS-MML_HTMLorMML`` configuration file +The ``TeX-MML-AM_HTMLorMML`` configuration file ================================================ This configuration file is the most general of the pre-defined -configurations. It loads all the important MathJax components, including +configurations. It loads all the main MathJax components, including +the TeX, MathML, and AsciiMath preprocessors and input processors, the +AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, both +the native MathML and HTML-with-CSS output processor definitions, and +the MathMenu and MathZoom extensions. It is equivalent to the +following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + config: ["MMLorHTML.js"], + jax: ["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS","output/NativeMML"], + extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathMenu.js","MathZoom.js"], + TeX: { + extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] + } + }); + +In addition, it loads the mml Element Jax, the TeX, MathML, and +AsciiMath input jax main code (not just the definition files), as well +as the `toMathML` extension, which is used by the Show Source option +in the MathJax contextual menu. The `-full` version also loads both the +HTML-CSS and NativeMML output jax main code, plus the HTML-CSS +`mtable` extension, which is normally loaded on demand. + +See the :ref:`tex2jax configuration ` section for +other configuration options for the ``tex2jax`` preprocessor, and the +:ref:`TeX input jax configuration ` section for options +that control the TeX input processor. +See the :ref:`mml2jax configuration ` section for +other configuration options for the ``mml2jax`` preprocessor, and the +:ref:`MathML input jax configuration ` section for +options that control the MathML input processor. +See the :ref:`asciimath2jax configuration ` section for +other configuration options for the ``asciimath2jax`` preprocessor, and the +:ref:`AsciiMath input jax configuration ` section for +options that control the AsciiMath input processor. +See :ref:`MathJax Output Formats ` for more +information on the NativeMML and HTML-CSS output processors. See the +:ref:`MMLorHTML configuration ` section for +details on the options that control the ``MMLorHTML`` configuration. + + +The ``TeX-AMS-MML_HTMLorMML`` configuration file +================================================ + +This configuration file is the most commonly used of the pre-defined +configurations. It loads all the main MathJax components, including the TeX and MathML preprocessors and input processors, the AMSmath, AMSsymbols, noErrors, and noUndefined TeX extensions, both the native -MathML and HTML-with-CSS output processor definitions, and the MathMenu and -MathZoom extensions. It is equivalent to the following configuration: +MathML and HTML-with-CSS output processor definitions, and the +MathMenu and MathZoom extensions. It is equivalent to the following +configuration: .. code-block:: javascript @@ -58,12 +114,12 @@ MathZoom extensions. It is equivalent to the following configuration: } }); -In addition, it loads the mml Element Jax, the TeX and MathML input jax -main code (not just the definition files), as well as the `toMathML` -extension, which is used by the Show Source option in the MathJax -contextual menu. The full version also loads both the HTML-CSS and -NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which -is normally loaded on demand. +In addition, it loads the mml Element Jax, the TeX and MathML input +jax main code (not just the definition files), as well as the +`toMathML` extension, which is used by the Show Source option in the +MathJax contextual menu. The ``-full`` version also loads both the +HTML-CSS and NativeMML output jax main code, plus the HTML-CSS +`mtable` extension, which is normally loaded on demand. See the :ref:`tex2jax configuration ` section for other configuration options for the ``tex2jax`` preprocessor, and the @@ -106,7 +162,7 @@ extensions. It is equivalent to the following configuration: In addition, it loads the mml Element Jax and the TeX input jax main code (not just the definition file), as well as the `toMathML` extension, which -is used by the Show Source option in the MathJax contextual menu. The full +is used by the Show Source option in the MathJax contextual menu. The ``-full`` version also loads the HTML-CSS output jax main code, plus the HTML-CSS `mtable` extension, which is normally loaded on demand. @@ -123,7 +179,7 @@ The ``MML_HTMLorMML`` configuration file This configuration file is for sites that only use MathML format for their mathematics. It will use MathML output in browsers where that is -supported, and HTML-CSS output otherwise. The user can still use the +supported well, and HTML-CSS output otherwise. The user can still use the MathJax contextual menu to select the other output format if they desire. This file includes all the important MathJax components for MathML input @@ -142,7 +198,7 @@ and MathZoom extensions. It is equivalent to the following configuration: In addition, it loads the mml Element Jax and the MathML input jax main code (not just the definition file), as well as the `toMathML` extension, which is used by the Show Source option in the MathJax contextual menu. -The full version also loads both the HTML-CSS and NativeMML output jax main +The ``-full`` version also loads both the HTML-CSS and NativeMML output jax main code files, plus the HTML-CSS `mtable` extension, which is normally loaded on demand. @@ -156,13 +212,100 @@ information on the NativeMML and HTML-CSS output processors. See the details on the options that control the ``MMLorHTML`` configuration. +The ``AM_HTMLorMML`` configuration file +================================================ + +This configuration file is for sites that only use AsciiMath format for their +mathematics. It will use MathML output in browsers where that is +supported well, and HTML-CSS output otherwise. The user can still use the +MathJax contextual menu to select the other output format if they desire. + +This file includes all the important MathJax components for AsciiMath +input and output, including the `asciimath2jax` preprocessor and +AsciiMath input jax, the NativeMML and HTML-CSS output processor +definition files, and the MathMenu and MathZoom extensions. It is +equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + config: ["MMLorHTML.js"], + jax: ["input/AsciiMath","output/HTML-CSS","output/NativeMML"], + extensions: ["asciimath2jax.js","MathMenu.js","MathZoom.js"] + }); + +In addition, it loads the mml Element Jax and the TeX input jax main code +(not just the definition file), as well as the `toMathML` extension, which +is used by the Show Source option in the MathJax contextual menu. The ``-full`` +version also loads the HTML-CSS output jax main code, plus the HTML-CSS +`mtable` extension, which is normally loaded on demand. + +See the :ref:`asciimath2jax configuration ` +section for other configuration options for the ``asciimath2jax`` +preprocessor, and the :ref:`AsciiMath input jax configuration +` section for options that control the AsciiMath +input processor. See :ref:`MathJax Output Formats ` +for more information on the HTML-CSS and NativeMML output processors. +See the :ref:`MMLorHTML configuration ` section +for details on the options that control the ``MMLorHTML`` +configuration. + + +The ``TeX-AMS-MML_SVG`` configuration file +================================================ + +This configuration file is the same as `TeX-AMS-MML_HTMLorMML` except +that it uses the SVG output renderer rather than the NativeMML or +HTML-CSS ones. It loads all the main MathJax components, including +the TeX and MathML preprocessors and input processors, the AMSmath, +AMSsymbols, noErrors, and noUndefined TeX extensions, the SVG output +processor definitions, and the MathMenu and MathZoom extensions. It +is equivalent to the following configuration: + +.. code-block:: javascript + + MathJax.Hub.Config({ + jax: ["input/TeX","input/MathML","output/SVG"], + extensions: ["tex2jax.js","mml2jax.js","MathMenu.js","MathZoom.js"], + TeX: { + extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] + } + }); + +In addition, it loads the mml Element Jax, the TeX and MathML input +jax main code (not just the definition files), as well as the +`toMathML` extension, which is used by the Show Source option in the +MathJax contextual menu. The ``-full`` version also loads both the +SVG output jax main code, plus the SVG `mtable` extension, which +is normally loaded on demand. + +See the :ref:`tex2jax configuration ` section for +other configuration options for the ``tex2jax`` preprocessor, and the +:ref:`TeX input jax configuration ` section for options +that control the TeX input processor. +See the :ref:`mml2jax configuration ` section for +other configuration options for the ``mml2jax`` preprocessor, and the +:ref:`MathML input jax configuration ` section for +options that control the MathML input processor. +See :ref:`MathJax Output Formats ` for more +information on the SVG output processor. + + The ``Accessible`` configuration file ================================================ This configuration file is essentially the same as ``TeX-AMS-MML_HTMLorMML`` except that it includes options that are designed for assistive technology, particularly for those with visual -challenges. It is equivalent to the following configuration: +challenged. *This file is deprecated* since the controls that make +MathJax work with screen readers are now available in the MathJax +contextual menu, and so there is no need to set them in the +configuration file any longer. So you can use any of the other +pre-defined configurations and readers with special needs should be +able to change the MathJax settings themselves to be appropriate for +their software. + +The Accessible configuration is equivalent to the following: .. code-block:: javascript @@ -173,20 +316,24 @@ challenges. It is equivalent to the following configuration: TeX: { extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"] }, - NativeMML: { showMathMenuMSIE: false }, - menuSettings: { zoom: "Double-Click" }, + menuSettings: { + zoom: "Double-Click", + mpContext: true, + mpMouse: true + }, errorSettings: { message: ["[Math Error]"] } }); -This turns off the MathJax contextual menu for Internet Explorer, since -it can interfere with some screen readers. It also sets the zoom trigger +This turns off the MathJax contextual menu for IE when MathPlayer is +active, and passes mouse events on to MathPlayer to allow screen +readers full access to MathPlayer. It also sets the zoom trigger to double-click, so that readers can see a larger version of the mathematics but double-clicking on any equation. In addition, it loads the mml Element Jax, the TeX and MathML input jax main code (not just the definition files), as well as the `toMathML` extension, which is used by the Show Source option in the MathJax -contextual menu. The full version also loads both the HTML-CSS and +contextual menu. The ``-full`` version also loads both the HTML-CSS and NativeMML output jax main code, plus the HTML-CSS `mtable` extension, which is normally loaded on demand. diff --git a/docs/source/configuration.rst b/docs/source/configuration.rst index 290fbf48c..5685d7876 100644 --- a/docs/source/configuration.rst +++ b/docs/source/configuration.rst @@ -52,14 +52,14 @@ typical invocation of MathJax would be src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> -which loads MathJax with a configuration file that includes everything you -need in order to enter mathematics in either TeX, LaTeX, or MathML -notation, and produces output using MathML if the browser supports that, -or HTML-with-CSS otherwise. If you **don't** load an explicit -configuration file, you will need to include an in-line configuration -block in order to tell MathJax how to read and display the mathematics on -your pages. See the section below on :ref:`Using In-line Configuration -Options ` for details. +which loads MathJax with a configuration file that includes everything +you need in order to enter mathematics in either TeX, LaTeX, or MathML +notation, and produces output using MathML if the browser supports +that well enough, or HTML-with-CSS otherwise. If you **don't** load +an explicit configuration file, you will need to include an in-line +configuration block in order to tell MathJax how to read and display +the mathematics on your pages. See the section below on :ref:`Using +In-line Configuration Options ` for details. It is best to load MathJax in the document's ```` block, but it is also possible to load MathJax into the ```` section, if @@ -82,7 +82,7 @@ advanced topic, however; see :ref:`Loading MathJax Dynamically Loading MathJax from the CDN ============================ -MathJax is now available as a web service from ``cdn.mathjax.org``, so you +MathJax is available as a web service from ``cdn.mathjax.org``, so you can obtain MathJax from there without needing to install it on your own server. The CDN is part of a distributed "cloud" network, so it is handled by servers around the world. That means that you should get access @@ -100,19 +100,19 @@ get. The CDN has the following directory structure: mathjax/ # project-name 1.0-latest/ - 1.1-beta/ # temporary 1.1-latest/ # the 1.1 release with any ciritical patches + 2.0-beta/ # temporary + 2.0-latest/ # the 2.0 release with any ciritical patches ... - latest/ # the most current version (1.1-latest in this case) + latest/ # the most current version (2.0-latest in this case) Each directory corresponds to an official MathJax release; however, hotfixes (urgent bug fixes) will be applied in each release branch as necessary, even if new releases are not prepared. In other words, ``1.1-latest`` will initially point to v1.1, but over time may be updated with patches that would correspond to releases that might be numbers 1.1a, -1.1b, etc., even if such releases are not actually prepared for -distribution (they likely won't be). - +1.1b, etc., even if such releases are not actually packaged for +separate distribution (they likely won't be). We may occasionally introduce directories for betas, as indicated above, but they will be temporary, and will be removed after the official release. @@ -124,7 +124,7 @@ For example, -will load the stable v1.1 version, even if we release v1.2 or other later +will load the stable v1.1 version, even after we release v2.0 or other later versions, while .. code-block:: html @@ -132,7 +132,7 @@ versions, while will always be the most current stable release, so it will go from v1.1 to -v1.2 automatically when that is released. Note that all the versions +v2.0 automatically when that is released. Note that all the versions available on the CDN are stable versions; the development version is not hosted on the CDN. (If you wish to use the development version of MathJax, you will need to install your own copy; see :ref:`Installing @@ -143,8 +143,9 @@ The use of ``cdn.mathjax.org`` is governed by its `terms of service sure to read that before linking to the MathJax CDN server. If you wish to use the MathJax CDN but use your own configuration file -rather than one of the pre-defined ones, see the information at the end -of the :ref:`Using a configuration file ` section below. +rather than one of the pre-defined ones, see the information at the +end of the :ref:`Using a Local Configuration File +` section below. Configuring MathJax @@ -157,7 +158,7 @@ pre-defined configuration file, but include in-line commands to adjust the configuration to your needs. Note that you must use at least one of these two forms of configuration. -Unlike earlier versions of MathJax, version 1.1 does not load a default +Unlike MathJax v1.0, version 1.1 and higher does not load a default configuration file. If you have been using version 1.0's ``config/MathJax.js`` for your configuration, you will need to load that configuration file explicitly via a ``config`` parameter, as described @@ -180,28 +181,41 @@ stored in the ``MathJax/config`` directory. Among these are the following .. describe:: TeX-AMS-MML_HTMLorMML.js - Allows math to be specified in TeX, LaTeX, or MathML notation, with the - `AMSmath` and `AMSsymbols` packages included, producing output using - MathML if the browser supports it, and HTML-with-CSS otherwise. + Allows math to be specified in :term:`TeX`, :term:`LaTeX`, or + :term:`MathML` notation, with the `AMSmath` and `AMSsymbols` + packages included, producing output using MathML if the browser + supports it sufficiently, and HTML-with-CSS otherwise. .. describe:: TeX-AMS_HTML.js - Allows math to be specified in TeX or LaTeX notation, with the + Allows math to be specified in :term:`TeX` or :term:`LaTeX` notation, with the `AMSmath` and `AMSsymbols` packages included, and produces output using the HTML-CSS output processor. .. describe:: MML_HTMLorMML.js - Allows math to be specified using MathML notation, and produces MathML - output if the browser supports it, or HTML-CSS output otherwise. + Allows math to be specified using :term:`MathML` notation, and produces MathML + output if the browser supports it sufficiently, or HTML-CSS output otherwise. -.. describe:: Accessible.js +.. describe:: AM_HTMLorMML.js - Essentially the same as ``TeX-AMS-MML_HTMLorMML``, but with some - settings specified to make MathJax work better with assistive - technology (for the visually impaired). This includes setting the - zoom trigger to be a double-click, and removing the MathMenu in - Internet Explorer (which can interfere with some screen readers). + Allows math to be specified using :term:`AsciiMath` notation, + producing output in MathML if the browser supports it + sufficiently, or as HTML-with-CSS otherwise. + +.. describe:: TeX-AMS-MML_SVG.js + + Allows math to be specified in :term:`TeX`, :term:`LaTeX`, or + :term:`MathML` notation, with the `AMSmath` and `AMSsymbols` + packages included, producing output using SVG. + +.. describe:: TeX-MML-AM_HTMLorMML.js + + Allows math to be specified in :term:`TeX`, :term:`LaTeX`, + :term:`MathML`, or :term:`AsciiMath` notation, with the `AMSmath` + and `AMSsymbols` packages included, producing output using MathML + if the browser supports it sufficiently, and HTML-with-CSS + otherwise. The first of these is a file that you can edit to suit your needs. It contains nearly all the configuration options that MathJax allows, and has @@ -226,7 +240,7 @@ the main code, and a "full" version, that also includes the complete output processors. For example, with ``TeX-AMS_HTML.js`` and ``TeX-AMS_HTML-full.js``, the latter includes the complete HTML-CSS output processor. The "full" configuration files are substantially larger (on -the order of 70KB), so you need to decide whether it is worth loading the +the order of 70KB more), so you need to decide whether it is worth loading the full configuration for your pages. If most of your pages include mathematics, then it is to your advantage to @@ -271,8 +285,17 @@ can use to first load the main configuration, then the local modifications. -You can also load MathJax from the MathJax CDN server but use a configuration from -your own local server: + +.. _local-config-files: + +Using a local configuration file with the CDN +============================================= + +You can load MathJax from the MathJax CDN server but still use a +configuration from your own local server. For example, suppose you +have a configuration file called ``local.js`` on your own server, in a +directory called ``MathJax/config/local``. Then you can load MathJax +from the CDN and still use your configuration file as follows: .. code-block:: html @@ -285,7 +308,7 @@ the complete URL to the local configuration file. Note that you also have to edit the :meth:`loadComplete()` call that is at the bottom of the configuration file to change it from ``[MathJax]/config/local/local.js`` to the complete URL as you give it -in the ``config`` parameter: +in the ``config`` parameter. In the example above, it would be .. code-block:: javascript @@ -303,23 +326,24 @@ Using in-line configuration options =================================== The second way to configure MathJax is through `in-line configuration`, -that puts the configuration options within the web page itself. This -process has changed in version 1.1 to make it compatible with HTML5. +which puts the configuration options within the web page itself. This +process was changed in version 1.1 to make it compatible with HTML5. Earlier versions of MathJax had in-line configuration included within the content of the `` -in its footer, so that MathJax will delay setting up until the footer is -reached, but will not have to wait until images and other files are -loaded. If you have ``text/x-mathjax-config`` script tags within the main -body of the document, MathJax will read and process those before -continuing its startup. In this way you can use a default configuration -that can be modified on a page-by-page basis. +in its footer, so that MathJax will delay setting up until the footer +is reached, but will not have to wait until images and other files are +loaded. In this way, if you have ``text/x-mathjax-config`` script +tags within the main body of the document, MathJax will read and +process those before continuing its startup. In this way you can use +a default configuration that can be modified on a page-by-page basis. + +Note that :meth:`MathJax.Hub.Configured()` is not called by MathJax; +you must make that call somewhere within the page yourself after the +configuration blocks are set up. If you do not execute this function, +MathJax will not process any of the math on the page. Details of the MathJax configuration process ============================================ Since there are a number of different ways to configure MathJax, it is -important to know how they interact. The configuration process is the +important to know how they interact. The configuration actions are the following: 1. Process any configuration file explicitly specified as a script parameter. diff --git a/docs/source/glossary.rst b/docs/source/glossary.rst index 14e18cc93..6325bd82c 100644 --- a/docs/source/glossary.rst +++ b/docs/source/glossary.rst @@ -8,6 +8,16 @@ Glossary .. glossary:: + AsciiMath + A notation for mathematics that uses characters commonly + available on all computer keyboards to represent the math in + an algebra-like syntax that should be intuitive and easily + read. + + .. seealso:: + + `AsciiMath home page `_ + Callback A JavaScript function that is used to perform actions that must wait for other actions to complete before they are @@ -44,6 +54,18 @@ Glossary `LaTeX Wikipedia entry `_ + Markdown + A text format commonly used in blogs and wikis for creating + web pages without the need for complicated markup notation. + It is intended to be an easy-to-read and easy-to-write format + that still gives you the ability to specify a rich text result + (including things like bold, italics, bullet lists, and so + on). + + .. seealso:: + + `Markdown home page `_ + MathML An XML specification created to describe mathematical notations and capture both its structure and content. MathML @@ -62,6 +84,18 @@ Glossary `STIX project `_ + SVG + Acronym for `Scalable Vector Graphics`. SVG is a graphics + format that allows images to be described as a collection of + graphics objects (like lines, rectangles, etc) rather than as + a bitmap of colored pixels. MathJax can use this format to + display mathematics as an alterantive to its HTML-CSS or + NativeMML output. + + .. seealso:: + + `SVG Wilipedia entry `_ + TeX A document markup language with robust math markup commands developed by Donald Knuth in the late 1970's, but still in diff --git a/docs/source/index.rst b/docs/source/index.rst index 80df118de..6c940b0ae 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -2,8 +2,8 @@ MathJax Documentation ##################### -MathJax is an open-source JavaScript display engine for LaTeX and -MathML that works in all modern browsers. +MathJax is an open-source JavaScript display engine for LaTeX, +MathML, and AsciiMath notaion that works in all modern browsers. Basic Usage =========== @@ -24,6 +24,7 @@ Basic Usage MathJax TeX and LaTeX Support MathJax MathML Support + MathJax AsciiMath Support MathJax Output Formats .. toctree:: diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 97b518c6b..9ddf4f421 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -10,11 +10,12 @@ distributed network service (see :ref:`Using the MathJax CDN yourself, and you can begin using MathJax right away; skip this document on installation and go directly to :ref:`Configuring 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 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 with these tools. +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. 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 with these tools. .. _getting-mathjax-git: @@ -30,9 +31,9 @@ The easiest way to get MathJax and keep it up to date is to use the `Git git clone git://github.com/mathjax/MathJax.git MathJax -to obtain and set up a copy of MathJax. Note that there is no longer -a ``fonts.zip`` file, and that the ``fonts`` directory is now part of -the repository itself. +to obtain and set up a copy of MathJax. (Note that there is no longer +a ``fonts.zip`` file, as there was in v1.0, and that the ``fonts`` +directory is now part of the repository itself.) Whenever you want to update MathJax, you can now use @@ -123,11 +124,11 @@ latest revision using ``svn``, use the command .. code-block:: sh - svn checkout http://svn.github.com/mathjax/MathJax.git MathJax + svn checkout http://github.com/mathjax/MathJax/trunk MathJax -to obtain and set up a copy of MathJax. Note that there is no longer -a ``fonts.zip`` file, and that the ``fonts`` directory is now part of -the repository itself. +to obtain and set up a copy of MathJax. (Note that there is no longer +a ``fonts.zip`` file as of v1.1, and that the ``fonts`` directory is +now part of the repository itself.) Whenever you want to update MathJax, you can now use @@ -152,18 +153,17 @@ This gets you the current development copy of MathJax, which is the version that contains all the latest changes to MathJax. Although we try to make sure this version is a stable and usable version of MathJax, it is under active development, and at times it may be less stable than the "release" -version. If you prefer to use one of the tagged releases instead, then -either use ``git`` as described above, or one of the archive files as -described below. You can use +version. If you prefer to use one of the tagged releases instead, +then use .. code-block:: sh - svn checkout http://svn.github.com/mathjax/MathJax.git@nnn mathjax + svn checkout http://github.com/mathjax/MathJax/branch/[name] MathJax -to check out revision number `nnn`, but it is not easy to tell what -svn revision number is associated with a particular release. GitHub's -``svn`` service doesn't appear to allow you to specify a particular -tagged version. +where ``[name]`` is replaced by the name of the branch you want to +check out; e.g., ``2.0-latest``. The branch names can be found on the +`GitHub MathJax page `_ under the +`branches `_ tab. .. _getting-mathjax-zip: @@ -173,12 +173,12 @@ Obtaining MathJax via an archive Release versions of MathJax are available in archive files from the `MathJax download page `_ or the -`GitHub downloads `_ (click the -big download button on the right), where you can download the archive +`MathJax GitHub page `_ (via the +"zip" button, or the "downloads" tab), where you can download the archive that you need. -You should download the v1.1 archive (which will get you a file with a -name like ``mathjax-MathJax-v1.1-X-XXXXXXXX.zip``, where the X's are +You should download the v2.0 archive (which will get you a file with a +name like ``mathjax-MathJax-v2.0-X-XXXXXXXX.zip``, where the X's are some sequence of random-looking letters and numbers), 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 @@ -188,11 +188,10 @@ let you refer to the main MathJax file as ``/MathJax/MathJax.js`` from within any page on your server. From the `MathJax GitHub download link -`_ (the download button at the -right), you can also select the ``Download .tar.gz`` or ``Download -.zip`` buttons to get a copy of the current development version of -MathJax that contains all the latest changes and bug-fixes. You can -also get older tagged versions (if there are any). +`_, you can also select +the ``Download .tar.gz`` or ``Download .zip`` buttons to get a copy of +the current development version of MathJax that contains all the +latest changes and bug-fixes. If a packaged release receives any important updates, then those updates will be part of the `branch` for that version. The link to @@ -200,9 +199,8 @@ the ``.zip`` file in the download list will be the original release version, not the patched version. To obtain the patched version, use the `Branches` drop down menu (at the far left of the menus within the page) to select the release branch that you want (for example -``v1.1-latest``), and then use the download button and the ``Download -.tar.gz`` or ``Download .zip`` button to get the latest patched -version of that release. +``v2.0-latest``), and then use the "zip" button just above it to get +the latest patched version of that release. Testing your installation @@ -263,7 +261,7 @@ server `_. In the remote server's ``.htaccess`` that contains the following lines: :: - + Header set Access-Control-Allow-Origin "*" @@ -328,7 +326,7 @@ IE9 and remote fonts IE9's same-origin policy affects its ability to load web-based fonts, as described above. This has implications not ony to cross-domain loading of MathJax, but also to the case where you view a local page (with a -``file://`` URL) that accesses MathJax from a remote site, like the MathJax +``file://`` URL) that accesses MathJax from a remote site such as the MathJax CDN service. In this case, IE9 does **not** honor the ``Access-Control-Allow-Origin`` setting of the remote server (as it would if the web page came from an ``http://`` URL), and so it **never** allows the diff --git a/docs/source/mathjax.rst b/docs/source/mathjax.rst index c9dae62b2..836125c32 100644 --- a/docs/source/mathjax.rst +++ b/docs/source/mathjax.rst @@ -2,16 +2,17 @@ What is MathJax? **************** -MathJax is an open-source JavaScript display engine for LaTeX and -MathML that works in all modern browsers. It was designed with the -goal of consolidating the recent advances in web technologies into a -single, definitive, math-on-the-web platform supporting the major -browsers and operating systems. It requires no setup on the part of -the user (no plugins to downlaod or software to install), so the page -author can write web documents that include mathematics and be -confident that users will be able to view it naturally and easily. -One simply includes MathJax and some mathematics in a web page, and -MathJax does the rest. +MathJax is an open-source JavaScript display engine for LaTeX, MathML, +and AsciiMath notation that works in all modern browsers. It was +designed with the goal of consolidating the recent advances in web +technologies into a single, definitive, math-on-the-web platform +supporting the major browsers and operating systems, including those +on mobile devices. It requires no setup on the part of the user (no +plugins to download or software to install), so the page author can +write web documents that include mathematics and be confident that +users will be able to view it naturally and easily. One simply +includes MathJax and some mathematics in a web page, and MathJax does +the rest. MathJax uses web-based fonts (in those browsers that support it) to produce high-quality typesetting that scales and prints at full @@ -21,11 +22,12 @@ impaired. With MathJax, mathematics is text-based rather than image-based, and so it is available for search engines, meaning that your equations can be searchable, just like the text of your pages. MathJax allows page authors to write formulas using TeX and LaTeX -notation, or `MathML `_, a World Wide -Web Consortium standard for representing mathematics in XML format. -MathJax will even convert TeX notation into MathML, so that it can be -rendered more quickly by those browsers that support MathML natively, -or so that you can copy and paste it into other programs. +notation, `MathML `_, a World Wide Web +Consortium standard for representing mathematics in XML format, or +`AsciiMath `_ +notation. MathJax will even convert TeX notation into MathML, so that +it can be rendered more quickly by those browsers that support MathML +natively, or so that you can copy and paste it into other programs. MathJax is modular, so it loads components only when necessary, and can be extended to include new capabilities as needed. MathJax is diff --git a/docs/source/mathml.rst b/docs/source/mathml.rst index 8bcc40f79..415c56da6 100644 --- a/docs/source/mathml.rst +++ b/docs/source/mathml.rst @@ -20,10 +20,10 @@ displayed as MathML. Or you could use the `mml2jax` preprocessor and MathML input processor with the HTML-CSS output processor to make MathML available in browsers that don't have native MathML support. It is also possible to have MathJax select the output processor for -you so that MathML is used in those browsers that support it, while -HTML-CSS is used for those that don't. See the :ref:`common -configurations ` section for details and -examples. +you so that MathML is used in those browsers that support it well +enough, while HTML-CSS is used for those that don't. See the +:ref:`common configurations ` section for +details and examples. Of course it is also possible to use all three components together. It may seem strange to go through an internal format just to return to @@ -43,7 +43,7 @@ MathML in HTML pages ==================== For MathML that is handled via the preprocessor, you should not use -the named MathML entities, but rather use the numeric entities like +named MathML entities, but rather use numeric entities like ``√`` or unicode characters embedded in the page itself. The reason is that entities are replaced by the browser before MathJax runs, and some browsers report errors for unknown entities. For @@ -64,12 +64,16 @@ tags. That is, use rather than ````, since there is no closing tag, the rest of -the mathematics will become the content of the ```` tag; but -since ```` should have no content, the rest of the mathematics -will not be displayed. This is a common error that should be avoided. +(prior to HTML5) does not have self-closing tags, and some browsers +will get the nesting of tags wrong if you attempt to use them. For +example, with ````, since there is no closing +tag, the rest of the mathematics will become the content of the +```` tag; but since ```` should have no content, the +rest of the mathematics will not be displayed. This is a common error +that should be avoided. Modern browsers that support HTML5 should be +able to handle self-closing tags, but older browsers have problems +with them, so if you want your mathematics to be visible to the widest +audience, do not use the self-closing form in HTML documents. Supported MathML commands @@ -86,12 +90,12 @@ The deficiencies include: - No support for the elementary math tags: ``mstack``, ``mlongdiv``, ``msgroup``, ``msrow``, ``mscarries``, and ``mscarry``. -- Limited support for line breaking (they are only allowed in direct - children of ``mrow`` or implied ``mrow`` elements). - -- No support for alignment groups in table. +- No support for alignment groups in tables. - No support for right-to-left rendering. +- Not all attributes are supported for tables. E.g., ``columnspan`` + and ``rowspan`` are not implemented yet. + See the `results of the MathML3.0 test suite `_ for details. diff --git a/docs/source/options/AsciiMath.rst b/docs/source/options/AsciiMath.rst new file mode 100644 index 000000000..981815b72 --- /dev/null +++ b/docs/source/options/AsciiMath.rst @@ -0,0 +1,40 @@ +.. _configure-AsciiMath: + +***************************** +The AsciiMath input processor +***************************** + +The options below control the operation of the AsciiMath input +processor that is run when you include ``"input/AsciiMath"`` in the +`jax` array of your configuration or use a combined configuration file +that includes AsciiMath input. They are listed with their default +values. To set any of these options, include a ``AsciiMath`` section +in your :meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + AsciiMath: { + displaystyle: false + } + }); + +would set the ``displaystyle`` configuration option so that the limits +for operators like summation symbols will appear next to them rather +than above and below. + +.. describe:: displaystyle: true + + Determines whether operators like summation symbols will have + their limits above and below the operators (true) or to their + right (false). The former is how they would appear in displayed + equations that appear on their own lines, while the latter is + better suited to in-line equations so that they don't interfere + with the line spacing so much. + +.. describe:: decimal: "." + + This is the character to be used for decimal points in numbers. + if you change this to ``","``, then you need to be careful about + entering points or intervals. E.g., use ``(1, 2)`` rather than + ``(1,2)`` in that case. diff --git a/docs/source/options/asciimath2jax.rst b/docs/source/options/asciimath2jax.rst new file mode 100644 index 000000000..cb899efa7 --- /dev/null +++ b/docs/source/options/asciimath2jax.rst @@ -0,0 +1,110 @@ +.. _configure-asciimath2jax: + +****************************** +The asciimath2jax Preprocessor +****************************** + +The options below control the operation of the `asciimath2jax` preprocessor +that is run when you include ``"asciimath2jax.js"`` in the `extensions` array +of your configuration. They are listed with their default values. To +set any of these options, include a ``asciimath2jax`` section in your +:meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + asciimath2jax: { + delimiters: [['`','`'], ['$','$']] + } + }); + +would set the ASCIIMath delimiters for the `asciimath2jax` +preprocessor to include dollar signs as well as back-ticks. + + +.. describe:: delimiters: [['`','`']] + + Array of pairs of strings that are to be used as math + delimiters. The first in each pair is the initial delimiter and + the second is the terminal delimiter. You can have as many pairs + as you want. For example, + + .. code-block:: javascript + + inlineMath: [ ['$','$'], ['`','`'] ] + + would cause `asciimath2jax` to look for ``$...$`` and ```...``` as + delimiters for inline mathematics. (Note that the single dollar + signs are not enabled by default because they are used too + frequently in normal text, so if you want to use them for math + delimiters, you must specify them explicitly.) + + Note that the delimiters can't look like HTML tags (i.e., can't + include the less-than sign), as these would be turned into tags by + the browser before MathJax has the chance to run. You can only + include text, not tags, as your math delimiters. + +.. describe:: preview: "AsciiMath" + + This controls whether `asciimath2jax` inserts ``MathJax_Preview`` + spans to make a preview available, and what preview to use, when + it locates in-line or display mathematics in the page. The + default is ``"AsciiMath"``, which means use the ASCIIMath code as + the preview (which will be visible until it is processed by + MathJax). Set to ``"none"`` to prevent previews from being + inserted (the math will simply disappear until it is typeset). + Set to an array containing the description of an HTML snippet in + order to use the same preview for all equations on the page. + + Examples: + + .. code-block:: javascript + + preview: ["[math]"], // insert the text "[math]" as the preview + + .. code-block:: javascript + + preview: [["img",{src: "/images/mypic.jpg"}]], // insert an image as the preview + + See the :ref:`description of HTML snippets ` for + details on how to represent HTML code in this way. + +.. describe:: skipTags: ["script","noscript","style","textarea","pre","code"] + + This array lists the names of the tags whose contents should not + be processed by `asciimath2jax` (other than to look for + ignore/process classes as listed below). You can add to (or + remove from) this list to prevent MathJax from processing + mathematics in specific contexts. + +.. describe:: ignoreClass: "asciimath2jax_ignore" + + This is the class name used to mark elements whose contents should + not be processed by asciimath2jax (other than to look for the + ``processClass`` pattern below). Note that this is a regular + expression, and so you need to be sure to quote any `regexp` + special characters. The pattern is inserted into one that + requires your pattern to match a complete word, so setting + ``ignoreClass: "class2"`` would cause it to match an element with + ``class="class1 class2 class3"``. Note that you can assign + several classes by separating them by the vertical line character + (``|``). For instance, with ``ignoreClass: "class1|class2"`` + any element assigned a class of either ``class1`` or ``class2`` + will be skipped. + +.. describe:: processClass: "asciimath2jax_process" + + This is the class name used to mark elements whose contents + *should* be processed by `asciimath2jax`. This is used to restart + processing within tags that have been marked as ignored via the + ``ignoreClass`` or to cause a tag that appears in the ``skipTags`` + list to be processed rather than skipped. Note that this is a + regular expression, and so you need to be sure to quote any + `regexp` special characters. The pattern is inserted into one + that requires your pattern to match a complete word, so setting + ``processClass: "class2"`` would cause it to match an element with + ``class="class1 class2 class3"``. Note that you can assign + several classes by separating them by the vertical line character + (``|``). For instance, with ``processClass: "class1|class2"`` any + element assigned a class of either ``class1`` or ``class2`` will + have its contents processed. diff --git a/docs/source/options/index.rst b/docs/source/options/index.rst index 9d68d1b55..f73fca1ce 100644 --- a/docs/source/options/index.rst +++ b/docs/source/options/index.rst @@ -21,7 +21,7 @@ configuration if you do. The MathJax components, like the TeX input processor, have their own sections in the configuration object, labeled by the component name, -and using a configuration object as its value. The object is itself +and using an object as its value. That object is itself a configuration object made up of name-value pairs that give the configuration options for the component. @@ -70,6 +70,7 @@ are categorized by the component they affect. The tex2jax preprocessor options The mml2jax preprocessor options + The asciimath2jax preprocessor options The jsMath2jax preprocessor options .. toctree:: @@ -77,6 +78,7 @@ are categorized by the component they affect. The TeX input processor options The MathML input processor options + The AsciiMath input processor options The HTML-CSS output processor options The NativeMML output processor options The MMLorHTML configuration options diff --git a/docs/source/output.rst b/docs/source/output.rst index 2affa7edd..26d1e767f 100644 --- a/docs/source/output.rst +++ b/docs/source/output.rst @@ -4,24 +4,26 @@ MathJax Output Formats ********************** -Currently, MathJax can render math in two ways: +Currently, MathJax can render math in three ways: -- Using HTML-with-CSS to lay out the mathematics, or +- Using HTML-with-CSS to lay out the mathematics, +- Using :term:`SVG` to lay out the mathematics, or - Using a browser's native MathML support. -These are implemented by the `HTML-CSS` and `NativeMML` output +These are implemented by the `HTML-CSS`, `SVG` and `NativeMML` output processors. If you are using one of the combined configuration files, then this will select one of these output processors for you. If the config file ends in -``_HTML``, then it is the HTML-CSS output processor, and if it ends in +``_HTML``, then it is the HTML-CSS output processor, and if it ends in +``_SVG`` then the SVG output processor will be used. If it ends in ``_HTMLorMML``, then the NativeMML output processor will be chosen if the -browser supports it, otherwise HTML-CSS output will be used. +browser supports it well enough, otherwise HTML-CSS output will be used. -If you are performing your own in-line or file-based configuration, you -select which one you want to use by including either ``"output/HTML-CSS"`` -or ``"output/NativeMML"`` in the `jax` array of your MathJax configuration. -For example +If you are performing your own in-line or file-based configuration, +you select which one you want to use by including either +``"output/HTML-CSS"``, ``"output/SVG"``, or ``"output/NativeMML"`` in +the `jax` array of your MathJax configuration. For example .. code-block:: javascript @@ -34,35 +36,57 @@ The HTML-CSS output processor produces high-quality output in all major browsers, with results that are consistent across browsers and operating systems. This is MathJax's primary output mode. Its major advantage is its quality and consistency; its drawback is that it is -slower than the NativeMML mode at rendering the mathematics. (The -HTML-CSS processor has not yet been optimized for speed, so you can -expect some improvement in the future. Note that IE8 in "IE8 -standards mode" is an order of magnitude slower than any other browser -when processing math through the HTML-CSS output processor; see -:ref:`HTML-CSS with IE8 ` below for some strategies -to deal with this.) +slower than the NativeMML mode at rendering the mathematics. +Historically, the performance in Internet Explorer (and IE8 in +particular) was quite poor, with the page getting slower and slower as +more math is processed. MathJax version 2.0 includes a number of +optimizations to improve the display performance in IE, and it is now +more comparable to other browsers. The HTML-CSS output uses web-based +fonts so that users don't have to have math fonts installed on their +computers; but this does introduce some printing issues in some +browsers. -The NativeMML output processor uses the browser's internal MathML support (if -any) to render the mathematics. Currently, Firefox has native support -for MathML, and IE has the `MathPlayer plugin +The SVG output processor is new in MathJax version 2.0, and it uses +`Scalable Vector Graphics` to render the mathematics on the page. SVG +is supported in all the major browsers and most mobile devices; note, +however, that Internet Explorer prior to IE9 does not support SVG, and +IE9 only does in "IE9 standards mode", not its emulation modes for +earlier versions. The SVG output mode is high quality and slightly +faster than HTML-CSS, and it does not suffer from some of the +font-related issues that HTML-CSS does, so prints well in all +browsers. This format also works well in some ebook readers (e.g., +iBooks). The disadvantage of this mode is that it does not take +advantage of STIX fonts, and so only has access to the characters in +the web-based fonts, and it variable-width tables become fixed size +once they are typeset, and don't rescale if the window size changes +(for example). Since equation numbers are handled through +variable-width tables, that means equation numbers may not stay at the +edge of the window if it is resized. + +The NativeMML output processor uses the browser's internal MathML +support (if any) to render the mathematics. Currently, Firefox has +native support for MathML, and IE has the `MathPlayer plugin `_ for rendering MathML. Opera has some built-in support for MathML that works well with simple equations, but fails with more complex formulas, so we -don't recommend using the NativeMML output processor with Opera. Safari, +don't recommend using the NativeMML output processor with Opera. +Safari has some support for MathML since version 5.1, but the quality +is not as high as either Firefox's implementation or IE with MathPlayer. Chrome, Konqueror, and most other browsers don't support MathML -natively, but may in the future, since MathML is part of the HTML5 +natively, but may in the future, since MathML is part of the HTML5 specification. -The advantage of the NativeMML output Processor is its speed, since native -MathML support is much faster than using complicated HTML and CSS to lay -out mathematics, as the HTML-CSS output processor does. The disadvantage -is that you are dependent on the browser's MathML implementation for your -rendering, and these vary in quality of output and completeness of -implementation. MathJax may rely on features that are not available in -some renderers (for example, Firefox's MathML support does not implement -some of the named widths, such as ``negativethinmathspace``). The results -using the NativeMML output processor may have spacing or other rendering -problems that are outside of MathJax's control. +The advantage of the NativeMML output Processor is its speed, since +native MathML support is much faster than using complicated HTML and +CSS to lay out mathematics, as the HTML-CSS output processor does. +The disadvantage is that you are dependent on the browser's MathML +implementation for your rendering, and these vary in quality of output +and completeness of implementation. MathJax relies on features that +are not available in some renderers (for example, Firefox's MathML +support does not implement the features needed for labeled equations). +The results using the NativeMML output processor may have spacing or +other rendering problems that are outside of MathJax's control. + Automatic Selection of the Output Processor =========================================== @@ -70,9 +94,10 @@ Automatic Selection of the Output Processor Since not all browsers support MathML natively, it would be unwise to choose the NativeMML output processor unless you are sure of your audience's browser capabilities. MathJax can help with that, however, -since a number of its combined configuration files will select NativeMML -output when the browser supports it, and HTML-CSS output otherwise. These -are the configuration files that end in ``_HTMLorMML``. +since a number of its combined configuration files will select +NativeMML output when the browser supports it well enough, and +HTML-CSS output otherwise. These are the configuration files that end +in ``_HTMLorMML``. If you are doing your own configuration, there is a special configuration file that you can include that will choose between NativeMML and HTML-CSS @@ -86,28 +111,37 @@ the abilities of your user's browser. config: ["MMLorHTML.js"], jax: ["input/TeX"] -You can customize which choice to make on a browser-by-browser basis -or a global basis. See the ``config/default.js`` file or the + +By default, MathJax will choose HTML-CSS in all browsers except for +one case: Internet Explorer when the MathPlayer plugin is present. +In the past, MathJax selected NativeMML output for Firefox as well, +but we have found that there are too many rendering issues with +Firefox's native MathML implementation, and so MathJax now selects +HTML-CSS output for Firefox by default as well. Users can still use +the Mathjax contextual menu to select the NativeMML renderer if they +wish to choose greater speed at the expense of some quality. + +You can customize which choice MathJax makes on a browser-by-browser +basis or a global basis. See the ``config/default.js`` file or the :ref:`Configuring MMLorHTML ` section for further -details. As an example, this configuration tells MathJax to use HTML-CSS -output rather than native MathML support for Firefox: +details. As an example, this configuration tells MathJax to use +native MathML support rather than HTML-CSS output for Firefox: .. code-block:: html -With this configuration, MathML output will be used only for IE with the -MathPlayer plugin (Firefox is the only other browser to have native MathML -support that is sufficient for use with MathJax). Note, however, that a -user can employ the MathJax contextual menu to select the other renderer if -he or she wishes. +With this configuration, MathML output will be used for both Firefox +and IE with the MathPlayer plugin. Note, however, that a user can +employ the MathJax contextual menu to select the other renderer if he +or she wishes. MathJax produces MathML that models the underlying mathematics as best it can, rather than using complicated hacks to improve output for a @@ -119,41 +153,29 @@ be taken lightly. .. _html-css-with-ie8: -HTML-CSS with IE8 -================= +HTML-CSS with IE8 and IE9 +========================= -Internet Explorer 8 has at least eight different rendering modes in which -it can operate, and that are triggered by the `DOCTYPE` of the document -being viewed. Its "quirks" mode is its fastest mode, and its "IE8 -standards" mode is its slowest. This is the mode triggered by strict HTML -document types, and since most modern content management systems now -include a `DOCTYPE` that activates "standards" mode, IE8 will operate in -its slowest manner. This is particularly apparent when MathJax is used, -since IE8 in standards mode runs 20 to 30 times slower than it does in its -IE7 emulation mode, and 60 times slower than in quirks mode, on the sample -equations page in ``test/sample.html``. +The performance of MathJax in Internet Explorer 8 and 9 has been +substantially improved in version 2.0. The HTML-CSS output processing +was redesigned to avoid the page reflows that were the main source of +the speed problem in I8 and IE9. For test pages having between 20 and +50 typeset expressions, we see an 80% reduction in output processing +time for IE8, a 50% reduction for IE9, and between 15% and 25% +reduction for most other browsers over the v1.1a times. Since the +processing time in v1.1a grows non-linearly in IE, you should see even +larger savings for pages with more equations when using v2.0. -Most users find this speed reduction unacceptable when there is much -mathematics on the page. To overcome this problem, you may wish to -tell IE8 to use its IE7 emulation mode rather than its IE8 standards -mode. You can accomplish this by including the line +In the past, we recommended forcing IE8 and IE9 into IE7-emulation +mode in order to get better performance. That is no longer necessary. +Indeed, the fastest modes in IE8 and IE9 now are their IE8 standards +and IE9 standards modes, so it is best to force the highest mode +possible. That can be accomplished by adding .. code-block:: html - + -at the top of the ```` section of your HTML documents. This -lets you keep the strict `DOCTYPE` for validation purposes, while -still managing to get reasonable performance from Internet Explorer -8. Note that this line must come at the beginning of the ````, -before any stylesheets or other content are loaded. - -Alternatively, you can use the `MMLorHTML` configuration file -described above to select NativeMML output when possible, and request -that your users install the `MathPlayer plugin -`_, which will render -the mathematics much more quickly. - -It appears that IE9 in IE9 standards mode may perform better than IE8, but -since IE9 is still in beta testing as of this writing, we have yet to see -exactly what the performance of MathJax in IE9 will be like. +at the top of the ```` section of your HTML documents. Note +that this line must come at the beginning of the ````, before +any stylesheets, scripts, or other content are loaded. diff --git a/docs/source/platforms/index.rst b/docs/source/platforms/index.rst index 4976868c8..0f0b3b23f 100644 --- a/docs/source/platforms/index.rst +++ b/docs/source/platforms/index.rst @@ -4,15 +4,16 @@ Using MathJax in popular web platforms ====================================== -MathJax plugins are available for a growing number of wikis, blogs, and -other content-management systems. These include WordPress, Blogger, -Sphinx, TiddlyWiki, and MathEL-Wiki. A list of these is available in the -`web applications and integrations -`_ list of the +MathJax plugins are available for a growing number of wikis, blogs, +and other content-management systems. These include WordPress, +Blogger, Sphinx, TiddlyWiki, and MathEL-Wiki. A list of these is +available in the `web applications +`_ list of the `MathJax web site `_. If the program you are using is not one of these, you may still be able to -use MathJax by modifying the theme or template for your wiki or blog. +use MathJax by modifying the theme or template for your wiki or blog, +as explained below. Using MathJax in a Theme File diff --git a/docs/source/start.rst b/docs/source/start.rst index 8109dd73e..c484bbc42 100644 --- a/docs/source/start.rst +++ b/docs/source/start.rst @@ -5,15 +5,15 @@ Getting Started *************** MathJax allows you to include mathematics in your web pages, either -using TeX and LaTeX notation, or as MathML, and you can even use both -in the same document. +using TeX and LaTeX notation, MathML, or AsciiMath notation, and you +can even use all three in the same document. There are two ways to access MathJax: the easiest way is to use the copy of MathJax available from our distributed network service at ``cdn.mathjax.org``, but you can also download and install a copy of -MathJax on your own server, or for use locally on your own hard disk -(with no need for network access). Both of these are described below, -with links to more detailed explanations. This page gives the +MathJax on your own server, or use it locally on your own hard disk +(with no need for network access). All three of these are described +below, with links to more detailed explanations. This page gives the quickest and easiest ways to get MathJax up and running on your web site, but you may want to read the details in order to customize the setup for your pages. @@ -43,12 +43,13 @@ into the ```` block of your document. (It can also go in the load the latest version of MathJax from the distributed server, and configure it to recognize mathematics in both TeX and MathML notation, and ask it to generate its output using MathML if the browser supports -that, and otherwise use HTML-with-CSS to display the mathematics. -This is the most general configuration, and should suffice for most -people's needs. Other configurations are available, however, and you -can also provide additional configuration parameters to taylor one of -the configurations to your needs. More details can be found in the -:ref:`Loading and Configuring MathJax ` instructions. +that well enough, and otherwise use HTML-with-CSS to display the +mathematics. This is one of the most general configurations, and +should suffice for most people's needs. Other configurations are +available, however, and you can also provide additional configuration +parameters to taylor one of the configurations to your needs. More +details can be found in the :ref:`Loading and Configuring MathJax +` instructions. The use of ``cdn.mathjax.org`` is governed by its `terms of service `_, so be @@ -68,7 +69,7 @@ and replace it. This is sometimes called a `man-in-the-middle `_ attack. To prevent such attacks, it is necessary to access the MathJax CDN -over a secure HTTPS connection. This can be easily done by using the +over a secure HTTPS connection. This can be done easily by using the following `` Currently, the Amazon Cloudfront service used by the MathJax CDN does -not support the use of a human-friendly name like cdn.mathjax.org for -secure connections. However, this address is stable and safe to use. +not support the use of a human-friendly name like ``cdn.mathjax.org`` +for secure connections; however, the address given above is stable and +safe to use. Installing Your Own Copy of MathJax @@ -89,7 +91,8 @@ We recommend using the CDN service if you can, but you can also install MathJax on your own server, or locally on your own hard disk. To do so you will need to do the following things: -1. Obtain a copy of MathJax and make it available on your server. +1. Obtain a copy of MathJax and make it available on your server or +hard disk. 2. Configure MathJax to suit the needs of your site. @@ -108,8 +111,8 @@ should obtain a file named something like ``mathjax-MathJax-v1.1-X-XXXXXXXX.zip``, where the X's are random-looking letters and numbers). This archive includes both the MathJax code and the MathJax webfonts, so it is the only file you -need. Note that this is different from earlier releases, which had -the fonts separate from the rest of the code. +need. Note that this is different from v1.0 and earlier releases, +which had the fonts separate from the rest of the code. Unpack the archive and place the resulting MathJax folder onto your web server at a convenient location where you can include it into your @@ -118,7 +121,7 @@ your server would be one natural way to do this. That would let you refer to the main MathJax file via the URL ``/MathJax/MathJax.js`` from within any page on your server. -Note: While this is the easiest way to set up MathJax initially, there +**Note:** While this is the easiest way to set up MathJax initially, there is a better way to do it if you want to be able to keep your copy of MathJax up-to-date. That uses the `Git `_ version control system, and is described in the :ref:`Installing MathJax @@ -128,17 +131,18 @@ of MathJax (see :ref:`Installing MathJax via SVN `). Once you have MathJax set up on your server, you can test it using the -files in the ``MathJax/test`` directory. Load them in your browser -using its web address rather than opening them locally (i.e., use an -``http://`` URL rather than a ``file://`` URL). When you view the -``index.html`` file, after a few moments you should see a message -indicating that MathJax appears to be working. If not, check that the -files have been transferred to the server completely and that the -permissions allow the server to access the files and folders that are -part of the MathJax directory. (Be sure to verify the MathJax -folder's permissions as well.) Check the server log files for any -errors that pertain to the MathJax installation; this may help locate -problems in the permission or locations of files. +files in the ``MathJax/test`` directory. If you are putting MathJax +on a server, load them in your browser using their web addresses +rather than opening them locally (i.e., use an ``http://`` URL rather +than a ``file://`` URL). When you view the ``index.html`` file, after +a few moments you should see a message indicating that MathJax appears +to be working. If not, check that the files have been transferred to +the server completely and that the permissions allow the server to +access the files and folders that are part of the MathJax directory. +(Be sure to verify the MathJax folder's permissions as well.) Check +the server log files for any errors that pertain to the MathJax +installation; this may help locate problems in the permission or +locations of files. Configuring your copy of MathJax @@ -147,11 +151,12 @@ Configuring your copy of MathJax When you include MathJax into your web pages as described below, it will load the file ``config/TeX-AMS-MML_HTMLorMML.js`` (i.e., the file named ``TeX-AMS-MML_HTMLorMML.js`` in the ``config`` folder of the -main ``MathJax`` folder). This file preloads all the most commonly-used -components of MathJax, allowing it to process mathematics that is in -the TeX or LaTeX format, or in MathML notation. It will produce -output in MathML form if the user's browser supports that, and will use -HTML-with-CSS to render the mathematics otherwise. +main ``MathJax`` folder). This file preloads all the most +commonly-used components of MathJax, allowing it to process +mathematics that is in the TeX or LaTeX format, or in MathML notation. +It will produce output in MathML form if the user's browser supports +that sufficiently, and will use HTML-with-CSS to render the +mathematics otherwise. There are a number of other prebuilt configuration files that you can choose from as well, or you could use the ``config/default.js`` file and @@ -160,11 +165,11 @@ described more fully in :ref:`Common Configurations `, and the configuration options are described in :ref:`Configuration Options `. -Note: The configuration process has changed in MathJax v1.1, so if you have -existing pages that use MathJax, you may need to modify the tag that -loads MathJax so that it conforms with the new configuration process. -See :ref:`Installing and Configuring MathJax ` for more -details. +Note: The configuration process changed between MathJax v1.0 and v1.1, +so if you have existing pages that use MathJax v1.0, you may need to +modify the tag that loads MathJax so that it conforms with the new +configuration process. See :ref:`Installing and Configuring MathJax +` for more details. Linking your copy of MathJax into a web page @@ -210,13 +215,15 @@ of MathJax. Putting mathematics in a web page ================================= -To put mathematics in your web page, you can use either :term:`TeX` -and :term:`LaTeX` notation or :term:`MathML` notation or both within -the same page; the MathJax configuration tells MathJax which you want -to use, and how you plan to indicate the mathematics when you are -using TeX notation. The configuration file used in the examples above -tells MathJax to look for both TeX and MathML notation within your -pages. These two formats are described in more detail below. +To put mathematics in your web page, you can use :term:`TeX` and +:term:`LaTeX` notation, :term:`MathML` notation, :term:`AsciiMath` +notation, or a combination of all three within the same page; the +MathJax configuration tells MathJax which you want to use, and how you +plan to indicate the mathematics when you are using TeX notation. The +configuration file used in the examples above tells MathJax to look +for both TeX and MathML notation within your pages. Other +configuration files tell MathJax to use AsciiMath input. These three +formats are described in more detail below. .. _tex-and-latex-input: @@ -258,10 +265,14 @@ options ` page, for additional configuration parameters that you can specify for the `tex2jax` preprocessor, which is the component of MathJax that identifies TeX notation within the page. See the :ref:`TeX and LaTeX ` page for -more on MathJax's support for TeX. +more on MathJax's support for TeX, and in particular how to deal with +single dollar signs in your text when you have enabled single +dollar-sign delimiters. -Here is a complete sample page containing TeX mathematics (also available -in the ``test/sample-tex.html`` file): +Here is a complete sample page containing TeX mathematics (also +available in the `test/sample-tex.html +`_ +file): .. code-block:: html @@ -290,6 +301,16 @@ a tag in HTML. Putting a space on both sides of the less-than sign should be sufficient, but see :ref:`TeX and LaTeX support ` for details. +If you are using MathJax within a blog, wiki, or other content +management system, the markup language used by that system may +interfere with the TeX notation used by MathJax. For example, if your +blog uses :term:`Markdown` notation for authoring your pages, the +underscores used by TeX to indicate subscripts may be confused with +the use of underscores by Markdown to indicate italics, and the two +uses may prevent your mathematics from being displayed. See :ref:`TeX +and LaTeX support ` for some suggestions about how to +deal with the problem. + There are a number of extensions for the TeX input processor that are loaded by the ``TeX-AMS-MML_HTMLorMML`` configuration. These include: @@ -305,9 +326,13 @@ loaded by the ``TeX-AMS-MML_HTMLorMML`` configuration. These include: - `TeX/noUndefined.js`, which prevents undefined macros from producing an error message, and instead shows the macro name in red. -Other extensions may be loaded automatically when needed. +Other extensions may be loaded automatically when needed. See +:ref:`TeX and LaTeX support ` for details on the other +TeX extensions that are available. +.. _mathml-input: + MathML input ------------ @@ -321,10 +346,21 @@ works with both), and that the web page need not be served with any special MIME-type. Also note that, unless you are using XHTML rather than HTML, you should not include a namespace prefix for your ```` tags; for example, you should not use ```` except -in a file where you have tied the ``m`` namespace to the MathML DTD. +in a file where you have tied the ``m`` namespace to the MathML DTD by +adding the ``xmlns:m="http://www.w3.org/1998/Math/MathML"`` attribtue +to your file's ```` tag. -Here is a complete sample page containing MathML mathematics (also -available in the ``test/sample-mml.html`` file): +Although it is not required, it is recommended that you include the +``xmlns="http://www.w3.org/1998/Math/MathML"`` attribute on all +```` tags in your document (and this is preferred to the use of +a namespace prefix like ``m:`` above, since those are deprecated in +HTML5) in order to make your MathML work in the widest range of +situations. + +Here is a complete sample page containing MathML mathematics (also +available in the `test/sample-mml.html +`_ +file): .. code-block:: html @@ -338,13 +374,19 @@ available in the ``test/sample-mml.html`` file): - When a0, - there are two solutions to +

    + When + + a0 + , + there are two solutions to + ax2 + bx + c = 0 - and they are - + + and they are + x = @@ -363,6 +405,7 @@ available in the ``test/sample-mml.html`` file): . +

    @@ -374,20 +417,66 @@ should use .. code-block:: html - + -rather than ```` in an HTML document. If you use the -self-closing form, some browsers will not build the math tree properly, and -MathJax will receive a damaged math structure, which will not be rendered -as the original notation would have been. Unfortunately, there is nothing -MathJax can do about that, since the browser has incorrectly interpreted -the tags long before MathJax has a chance to work with them. +rather than ```` in an HTML document. If you +use the self-closing form, some browsers will not build the math tree +properly, and MathJax will receive a damaged math structure, which +will not be rendered as the original notation would have been. +Typically, this will cause parts of your expression to not be +displayed. Unfortunately, there is nothing MathJax can do about that, +since the browser has incorrectly interpreted the tags long before +MathJax has a chance to work with them. + +The component of MathJax that recognizes MathML notation within the +page is called the `mml2jax` extension, and it has only a few +configuration options; see the ``config/default.js`` file or the +:ref:`mml2jax configuration options ` page for more +details. See the :ref:`MathML ` page for more on +MathJax's MathML support. + + +.. _asciimath-input: + +AsciiMath input +--------------- + +MathJax v2.0 includes a new input format: :term:`AsciiMath` notation. +For mathematics written in this form, you mark your mathematical +expressions by surrounding them in "back-ticks", i.e., ```...```. + +Here is a complete sample page containing AsciiMath notation (also +available in the `test/sample-asciimath.html +`_ +file): + +.. code-block:: html + + + + + MathJax AsciiMath Test Page + + + + +

    When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and + they are

    +

    + `x = (-b +- sqrt(b^2-4ac))/(2a) .` +

    + + + + +The component of MathJax that recognizes asciimath notation within the +page is called the `asciimath2jax` extension, and it has only a few +configuration options; see the ``config/default.js`` file or the +:ref:`asciimath2jax configuration options ` page for more +details. See the :ref:`AsciiMath support ` page for more on +MathJax's AsciiMath support. -The component of MathJax that recognizes MathML notation is called the -`mml2jax` extension, and it has only a few configuration options; see the -``config/default.js`` file or the :ref:`mml2jax configuration options -` page for more details. See the :ref:`MathML -` page for more on MathJax's MathML support. Where to go from here? diff --git a/docs/source/tex.rst b/docs/source/tex.rst index 5bf2e8324..7452360b0 100644 --- a/docs/source/tex.rst +++ b/docs/source/tex.rst @@ -81,7 +81,7 @@ TeX and LaTeX in HTML documents Keep in mind that your mathematics is part of an HTML document, so you need to be aware of the special characters used by HTML as part of its markup. There cannot be HTML tags within the math delimiters (other -than ``
    ``) as TeX-formatted math does not include HTML tags. +than ``
    ``) as TeX-formatted math does not include HTML tags. Also, since the mathematics is initially given as text on the page, you need to be careful that your mathematics doesn't look like HTML tags to the browser (which parses the page before MathJax gets to see @@ -129,6 +129,151 @@ easier to enter ``<`` and ``>`` using TeX-like syntax: Keep in mind that the browser interprets your text before MathJax does. +Another source of difficulty is when MathJax is used in content +management systems that have their own document processing commands +that are interpreted before the HTML page is created. For example, +many blogs and wikis use formats like :term:`Markdown` to allow you to +create the content of you pages. In Markdown, the underscore is used +to indicate italics, and this usage will conflict with MathJax's ise +of the underscore to indicate a subscript. Since Markdown is applied +to the page first, it will convert your subscripts markers into +italics (inserting ```` tags into your mathematics, which will +cause MathJax to ignore the math). + +Such systems need to be told not to modify the mathematics that +appears between math delimiters. That usually involves modifying the +content-management system itself, which is beyond the means of most +page authors. If you are lucky, someone else will already have done +this for you, and you can find a MathJax plugin for your system on the +`MathJax-In-Use page +`_ page. + +If there is no plugin for your system, or if it doesn't handle the +subtleties of issolating the mathematics from the other markup that it +supports, then you may have to "trick" it into leaving your +mathematics untouched. Most content-management systems provide some +means of indicating text that should not be modified ("verbatim" +text), often for giving code snippets for computer languages. +You may be use that to enclose your mathematics so that the system +leaves it unchanged and MathJax can process it. For example, in +Markdown, the back-tick (`````) is used to mark verbatim text, so + +.. code-block:: latex + + ... we have `\(x_1 = 132\)` and `\(x_2 = 370\)` and so ... + +may be able to protect the underscores from being processed by +Markdown. + +Some content-management systems use the backslash (``\``) as a special +character for "escaping" other characters, but TeX uses this character +to indicate a macro name. In such systems, you may have to double the +backslashes in order to obtain a single backslash in your HTML page. +For example, you may have to do + +.. code-block:: latex + + \\begin{array}{cc} + a & b \\\\ + c & c + \\end{array} + +to get an array with the four entries *a*, *b*, *c*, and *d*. Note in +particular that if you want ``\\`` you will have to double *both* +backslashes, giving ``\\\\``. + +Finally, if you have enabled single dollar-signs as math delimiters, +and you want to include a literal dollar sign in your web page (one +that doesn't represent a math delimiter), you will need to prevent +MathJax from using it as a math delimiter. If you also enable the +``processEscapes`` configuration parameter, then you can use ``\$`` in +the text of your page to get a dollar sign (without the backslash) in +the end. Alternatively, you use something like +``$`` to isolate the dollar sign so that +MathJax will not use it as a delimiter. + + +.. _tex-macros: + +Defining TeX macros +=================== + +You can use the ``\def``, ``\newcommand``, ``\renewcommand``, +``\newenvironment``, ``\renewenvironment``, and ``\let`` commands to +create your own macros and environments. Unlike actual TeX, however, +in order for MathJax to process these, they must be enclosed in math +delimiters (since MathJax only processes macros in math-mode). For +example + +.. code-block:: latex + + \( + \def\RR{\bf R} + \def\bold#1{\bf #1} + \) + +would define ``\RR`` to produce a bold-faced "R", and ``\bold{...}`` +to put its argument into bold face. Both definitions would be +available throughout the rest of the page. + +You can include macro definitions in the `Macros` section of the `TeX` +blocks of your configuration, but they must be represetned as +JavaScript objects. For example, the two macros above can be +pre-defined in the configuraiton by + +.. code-block:: javascript + + MathJax.Hub.Config({ + TeX: { + Macros: { + RR: "{\\bf R}", + bold: ["{\\bf #1}",1] + } + } + }); + +Here you give the macro as a `name:value` pair, where the `name` +is the name of the control sequence (without the backslash) that you +are defining, and `value` is either the replacement string for the +macro (when there are no arguments) or an array consisting of the +replacement string followed by the number of arguments for the macro. + +Note that the replacement string is given as a JavaScript string +literal, and the backslash has special meaning in JavaScript strings. +So to get an actual backslash in the string you must double it, as int +he examples above. + +If you have many such definitions that you want to use on more than +one page, you could put them into a configuration file that you can +load along with the main configuration file. For example, you could +create a file in ``MathJax/config/local`` called ``local.js`` that +contains your macro definitions: + +.. code-block:: javascript + + MathJax.Hub.Config({ + TeX: { + Macros: { + RR: "{\\bf R}", + bold: ["{\\bf #1}",1] + } + } + }); + + MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js"); + +and then load it along with your main configuration file on the script +that loads ``MathJax.js``: + +.. code-block:: html + + + +If you are using the CDN, you can make a local configuration file on +your own server, and load MathJax itself from the CDN and your +configuration file from your server. See :ref:`Using a Local +Configuration File with the CDN ` for details. + .. _tex-extensions: @@ -165,7 +310,53 @@ script prior to loading MathJax. For example will load the `autobold` TeX extension in addition to those already included in the ``TeX-AMS_HTML`` configuration file. -The main extensions are described below. +You can also load these extensions from within a math expresion using +the non-standard ``\require{extension}`` macro. For example + +.. code-block:: latex + + \(\require{color}\) + +would load the `color` extension into the page. This way you you can +load extensions into pages that didn't load them in their +configurations (and prevents you from having to load all the +extensions into all pages even if they aren't used). + +The main extensions are described below. + + +Action +------ + +The `action` extension gives you access to the MathML ```` +element. It defines three new non-standard macros: + +.. describe:: \\mathtip{math}{tip} + + Use ``tip`` (in math mode) as tooltip for ``math``. + +.. describe:: \\texttip{math}{tip} + + Use ``tip`` (in text mode) as tooltip for ``math``. + +.. describe:: \\toggle{math1}{math2}...\\endtoggle + + Show ``math1``, and when clicked, show ``math2``, and so on. + When the last one is clicked, go back to math1. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["action.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + AMSmath and AMSsymbols ---------------------- @@ -208,6 +399,295 @@ appears in a section of an HTML page that is in bold. This extension is **not** loaded by the combined configuration files. +BBox +---- + +The `bbox` extension defines a new macro for adding background colors, +borders, and padding to your math expressions. + +.. describe:: \\bbox[options]{math} + + puts a bounding box around ``math`` using the provided ``options``. + The options can be one of the following: + + 1. A color name used for the background color. + 2. A dimension (e.g., ``2px``) to be used as a padding around the + mathematics (on all sides). + 3. Style attributes to be applied to the mathematics (e.g., + ``border:1px solid red``). + 4. A combination of these separated by commas. + +Here are some examples: + +.. code-block:: latex + + \bbox[red]{x+y} % a red box behind x+y + \bbox[2pt]{x+1} % an invisible box around x+y with 2pt of extra space + \bbox[red,2pt]{x+1} % a red box around x+y with 2pt of extra space + \bbox[5px,border:2px solid red] + % a 2px red border around the math 5px away + +This extension is **not** included in any of the combined configurations, +but it will be loaded automatically, so you do not need to include it +in your `extensions` array. + + +Begingroup +---------- + +The `begingroup` extension implements commands that provide a +mechanism for localizing macro defintions so that they are not +permanent. This is useful if you have a blog site, for example, and +want to isolate changes that your readers make in their comments so +that they don't affect later comments. + +It defines two new non-standard macros, ``\begingroup`` and +``\endgroup``, that are used to start and stop a local namespace for +macros. Any macros that are defined between the ``\begingroup`` and +``\endgroup`` will be removed after the ``\endgroup`` is executed. +For example, if you put ``\(\begingroup\)`` at the top of each reader's +comments and ``\(\endgroup\)`` at the end, then any macros they define +within their response will be removed after it is processed. + +In addition to these two macros, the `begingroup` extension defines +the standard ``\global`` and ``\gdef`` control sequences from TeX. +(The ``\let``, ``\def``, ``\newcommand``, and ``\newenvironment`` +control sequences are already defined in the core TeX input jax.) + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["begingroup.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +Cancel +------ + +The `cancel` extension defines the following macros: + +.. describe:: \\cancel{math} + + Strikeout ``math`` from lower left to upper right. + +.. describe:: \\bcancel{math} + + Strikeout ``math`` from upper left to lower right. + +.. describe:: \\xcancel{math} + + Strikeout ``math`` with an "X". + +.. describe:: \\cancelto{value}{math} + + Strikeout ``math`` with an arrow going to ``value``. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["cancel.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +Color +----- + +The ``\color`` command in the core TeX input jax is not standard in +that it takes the mathematics to be colored as one of its parameters, +whereas the LaTeX ``\color`` command is a switch that changes the +color of everything that follows it. + +The `color` extension changes the ``\color`` command to be compatible +with the LaTeX implementation, and also defines ``\colorbox``, +``\fcolorbox``, and ``\DefineColor``, as in the LaTeX color package. +It defines the standard set of colors (Apricot, Aquamarine, +Bittersweet, and so on), and provides the RGB and grey-scale color +spaces in addition to named colors. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["color.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands, +and have ``\color`` be compatible with LaTeX usage. + + +Enclose +------- + +The `enclose` extension gives you access to the MathML ```` +element for adding boxes, ovals, strikethroughs, and other marks over +your mathematics. It defines the following non-standard macro: + +.. describe:: \\enclose{notation}[attributes]{math} + + Where ``notation`` is a comma-separated list of MathML + ```` notations (e.g., ``circle``, ``left``, + ``updiagonalstrike``, ``longdiv``, etc.), ``attributes`` are + MathML attribute values allowed on the ```` element + (e.g., ``mathcolor="red"``, ``mathbackground="yellow"``), and + ``math`` is the mathematics to be enclosed. + +For example + +.. code-block:: latex + + \enclose{circle}[mathcolor="red"]{x} + \enclose{circle}[mathcolor="red"]{\color{black}{x}} + \enclose{circle,box}{x} + \enclose{circle}{\enclose{box}{x}} + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["action.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +Extpfeil +-------- + +The `extpfeil` extension adds more macros for producing extensible +arrows, including ``\xtwoheadrightarrow``, ``\xtwoheadleftarrow``, +``\xmapsto``, ``\xlongequal``, ``\xtofrom``, and a non-standard +``\Newextarrow`` for creating your own extensible arrows. The latter +has the form + +.. describe:: \\Newextarrow{\\cs}{lspace,rspace}{unicode-char} + + where ``\cs`` is the new control sequence name to be defined, + ``lspace`` and ``rspace`` are integers representing the amount of + space (in suitably small units) to use at the left and right of + text that is placed above or below the arrow, and ``unicode-char`` + is a number representing a unicode character position in either + decimal or hexadecimal notation. + +For example + +.. code-block:: latex + + \Newextarrow{\xrightharpoonup}{5,10}{0x21C0} + +defines an extensible right harpoon with barb up. Note that MathJax +knows how to stretch only a limited number of characters, so you may +not actually get a stretchy character this way. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["extpfeil.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + +HTML +---- + +The `HTML` extension gives you access to some HTML features like +styles, classes, element ID's and clickable links. It defines the +following non-standard macros: + +.. describe:: \\href{url}{math} + + Makes ``math`` be a link to the page given by ``url``. + +.. describe:: \\class{name}{math} + + Attaches the CSS class ``name`` to the output associated with + ``math`` when it is included in the HTML page. This allows your + CSS to style the element. + +.. describe:: \\cssId{id}{math} + + Attaches an id attribute with value ``id`` to the output + associated with ``math`` when it is included in the HTML page. + This allows your CSS to style the element, or your javascript to + locate it on the page. + +.. describe:: \\style{css}{math} + + Adds the give ``css`` declarations to the element associated with + ``math``. + +For example: + +.. code-block:: latex + + x \href{why-equal.html}{=} y^2 + 1 + + (x+1)^2 = \class{hidden}{(x+1)(x+1)} + + (x+1)^2 = \cssId{step1}{\style{visibility:hidden}{(x+1)(x+1)}} + +This extension is **not** included in any of the combined configurations, +but it will be loaded automatically when any of these macros is used, +so you do not need to include it explicitly in your configuration. + + +mhchem +------ + +The `mhchem` extensions implements the ``\ce``, ``\cf``, and ``\cee`` +chemical equation macros of the LaTeX `mhchem` package. See the +`mhchem CPAN page `_ for more +information and a link to the documentation for `mhchem`. + +For example + +.. code-block:: latex + + \ce{C6H5-CHO} + \ce{$A$ ->[\ce{+H2O}] $B$} + \ce{SO4^2- + Ba^2+ -> BaSO4 v} + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["mhchem.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + + noErrors -------- @@ -230,10 +710,11 @@ following to your :meth:`MathJax.Hub.Config()` call: inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"] multiLine: true, // false for TeX on all one line style: { - "font-family": "serif", - "font-size": "80%", + "font-size": "90%", + "text-align": "left", "color": "black", - "border": "1px solid" + "padding": "1px 3px", + "border": "1px solid" // add any additional CSS styles that you want // (be sure there is no extra comma at the end of the last item) } @@ -358,6 +839,11 @@ macro is defined in an extension, the name of the extension follows the macro name. If the extension is in brackets, the extension will be loaded automatically when the macro or environment is first used. +More complete details about how to use these macros, with examples and +explanations, is available at Carol Fisher's `TeX Commands Available +in MathJax +`_ page. + Symbols ------- @@ -431,8 +917,11 @@ B \barwedge AMSsymbols \Bbb \Bbbk AMSsymbols + \bbox [bbox] + \bcancel cancel \because AMSsymbols \begin + \begingroup begingroup non-standard \beta \beth AMSsymbols \between AMSsymbols @@ -498,13 +987,18 @@ C .. code-block:: latex \cal + \cancel cancel + \cancelto cancel \cap \Cap AMSsymbols \cases \cdot \cdotp \cdots + \ce mhchem + \cee mhchem \centerdot AMSsymbols + \cf mhchem \cfrac AMSmath \check \checkmark AMSsymbols @@ -522,7 +1016,8 @@ C \class [HTML] non-standard \clubsuit \colon - \color + \color color + \colorbox color \complement AMSsymbols \cong \coprod @@ -603,12 +1098,15 @@ E \ell \emptyset + \enclose enclose non-standard \end + \endgroup begingroup non-standard \enspace \epsilon \eqalign \eqalignno \eqcirc AMSsymbols + \eqref [AMSmath] \eqsim AMSsymbols \eqslantgtr AMSsymbols \eqslantless AMSsymbols @@ -625,6 +1123,7 @@ F \fallingdotseq AMSsymbols \fbox + \fcolorbox color \Finv AMSsymbols \flat \forall @@ -642,6 +1141,7 @@ G \Gamma \gamma \gcd + \gdef begingroup \ge \genfrac AMSmath \geq @@ -652,6 +1152,7 @@ G \ggg AMSsymbols \gggtr AMSsymbols \gimel AMSsymbols + \global begingroup \gnapprox AMSsymbols \gneq AMSsymbols \gneqq AMSsymbols @@ -774,6 +1275,7 @@ L \lesseqqgtr AMSsymbols \lessgtr AMSsymbols \lesssim AMSsymbols + \let [newcommand] \lfloor \lg \lgroup @@ -843,6 +1345,7 @@ M \mathscr \mathsf \mathstrut + \mathtip action non-standard \mathtt \matrix \max @@ -850,9 +1353,11 @@ M \measuredangle AMSsymbols \mho AMSsymbols \mid + \middle \min \mit \mkern + \mmlToken non-standard \mod \models \moveleft @@ -880,6 +1385,7 @@ N \neq \newcommand [newcommand] \newenvironment [newcommand] + \Newextarrow extpfeil \newline \nexists AMSsymbols \ngeq AMSsymbols @@ -1007,7 +1513,9 @@ R \rbrack \rceil \Re + \ref [AMSmath] \renewcommand [newcommand] + \renewenvironment [newcommand] \require non-standard \restriction AMSsymbols \rfloor @@ -1130,6 +1638,7 @@ T \textit \textrm \textstyle + \texttip action non-standard \tfrac AMSmath \therefore AMSsymbols \Theta @@ -1142,6 +1651,7 @@ T \tiny \Tiny non-standard \to + \toggle action non-standard \top \triangle \triangledown AMSsymbols @@ -1250,8 +1760,14 @@ X \Xi \xi + \xcancel cancel \xleftarrow AMSmath + \xlongequal extpfeil + \xmapsto extpfeil \xrightarrow AMSmath + \xtofrom extpfeil + \xtwoheadleftarrow extpfeil + \xtwoheadrightarrow extpfeil Y - diff --git a/docs/source/whats-new.rst b/docs/source/whats-new.rst index 5c4b694fa..0a5419fc5 100644 --- a/docs/source/whats-new.rst +++ b/docs/source/whats-new.rst @@ -29,7 +29,7 @@ Optimization * Parallel downloading of files needed by MathJax, for faster startup times. -* Shorter timeout for web fonts, so if they can't be downlaoded, you don't +* Shorter timeout for web fonts, so if they can't be downloaded, you don't have to wait so long. * Rollover to image fonts if a web font fails to load (so you don't have diff --git a/test/sample-asciimath.html b/test/sample-asciimath.html new file mode 100644 index 000000000..f10ba0935 --- /dev/null +++ b/test/sample-asciimath.html @@ -0,0 +1,22 @@ + + + +MathJax AsciiMath Test Page + + + + + + + + + +

    +When `a != 0`, there are two solutions to `ax^2 + bx + c = 0` and they are +

    +

    +`x = (-b +- sqrt(b^2-4ac))/(2a) .` +

    + + + diff --git a/test/sample-mml.html b/test/sample-mml.html index 31d025253..0e871b420 100644 --- a/test/sample-mml.html +++ b/test/sample-mml.html @@ -2,9 +2,9 @@ MathJax MathML Test Page - + - + @@ -12,14 +12,18 @@

    -When a0, +When + + a0 +, there are two solutions to - + ax2 + bx - + c = 0 + + c = 0 + and they are - + x = diff --git a/test/sample-tex.html b/test/sample-tex.html index c62334438..599533a35 100644 --- a/test/sample-tex.html +++ b/test/sample-tex.html @@ -2,9 +2,9 @@ MathJax TeX Test Page - + - + + + + + + + +Type text in the box below:
    + + +

    +Preview is shown here: +

    +
    + + + + + diff --git a/test/sample-dynamic-steps.html b/test/sample-dynamic-steps.html index 723769104..557196976 100644 --- a/test/sample-dynamic-steps.html +++ b/test/sample-dynamic-steps.html @@ -2,9 +2,9 @@ MathJax Dynamic Steps Test Page - + - + - + + + + + +
    +

    A test of Equation Numbering

    +
    + +
    +
    +Equation: + +\begin{equation} +E = mc^2 +\end{equation} + +Equation*: + +\begin{equation*} +E = mc^2 +\end{equation*} + +
    +Brackets: + +\[E = mc^2\] + +Brackets tagged: + +\[E = mc^2\tag{x}\] + +
    +Split: + +\begin{equation} +\begin{split} +a& =b+c-d\\ +& \quad +e-f\\ +& =g+h\\ +& =i +\end{split} +\end{equation} + +
    +Multline: + +\begin{multline} + a+b+c+d+e+f+g\\ + M+N+O+P+Q\\ + R+S+T\\ + u+v+w+x+y+z +\end{multline} + +Multline*: + +\begin{multline*} + a+b+c+d+e+f+g\\ + M+N+O+P+Q\\ + R+S+T\\ + u+v+w+x+y+z +\end{multline*} + +
    +Gather: + +\begin{gather} +a_1=b_1+c_1\\ +a_2=b_2+c_2-d_2+e_2 +\end{gather} + +Gather*: + +\begin{gather*} +a_1=b_1+c_1\\ +a_2=b_2+c_2-d_2+e_2 +\end{gather*} + +
    +Align: + +\begin{align} +a_1& =b_1+c_1\\ +a_2& =b_2+c_2-d_2+e_2 +\end{align} + +Align*: + +\begin{align*} +a_1& =b_1+c_1\\ +a_2& =b_2+c_2-d_2+e_2 +\end{align*} + +Align: + +\begin{align} +a_{11}& =b_{11}& a_{12}& =b_{12}\\ +a_{21}& =b_{21}& a_{22}& =b_{22}+c_{22} +\end{align} + +Align with \notag and \tag: + +\begin{align} +a_{11}& =b_{11}& a_{12}& =b_{12}\notag\\ +a_{21}& =b_{21}& a_{22}& =b_{22}+c_{22} \tag{y} +\end{align} + +Align* with \tag: + +\begin{align*} +a_1& =b_1+c_1\tag{z}\\ +a_2& =b_2+c_2-d_2+e_2 +\end{align*} + +
    + + + diff --git a/test/sample-eqrefs.html b/test/sample-eqrefs.html new file mode 100644 index 000000000..c10fb5b28 --- /dev/null +++ b/test/sample-eqrefs.html @@ -0,0 +1,85 @@ + + + +MathJax Equation References + + + + + + + + + + + + +
    +

    A test of Equation References

    +
    + +
    +
    +Here is a labeled equation: +$$x+1\over\sqrt{1-x^2}\label{ref1}$$ +with a reference to ref1: \ref{ref1}, +and another numbered one with no label: +$$x+1\over\sqrt{1-x^2}$$ +This one uses \nonumber: +$$x+1\over\sqrt{1-x^2}\nonumber$$ +

    +


    +

    +Here's one using the equation environment: +\begin{equation} +x+1\over\sqrt{1-x^2} +\end{equation} +and one with equation* environment: +\begin{equation*} +x+1\over\sqrt{1-x^2} +\end{equation*} +

    +


    +

    +This is a forward reference [\ref{ref2}] and another \eqref{ref2} for the +following equation: +$$x+1\over\sqrt{1-x^2}\label{ref2}$$ +More math: +$$x+1\over\sqrt{1-x^2}$$ +Here is a ref inside math: $\ref{ref2}+1$ and text after it. + +\begin{align} +x& = y_1-y_2+y_3-y_5+y_8-\dots +&& \text{by \eqref{ref1}}\\ +& = y'\circ y^* && \text{(by \eqref{ref3})}\\ +& = y(0) y' && \text {by Axiom 1.} +\end{align} + +Here's a bad ref [\ref{ref4}] to a nonexistent label. +

    +


    +

    +An alignment: +\begin{align} +a&=b\label{ref3}\cr +&=c+d +\end{align} +and a starred one: +\begin{align*} +a&=b\cr +&=c+d +\end{align*} + +

    + + + diff --git a/test/sample-loader-config.html b/test/sample-loader-config.html new file mode 100644 index 000000000..0d401fbfe --- /dev/null +++ b/test/sample-loader-config.html @@ -0,0 +1,55 @@ + + + +Load MathJax with in-line configuration after the page is ready + + + + + + + + + + + +

    Adding MathJax with In-Line Configuration

    + +

    +When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are +$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ +

    + + + diff --git a/test/sample-loader.html b/test/sample-loader.html new file mode 100644 index 000000000..cd85a6df5 --- /dev/null +++ b/test/sample-loader.html @@ -0,0 +1,47 @@ + + + +Load MathJax after the page is ready + + + + + + + + + + + +

    Adding MathJax After the Page is Loaded

    + +

    +When \(a \ne 0\), there are two solutions to \(ax^2 + bx + c = 0\) and they are +$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ +

    + + + diff --git a/test/sample-signals.html b/test/sample-signals.html index 7d9837270..65ecef4e5 100644 --- a/test/sample-signals.html +++ b/test/sample-signals.html @@ -2,9 +2,9 @@ MathJax Signals Test Page - + - + + - + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +

    The MathEvents extensionΒΆ

    +

    The options below control the operation of the MathEvents component that +allows handles mouse and menu events attached to mathematics that is +typeset by MathJax. They are listed with their +default values. To set any of these options, include a MathEvents +section in your MathJax.Hub.Config() call. For example

    +
    MathJax.Hub.Config({
    +  MathEvents: {
    +    hover: 400
    +  }
    +});
    +
    +
    +

    would set the required delay for hovering over a math element to +400 milliseconds.

    +
    +
    +hover: 500
    +

    This value is the time (in milliseconds) that a user must hold the +mouse still over a math element before it is considered to be +hovering over the math.

    +
    + +
    +
    +styles: {}
    +

    This is a list of CSS declarations for styling the zoomed +mathematics. See the definitions in extensions/MathEvents.js +for details of what are defined by default. See CSS Style +Objects for details on how to specify CSS +style in a JavaScript object.

    +
    + +
    + + +
    +
    +
    +
    +
    +

    Previous topic

    +

    The MathZoom extension

    +

    Next topic

    +

    The FontWarnings extension

    + + +
    +
    +
    +
    + + + + + \ No newline at end of file diff --git a/docs/html/options/MathML.html b/docs/html/options/MathML.html index 05b2d69c5..25fdc61f3 100644 --- a/docs/html/options/MathML.html +++ b/docs/html/options/MathML.html @@ -55,7 +55,8 @@

    The MathML input processorΒΆ

    The options below control the operation of the MathML input processor that is run when you include "input/MathML" in the jax array of -your configuration. They are listed with their default values. To +your configuration or load a combined configuration file that includes +the MathML input jax. They are listed with their default values. To set any of these options, include a MathML section in your MathJax.Hub.Config() call. For example

    MathJax.Hub.Config({
    diff --git a/docs/html/options/MathMenu.html b/docs/html/options/MathMenu.html
    index 976783e2d..7a9b3cf1f 100644
    --- a/docs/html/options/MathMenu.html
    +++ b/docs/html/options/MathMenu.html
    @@ -85,38 +85,48 @@ selects that item, the browser opens a new window with this URL.

    showRenderer: true
    -

    This controls whether the “Math Renderer” item will be displayed in -the “Settings” submenu of the mathematics contextual menu. It -allows the user to change between the HTML-CSS and NativeMML -output processors for the mathematics on the page. Set to -false to prevent this menu item from showing.

    -
    - -
    -
    -showContext: false
    -

    This controls whether the “Contextual Menu” item will be displayed -in the “Settings” submenu of the mathematics contextual menu. -It allows the user to decide whether the MathJax menu or the -browser’s default contextual menu will be shown when the context -menu click occurs over mathematics typeset by MathJax. (The main -reason to allow pass-through to the browser’s menu is to gain -access to the MathPlayer contextual menu when the NativeMML output -processor is used in Internet Explorer with the MathPlayer plugin.) Set to -false to prevent this menu item from showing.

    +

    This controls whether the “Math Renderer” item will be displayed +in the “Math Settings” submenu of the MathJax contextual menu. +It allows the user to change between the HTML-CSS, NativeMML, +and SVG output processors for the mathematics on the page. Set +to false to prevent this menu item from showing.

    showFontMenu: false

    This controls whether the “Font Preference” item will be displayed -in the “Settings” submenu of the mathematics contextual menu. +in the “Math Settings” submenu of the MathJax contextual menu. This submenu lets the user select what font to use in the mathematics produced by the HTML-CSS output processor. Note that changing the selection in the font menu will cause the page to reload. Set to false to prevent this menu item from showing.

    +
    +
    +showMathPlayer: true
    +

    This controls whether the “MathPlayer” item will be displayed in +the “Math Settings” submenu of the MathJax contextual menu. This +submenu lets the user select what events should be passed on to +the MathPlayer plugin, when it is +present. Mouse events can be passed on (so that clicks will be +processed by MathPlayer rather than MathJax), and emnu events can +be passed on (to allow the user access to the MathPlayer menu). +Set to false to prevent this menu item from showing.

    +
    + +
    +
    +showContext: false
    +

    This controls whether the “Contextual Menu” item will be displayed +in the “Math Settings” submenu of the MathJax contextual menu. +It allows the user to decide whether the MathJax menu or the +browser’s default contextual menu will be shown when the context +menu click occurs over mathematics typeset by MathJax. Set to +false to prevent this menu item from showing.

    +
    +
    windowSettings: { ... }
    diff --git a/docs/html/options/MathZoom.html b/docs/html/options/MathZoom.html index ac8d370fc..d7ca14101 100644 --- a/docs/html/options/MathZoom.html +++ b/docs/html/options/MathZoom.html @@ -24,7 +24,7 @@ - + @@ -36,7 +36,7 @@ index
  • - next |
  • MathJax.Hub.Config() call. For example

    MathJax.Hub.Config({
       MathZoom: {
    -    delay: 600
    +    styles: {
    +      "#MathJax_Zoom": {
    +        "background-color": "#0000F0"
    +      }
    +    }
       }
     });
     
    -

    would set the delay option to 600 milliseconds.

    +

    would set the background color of the Zoom box to a very light blue.

    Mathematics is zoomed when the user “triggers” the zoom by an action, either clicking on the mathematics, double-clicking on it, or holding the mouse still over it (i.e., “hovering”). Which trigger is used is set by the user via the math contextual menu (or by the author using -the menuSettings configuration section).

    +the menuSettings configuration section of the core configuration +options <configure-hub>).

    -delay: 400
    -

    This the time (in milliseconds) that the mouse must be still over a -typeset mathematical formula before the zoomed version is displayed -(when the zoom trigger is set to Hover).

    +delay: 500 +

    This value is now stored as the hover parameter in the +MathEvents configuration options, and +will have no effect if given here.

    @@ -101,8 +106,8 @@ style in a JavaScript object.

    The MathMenu extension

    Next topic

    -

    The FontWarnings extension

    +

    The MathEvents extension

  • - next |
  • --> - + @@ -36,7 +36,7 @@ index
  • - next |
  • The NativeMML output processorΒΆ

    The options below control the operation of the NativeMML output processor that is run when you include "output/NativeMML" in the -jax array of your configuration. They are listed with their default -values. To set any of these options, include a NativeMML section -in your MathJax.Hub.Config() call. For example

    +jax array of your configuration or load a combined configuration +file taht includes the NativeMML output jax. They are listed with +their default values. To set any of these options, include a +NativeMML section in your MathJax.Hub.Config() call. For +example

    MathJax.Hub.Config({
       NativeMML: {
         scale: 105
    @@ -70,37 +72,29 @@ in your MathJax.H
     
    scale: 100

    The scaling factor (as a percentage) of math with respect to the -surrounding text. Since the NativeMML output relies on the -browser’s native MathML support, MathJax does not control the -font size used in the mathematics. You may need to set this value -to compensate for the size selected by the browser. The user can -also adjust this value using the contextual menu item associated -with the typeset mathematics.

    +surrounding text. The NativeMML output processor tries to match +the ex-size of the mathematics with that of the text where it is +placed, but you may want to adjust the results using this scaling +factor. The user can also adjust this value using the contextual +menu item associated with the typeset mathematics.

    +
  • + +
    +
    +minScaleAdjust: 50
    +

    This gives a minimum scale (as a percent) for the scaling used by +MathJax to match the equation to the surrounding text. This will +prevent MathJax from making the mathematics too small.

    showMathMath: true
    -

    This controls whether the MathJax contextual menu will be -available on the mathematics in the page. If true, then -right-clicking (on the PC) or control-clicking (on the Mac) will -produce a MathJax menu that allows you to get the source of the -mathematics in various formats, change the size of the mathematics -relative to the surrounding text, get information about -MathJax, and configure other MathJax settings.

    -

    Set this to false to disable the menu. When true, the -MathMenu configuration block determines the operation of the -menu. See the MathMenu options for -more details.

    -
    - -
    showMathMenuMSIE: true
    -

    There is a separate menu setting for MSIE since the code to handle -that is a bit delicate; if it turns out to have unexpected -consequences, you can turn it off without turning off the -menu support in other browsers.

    +

    These values have been moved to the core configuration block, since +it applies to all output jax, but they will still be honored (for +now) if it is set here. See the Core configuration options for more details.

    @@ -125,8 +119,8 @@ CSS style in a JavaScript object.

    The HTML-CSS output processor

    Next topic

    -

    The MMLorHTML configuration options

    +

    The SVG output processor

    +
    +
    +equationNumbers: {}
    +

    This object controls the automatic equation numbering and the +equation referencing. It contains the following values:

    +
    +
    +autoNumber: "none"
    +

    This controls whether equations are numbered and how. By +default it is set to "none" to be compatible with earlier +versions of MathJax where auto-numbering was not performed (so +pages will not change their appearance). You can change +this to "AMS" for equations numbered as the AMSmath +package would do, or "all" to get an equation number for +every displayed equation.

    +
    + +
    +
    +formatNumber: function (n) {return n}
    +

    A function that tells MathJax what tag to use for equation +number n. This could be used to have the equations labeled +by a sequence of symbols rather than numbers, or to use section +and subsection numbers instead.

    +
    + +
    +
    +formatTag: function (n) {return '('+n+')'}
    +

    A function that tells MathJax how to format an equation number +for displaying as a tag for an equation. This is what appears +in the margin of a tagged or numbered equation.

    +
    + +
    +
    +formatID: function {return 'mjx-eqn-'+String(n).replace(/[:'"<>&]/g,"")}
    +

    A function that rells MathJax what ID to use as an anchor for +the equation (so that it can be used in URL references).

    +
    + +
    +
    +formatURL: function (id) {return '#'+escape(id)}
    +

    A function that takes an equation ID and returns the URL to +link to it.

    +
    + +
    +
    +useLabelIds: true
    +

    This controls whether element ID’s use the \label name or +the equation number. When true, use the label, when +false, use the equation number.

    +
    + +

    See the MathJax examples page for +some examples of equation numbering.

    +
    +
    Macros: {}

    This lists macros to define before the TeX input processor begins. -These are name:value pairs where the name gives the name of the TeX -macro to be defined, and value gives the replacement text for the -macro. The value can be an array of the form [value,n], where -value is the replacement text and n is the number of parameters -for the macro. Note that since the value is a javascript string, -backslashes in the replacement text must be doubled to prevent them -from acting as javascript escape characters.

    +These are name:value pairs where the name gives the name of +the TeX macro to be defined, and value gives the replacement +text for the macro. The value can be an array of the form +[value,n], where value is the replacement text and n is the +number of parameters for the macro. Note that since the value +is a javascript string, backslashes in the replacement text must +be doubled to prevent them from acting as javascript escape +characters.

    For example,

    Macros: {
       RR: '{\\bf R}',
    diff --git a/docs/html/options/asciimath2jax.html b/docs/html/options/asciimath2jax.html
    index f90a02269..dac7359fa 100644
    --- a/docs/html/options/asciimath2jax.html
    +++ b/docs/html/options/asciimath2jax.html
    @@ -131,11 +131,11 @@ expression, and so you need to be sure to quote any regexp
     special characters.  The pattern is inserted into one that
     requires your pattern to match a complete word, so setting
     ignoreClass: "class2" would cause it to match an element with
    -class="class1 class2 class3".  Note that you can assign
    -several classes by separating them by the vertical line character
    -(|).  For instance, with ignoreClass: "class1|class2"
    -any element assigned a class of either class1 or class2
    -will be skipped.

    +class="class1 class2 class3" but not class="myclass2". +Note that you can assign several classes by separating them by the +vertical line character (|). For instance, with +ignoreClass: "class1|class2" any element assigned a class of +either class1 or class2 will be skipped.

    @@ -150,11 +150,11 @@ regular expression, and so you need to be sure to quote any regexp special characters. The pattern is inserted into one that requires your pattern to match a complete word, so setting processClass: "class2" would cause it to match an element with -class="class1 class2 class3". Note that you can assign -several classes by separating them by the vertical line character -(|). For instance, with processClass: "class1|class2" any -element assigned a class of either class1 or class2 will -have its contents processed.

    +class="class1 class2 class3" but not class="myclass2". +Note that you can assign several classes by separating them by the +vertical line character (|). For instance, with +processClass: "class1|class2" any element assigned a class of +either class1 or class2 will have its contents processed.

    diff --git a/docs/html/options/hub.html b/docs/html/options/hub.html index 3b9c964e6..5ac6b6d7a 100644 --- a/docs/html/options/hub.html +++ b/docs/html/options/hub.html @@ -70,8 +70,7 @@ directory.

    extensions: []

    A comma-separated list of extensions to load at startup. The default directory is MathJax/extensions. The tex2jax and -mml2jax preprocessors can be listed here, as well as a number -of TeX-specific extensions (see the TeX and LaTeX input section of the Getting Started document for more details). There is also a +mml2jax preprocessors can be listed here, as well as a FontWarnings extension that you can use to inform your user that mathematics fonts are available that they can download to improve their experience of your site.

    @@ -84,7 +83,9 @@ improve their experience of your site.

    starts up, e.g., to define local macros, etc., and there is a sample config file named config/local/local.js. The default directory is the MathJax/config directory. The MMLorHTML.js -configuration is the only other predefined configuration file.

    +configuration is one such configuration file, and there are a +number of other pre-defined configurations (see Using a +configuration file for more details).

    @@ -98,8 +99,8 @@ directory.

    styles: {}
    -

    CSS selector: rules; styles to be defined dynamically at startup -time.

    +

    CSS styles to be defined dynamically at startup time. These are +in the form selector:rules (see CSS Style Objects for complete details).

    @@ -213,14 +214,53 @@ yourself by hand, set this value to elements: []

    This is a list of DOM element ID’s that are the ones to process for -mathematics when any of the Hub typesetting calls (Typeset, Process, -Update, etc.) are called with no element specified, and during +mathematics when any of the Hub typesetting calls (Typeset(), Process(), +Update(), etc.) are called with no element specified, and during MathJax’s initial typesetting run when it starts up. This lets you restrict the processing to particular containers rather than scanning the entire document for mathematics. If none are supplied, the complete document is processed.

    +
    +
    +positionToHash: true
    +

    Since typesetting usually changes the vertical dimensions of the +page, if the URL contains an anchor position, then after the page +is typeset, you may no longer be positioned at the correct +position on the page. MathJax can reposition to that location +after it completes its initial typesetting of the page. This +value controls whether MathJax will reposition the browser to the +#hash location from the page URL after typesetting for the page.

    +
    + +
    +
    +showMathMenu: true
    +
    +showMathMenuMSIE: true
    +

    These control whether to attach the MathJax contextual menu to the +expressions typeset by MathJax. Since the code for handling +MathPlayer in Internet Explorer is somewhat delicate, it is +controlled separately via showMathMenuMSIE, but the latter is +now deprecated in favor of the MathJax contextual menu settings +for MathPlayer (see below).

    +

    If showMathMenu is true, then right-clicking (on Windows +or Linux) or control-clicking (on Mac OS X) will produce a MathJax +menu that allows you to get the source of the mathematics in +various formats, change the size of the mathematics relative to +the surrounding text, get information about MathJax, and configure +other MathJax settings.

    +

    Set this to false to disable the menu. When true, the +MathMenu configuration block determines the operation of the +menu. See the MathMenu options for +more details.

    +

    These values used to be listed in the separate output jax, but +have been moved to this more central location since they are +shared by all output jax. MathJax will still honor their values +from their original positions, if they are set there.

    +
    +
    menuSettings: { ... }
    @@ -268,9 +308,21 @@ to "Browser"
    -

    There are also settings for format, renderer, and font, -but these are maintained by MathJax and should not be set by the -page author.

    +
    +
    +texHints: true
    +

    This controls whether the “Show Source” menu item includes +special class names that help MathJax to typeset the +mathematics that was produced by the TeX input jax. If these +are included, then you can take the output from “Show Source” +and put it into a page that uses MathJax’s MathML input jax +and expect to get the same results as the original TeX. +(Without this, there may be some spacing differences.)

    +
    + +

    There are also settings for format, renderer, font, +mpContext, and mpMouse, but these are maintained by +MathJax and should not be set by the page author.

    diff --git a/docs/html/options/index.html b/docs/html/options/index.html index d51aa4a92..b0b54569e 100644 --- a/docs/html/options/index.html +++ b/docs/html/options/index.html @@ -59,15 +59,15 @@ will see that config/default.jsMathJax.Hub.Config()). Anything that is in config/default.js can be included in-line to configure MathJax.

    The structure that you pass to MathJax.Hub.Config() is a -JavaScript object that includes name-value pairs giving the names of +JavaScript object that includes name:value pairs giving the names of parameters and their values, with pairs separated by commas. Be careful not to include a comma after the last value, however, as some browsers (namely Internet Explorer) will fail to process the configuration if you do.

    The MathJax components, like the TeX input processor, have their own -sections in the configuration object, labeled by the component name, +sections in the configuration object labeled by the component name, and using an object as its value. That object is itself -a configuration object made up of name-value pairs that give the +a configuration object made up of name:value pairs that give the configuration options for the component.

    For example,

    diff --git a/docs/html/options/tex2jax.html b/docs/html/options/tex2jax.html index 53c107e15..2cca717cc 100644 --- a/docs/html/options/tex2jax.html +++ b/docs/html/options/tex2jax.html @@ -101,6 +101,21 @@ the browser before MathJax has the chance to run. You can only include text, not tags, as your math delimiters.

    +
    +
    +balanceBraces: true,
    +

    This value determines whether tex2jax requires braces to be +balanced within math delimiters (which allows for nested dollar +signs). Set to false to get pre-v2.0 compatibility. When +true,

    +
    $y = x^2 \hbox{ when $x > 2$}$.
    +
    +
    +

    will be properly handled as a single expression. When false, +it would be interpreted as two searpate expressions, each with +improperly balanced braces.

    +
    +
    processEscapes: false
    @@ -166,11 +181,11 @@ expression, and so you need to be sure to quote any regexp special characters. The pattern is inserted into one that requires your pattern to match a complete word, so setting ignoreClass: "class2" would cause it to match an element with -class="class1 class2 class3". Note that you can assign -several classes by separating them by the vertical line character -(|). For instance, with ignoreClass: "class1|class2" -any element assigned a class of either class1 or class2 -will be skipped.

    +class="class1 class2 class3" but not class="myclass2". +Note that you can assign several classes by separating them by the +vertical line character (|). For instance, with +ignoreClass: "class1|class2" any element assigned a class of +either class1 or class2 will be skipped.

    @@ -185,11 +200,11 @@ regular expression, and so you need to be sure to quote any regexp special characters. The pattern is inserted into one that requires your pattern to match a complete word, so setting processClass: "class2" would cause it to match an element with -class="class1 class2 class3". Note that you can assign -several classes by separating them by the vertical line character -(|). For instance, with processClass: "class1|class2" any -element assigned a class of either class1 or class2 will -have its contents processed.

    +class="class1 class2 class3" but not class="myclass2". +Note that you can assign several classes by separating them by the +vertical line character (|). For instance, with +processClass: "class1|class2" any element assigned a class of +either class1 or class2 will have its contents processed.

    diff --git a/docs/html/output.html b/docs/html/output.html index 6d4de3465..3311d2f87 100644 --- a/docs/html/output.html +++ b/docs/html/output.html @@ -74,7 +74,7 @@ the jax array of your MathJax configuration. For example

    would specify TeX input and HTML-with-CSS output for the mathematics in your document.

    -

    The HTML-CSS output processor produces high-quality output in all +

    The HTML-CSS output processor produces high-quality output in all major browsers, with results that are consistent across browsers and operating systems. This is MathJax’s primary output mode. Its major advantage is its quality and consistency; its drawback is that it is @@ -87,7 +87,7 @@ more comparable to other browsers. The HTML-CSS output uses web-based fonts so that users don’t have to have math fonts installed on their computers; but this does introduce some printing issues in some browsers.

    -

    The SVG output processor is new in MathJax version 2.0, and it uses +

    The SVG output processor is new in MathJax version 2.0, and it uses Scalable Vector Graphics to render the mathematics on the page. SVG is supported in all the major browsers and most mobile devices; note, however, that Internet Explorer prior to IE9 does not support SVG, and @@ -103,7 +103,7 @@ once they are typeset, and don’t rescale if the window size changes (for example). Since equation numbers are handled through variable-width tables, that means equation numbers may not stay at the edge of the window if it is resized.

    -

    The NativeMML output processor uses the browser’s internal MathML +

    The NativeMML output processor uses the browser’s internal MathML support (if any) to render the mathematics. Currently, Firefox has native support for MathML, and IE has the MathPlayer plugin for rendering MathML. Opera has some built-in support for MathML that works well @@ -200,6 +200,29 @@ possible. That can be accomplished by adding

    that this line must come at the beginning of the <head>, before any stylesheets, scripts, or other content are loaded.

    +
    +

    HTML-CSS ExtensionsΒΆ

    +

    The HTML-CSS output jax uses elements with width set to 100% when it +typesets displayed equations. If there are floating elements on the +left or right, this can mean that displayed mathematics isn’t properly +centered, and can cause equation numbers to overlap the floating +content. To avoid this, you can specify the handle-floats extension +in the extensions array of your HTML-CSS configuration block.

    +
    "HTML-CSS": {
    +  extensions: ["handle-floats.js"]
    +}
    +
    +
    +

    This will use CSS that puts the displayed equations into elements that +work like tabel cells, and won’t overlap the floaring content. +Because this is somewhat of a misuse of CSS, it is not used by +default, but it has proved successful in most situations, so you may +consider using it in pages that include material that floats to the +left or right of text containing displayed mathematics, especially +when equation numbers or tags are used.

    +

    See the HTML-CSS configuration options for +other options of the HTML-CSS output jax.

    +
    @@ -213,6 +236,7 @@ any stylesheets, scripts, or other content are loaded.

  • MathJax Output Formats
  • diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js index c9ed18f4f..4c83a5103 100644 --- a/docs/html/searchindex.js +++ b/docs/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{Load:[0,0,1],Preloading:[0,0,1],Log:[18,0,1],ExecuteHooks:[28,0,1],setScript:[12,0,1],Subclass:[40,0,1],Delay:[28,0,1],Add:[28,0,1],getAllJax:[39,0,1],getScript:[12,0,1],Interest:[29,0,1],preProcess:[24,0,1],loadComplete:[0,0,1],Translate:[41,0,1],Config:[39,0,1],addElement:[12,0,1],Reprocess:[39,0,1],Styles:[0,0,1],ExecuteHook:[29,0,1],loadTimeout:[0,0,1],Resume:[17,0,1],Update:[39,0,1],preTranslate:[24,0,1],setRenderer:[39,0,1],formatError:[39,0,1],call:[17,0,1],postTranslate:[24,0,1],getJaxByInputType:[39,0,1],PreProcess:[39,0,1],Post:[29,0,1],has:[40,0,1],Signal:[28,0,1],Set:[18,0,1],Insert:[39,0,1],Execute:[28,0,1],addText:[12,0,1],TextNode:[12,0,1],Augment:[40,0,1],needsUpdate:[48,0,1],Clear:[18,0,1],Register:[41,0,1],Zoom:[24,0,1],Remove:[18,0,1],Element:[12,0,1],Queue:[28,0,1],NoInterest:[29,0,1],Rerender:[39,0,1],getJaxByType:[39,0,1],Push:[17,0,1],Typeset:[39,0,1],fileURL:[0,0,1],wait:[17,0,1],reset:[28,0,1],loadError:[0,0,1],getJaxFor:[39,0,1],getJaxFromMath:[24,0,1],LoadHook:[0,0,1],Process:[39,0,1],Hooks:[28,0,1],MessageHook:[29,0,1],Startup:[41,0,1],Init:[40,0,1],Suspend:[17,0,1],SourceElement:[48,0,1],can:[40,0,1],File:[18,0,1],Text:[48,0,1],isJax:[39,0,1],filterText:[18,0,1],isa:[40,0,1],Require:[0,0,1]}},terms:{represent:[54,48,51],lspace:49,reprocess:[39,48,51],mathjax_msie_fram:18,yellow:49,four:[49,1,14],prefix:[12,20,24,42],asymp:49,blacktriangledown:49,webfont:[6,45,20],whose:[12,7,51,5,46,33,39,24],html5:[14,42,20,44,53,54,7],under:[44,37],preprocess:[30,51,41,54,39,24],asciimath2jax:[15,43,20,33,54,26],worth:7,digit:42,gimel:49,everi:[19,39,42,7],risk:20,mskip:49,arcco:49,govern:[20,14,7],dotplu:49,affect:[14,37,42,49,39,26],eqnarrai:49,cmd:22,bigodot:49,c6h5:49,ominu:49,vector:[47,53,54],math:[30,5,7,12,13,14,42,43,18,19,20,11,22,23,24,27,15,3,32,33,35,36,37,10,39,49,44,45,47,50,51,52,53,54],nparallel:49,showcontext:50,nsubseteqq:49,direct:[6,14,45,37],consequ:11,second:[0,14,37,28,46,56,52,5,6,33,21,22,7,19,10,44,24,1],ngeq:49,even:[0,3,49,39,28,17,19,20,21,23,15,29,46,7,43,44,45,1,51,52,53,54],hide:51,prejax:[54,22],neg:49,menclos:49,"new":[30,4,49,12,13,14,42,18,19,20,25,23,24,26,28,39,10,7,40,29,37,48,1,50,51,52,53,54],net:20,mhtml:2,told:[49,52,3],limsup:49,elimin:22,behavior:[14,37,22,7],lessapprox:49,never:[0,7,37,41],here:[12,49,34,28,46,48,1,3,51,19,20,41,22,39,29],updiagonalstrik:49,met:30,lneqq:49,path:[43,0,7,20],noundefin:[43,20,49],interpret:[49,20,37,15],nrightarrow:49,forum:[20,4],mbox:49,rceil:49,linearli:53,circleddash:49,mathstrut:49,unix:37,brower:[49,15],thinmathspac:44,unit:[49,42],highli:23,describ:[12,49,14,37,28,20,47,56,30,51,43,6,21,7,46,54,39,24],would:[5,6,7,9,11,12,14,15,43,17,20,25,22,48,27,28,31,32,33,35,36,37,39,40,49,45,46,21,56,50,51,53,54,55,1],afterward:46,readi:[19,34,30,43,41,10],ltime:49,varlambda:49,call:[0,2,3,49,6,7,9,14,17,18,19,20,25,22,24,26,27,28,29,31,32,33,36,37,10,39,40,41,5,45,46,47,48,1,50,51,52,11,54,55],recommend:[20,54,37,53],vcenter:49,preview:[27,5,32,33,22,54],type:[0,2,3,5,8,10,12,14,43,19,20,41,22,48,39,35,38,7,49,44,24,1,51,52,53,54],until:[0,27,46,1,5,32,33,41,22,7,19,39,29],notin:49,displaymath:[5,7],relat:[0,42,53],notic:[49,15],warn:[0,14,22,6],mathev:24,jpg:[5,32,33,21,27],loss:7,hold:[0,21,22,36,54,39],unpack:[20,37],must:[0,30,49,6,14,17,18,20,25,22,15,29,39,33,36,37,7,5,44,45,47,56,52,53],fbox:[49,42],join:[19,49],centerdot:49,setup:[23,20,44],work:[12,13,14,37,42,15,46,49,3,4,51,43,20,44,35,52,19,23,53,40],cc0000:[56,22],tag_nam:37,root:[0,42,30,18,49,7],overrid:[40,6,10,41,24],mathmenu:[34,45,56,50,43,11,26],give:[49,7,45,20,47,21,56,19,6,25,39,29,26],cirit:7,indic:[0,7,37,15,46,17,49,30,19,20,29,41,22,48,10,39,24,54],impair:23,hline:49,want:[4,5,14,28,43,16,18,19,20,22,24,15,46,33,37,38,7,40,49,44,45,1,51,53,55],keep:[14,37,2,15,47,51,49,20,54,7,24],setminu:49,end:[0,5,44,15,2,53,49,30,4,43,1,8,19,38,7,54,42],quot:[5,33,45,22,42],hom:49,heartsuit:49,how:[0,2,3,4,5,6,7,8,14,15,43,17,18,20,21,22,27,28,29,32,33,35,36,37,39,49,45,31,50,51,52,11,54],disappear:[5,32,33,27],answer:[4,51],verifi:[20,37,4],config:[2,30,5,6,7,8,9,10,11,14,43,18,19,20,25,22,24,26,27,15,3,31,32,33,35,36,38,39,41,49,45,46,56,50,51,53,55,1],renewcommand:49,updat:[39,37,42,2,1,51,14,22,7,48],showrender:50,recogn:20,lai:[53,54],diagdown:49,after:[0,3,49,39,17,18,19,20,41,22,26,28,46,37,7,29,45,1,50,51,52,54],befor:[0,2,3,4,49,7,8,14,15,17,18,19,20,21,22,25,28,29,30,46,33,36,39,40,41,5,44,45,47,1,51,52,53,54],wrong:44,startuphook:[19,39],parallel:[49,1,30,42],averag:54,alignedat:49,attempt:[0,44,50],third:[1,44],leftarrow:49,receiv:[29,14,37,46,40,19,20,41,52,7,24],greasekit:3,maintain:[14,52,4,19,46,22,24],environ:[5,20,49,25,4],enter:[44,31,51,49,20,54,7],textnod:12,order:[30,49,6,5,14,17,18,20,22,27,28,39,32,33,37,7,40,29,45,46,47,1,53,54],oper:[0,5,6,9,11,42,17,18,19,25,23,24,27,31,32,33,36,45,10,29,34,37,46,47,1,50,51,53,55],approxeq:49,over:[12,0,45,42,49,50,51,43,20,22,36,53,54,7],fall:[37,15,20,1,49,6],becaus:[19,14,45,1,15,46,49,3,18,5,20,33,21,7,54,44,29,25,51],boxtim:49,suspend:[19,17,1,29],textrm:49,appar:1,afil:46,flexibl:[21,1,14],vari:53,smallint:49,img:[27,56,3,5,32,33,21],fix:[53,14,37,42,7],strang:44,better:[42,15,31,50,20,35,8,53,7],boxminu:49,drawback:53,fade:6,persist:4,comprehens:47,hidden:49,easier:[29,14,37,1,49,44,40],moveleft:49,them:[0,5,6,12,14,28,43,17,19,20,25,15,29,39,31,33,7,42,49,44,37,46,56,54,1],thei:[0,1,3,4,5,6,7,9,11,14,42,16,17,18,19,20,25,22,26,27,28,29,30,31,32,33,36,37,39,41,43,45,46,47,21,49,50,51,52,53,54,55,56],qualiti:[23,53,54],safe:[12,20,51],rectangl:47,"break":[49,52,1,42],emph:49,mtext:[49,20,42],wedg:49,widetild:49,choic:[53,39,8],dbinom:49,leftharpoondown:49,timeout:[0,42,28],each:[5,7,37,15,28,29,49,30,52,18,43,20,33,51,19,54,39,1],debug:18,side:[18,49,20,25,22,8],mean:[2,30,5,6,14,43,16,19,22,23,27,15,29,3,32,33,7,49,46,51,52,53],leqq:49,createel:3,resum:[17,1],represetn:49,leqalignno:49,mathopen:49,looparrowleft:49,network:[14,37,42,43,20,38,7],goe:[49,52,1],newli:[12,19,40],crucial:37,predefin:22,content:[2,30,5,8,10,12,14,42,43,20,21,22,39,33,38,7,40,49,44,47,1,51,53,54],method:[12,0,14,40,28,29,17,1,52,18,19,46,41,7,48,10,39,24,51],reader:[43,23,49,42,53],forth:34,impract:37,multilin:49,situat:[20,7,42,51],free:[48,4],ineffici:[40,22],reconfigur:14,lneq:49,angl:49,moment:[20,10,37],filter:28,isn:[19,41,48,51],iphon:42,isa:40,subtl:51,onto:[47,20,1,39,51],attribtu:20,mathbb:49,rang:[20,54],mathbf:49,render:[5,44,42,30,50,43,20,22,23,53,54,39,55,35],independ:7,yourcolleg:37,restrict:[49,37,22],hook:[19,0,28,29],unlik:[23,49,7,41],alreadi:[0,28,51,30,49,3,4,18,19,46,52,7,40,1],subtleti:49,primari:[53,14],tooltop:45,top:[34,37,49,20,53,7,24],sometim:[20,7,37],underlin:[49,42],master:52,too:[49,45,42,15,3,5,20,33,53],similarli:[0,39,37],newenviron:49,john:46,listen:[19,29,39,28],thickapprox:49,namespac:[42,28,3,51,49,20],tool:[1,37],tagind:25,embellish:42,compressor:42,somewhat:52,technic:47,past:[29,14,42,19,52,23,53],filesmatch:37,provid:[12,0,44,2,28,46,17,49,3,18,19,20,29,21,51,52,23,54,39,40,1],eqalignno:49,x2212:[20,54],tree:[20,21],"final":[14,46,49,20,21,23,54,24],project:[47,7,4],matter:[19,35],mathtt:49,ldotp:49,modern:[23,6,44,13],mind:[49,20,7,15,2],increment:17,seem:[46,44],rightrightarrow:49,ldot:49,person:46,latter:[49,16,19,31,21,54,7,26],domcontentload:[30,3],expens:[53,54],simplifi:42,though:[28,15,49,52,21,22,54],object:[0,30,49,6,12,13,16,17,18,19,21,22,24,26,28,46,36,10,39,40,41,29,34,45,47,48,56,50,51,52,11,54,1],gzip:42,regular:[5,20,33,22],letter:[20,37],grave:49,don:[49,14,42,46,1,3,31,51,19,6,44,7,53,54,39],dom:[12,48,1,51,19,52,41,22,10,39,24],doe:[49,44,37,15,28,55,48,3,51,19,20,11,22,7,23,53,10,39,24,54],declar:[44,45,56,50,49,6,11,36],place:[0,45,6,40,49,4,51,19,20,29,25,22,37,7,24,1,35],tfrac:49,unchang:[49,14,55,51],sum:[49,28],came:37,delaystartupuntil:[39,30,22,7],random:[20,37],lnapprox:49,syntax:[49,47,40,42,15],mediawiki:2,isopera:39,outerhtml:42,shownam:46,asynchon:51,next:[15,52,51,49,31,39,48],involv:[49,52,54,7,4],consolid:23,just:[19,44,37,2,28,46,49,43,20,1,22,7,8,23,54,39,29,56],mathchoic:49,ismsi:[39,30],menu:[13,44,45,42,48,30,50,43,34,22,36,8,37,53,38,24,54,11],explain:[14,2,43,52,7,26],configur:[0,3,5,6,7,8,9,10,13,14,42,18,19,20,25,22,23,24,26,27,15,30,31,32,33,35,36,37,38,39,41,43,44,45,46,21,49,11,53,54,55],apach:37,theme:[7,2,8],rich:[23,47],folder:[20,45,37],stop:[49,39,45],infti:[49,54],amazon:20,report:[44,22,4],circeq:49,subseteq:49,fadeouttim:6,bar:[49,40,28],patch:[7,37],reload:50,bad:42,replacechild:3,neq:49,unexpectedli:[49,20,15],undefinedfamili:45,dashrightarrow:49,scriptscriptstyl:49,precneqq:49,result:[14,45,28,15,46,47,48,1,51,49,20,44,7,53,10,39,24,54],respons:[49,29,10,42,28],fail:[0,42,46,41,53,26],themselv:[34,30,43,20,21,39],best:[0,14,37,15,1,53,54,7],awar:[49,0,1,44,15],subarrai:49,varinjlim:49,wikipedia:[47,3],circledcirc:49,gneqq:49,awai:[49,7,37],approach:[46,54,2,51],attribut:[12,44,42,20,56,49,32,21,54,7],blacktriangleright:49,extend:[23,54,15],extens:[0,30,5,6,14,42,43,19,20,25,22,26,27,39,32,33,35,36,7,41,49,34,47,56,50,51,1],add:[40,5,14,2,28,17,49,43,6,33,41,22,48,53,24,56],preprocessor:[5,14,15,20,49,44,30,34,43,32,33,27,22,7,54,39,51,26,35],toler:3,intop:49,protect:49,expos:15,cow:40,howev:[49,14,37,46,30,56,3,4,18,43,20,22,51,53,54,7,40,1,26],configuraiton:[49,54],against:29,seri:[1,21],com:[7,37],varpsi:49,pre:[5,14,37,28,49,43,6,33,19,7],foral:49,can:[0,3,4,5,6,7,12,14,28,43,17,18,19,20,25,22,23,24,26,15,29,30,46,33,34,35,37,10,39,40,41,42,49,44,45,47,56,11,51,52,53,54,1],foobar:40,delic:11,innerhtml:[3,51],height:[49,24,42,50],wider:4,summat:31,sqsupset:49,speak:[16,54],issol:49,chrome:[45,53,39,3,42],three:[44,37,28,46,1,49,6,21,41,52,53,54,20],been:[0,3,4,5,14,17,18,19,20,24,28,30,46,33,35,10,7,29,37,1,51,52,53],trigger:[43,24,22,36],interest:[19,29,47,4,52],basic:13,tini:49,quickli:[23,7,4],underrightarrow:49,regul:1,xxx:49,ani:[0,3,4,5,6,7,9,11,14,43,17,18,19,20,25,22,24,27,28,29,30,31,32,33,36,37,10,39,40,49,44,45,46,48,1,50,51,52,53,55],emploi:53,dash:[56,45],tanh:49,hat:49,servic:[14,37,42,20,38,7],properti:[12,0,34,40,28,29,17,46,41,48,10,39,24],diamondsuit:49,sourceforg:14,weren:14,dashboard:38,"3px":[49,56],succeq:49,have:[0,2,30,4,5,6,7,14,15,43,19,20,11,22,24,26,28,29,3,46,33,37,39,40,42,49,44,45,31,48,1,51,52,53,54],nexist:49,retransl:[48,51],tabl:[53,44,15],cong:49,sever:[0,5,14,37,49,51,43,46,33,54,24,1],amout:18,disabl:[11,14,45],incorrectli:[20,14,42],perform:[30,4,6,14,42,17,18,19,41,22,48,28,46,39,10,7,29,34,47,24,1,51,52,53],suggest:[6,4,20],make:[0,4,5,6,14,42,43,16,17,19,20,22,23,24,27,39,32,33,37,7,40,49,44,45,56,50,51,52,53,54,1],complex:[53,21],split:49,synch:14,lrcorner:49,unsafewindow:3,complet:[0,30,5,14,43,17,19,20,41,22,24,28,29,39,46,33,7,49,37,47,48,1,51,52,53],longmapsto:49,hand:[44,34,3,18,25,22,54,35],fairli:[21,14],rais:[49,42],mkern:49,ignorepast:29,unlhd:49,squar:[49,21,42],redefin:[6,10,41,24],kept:19,thu:[14,28,1,19,46,48],min:49,inherit:[16,40,10,24,48],client:45,thi:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56],idotsint:49,programm:40,everyth:[43,49,1,39,7],settimeout:[46,28],left:[44,37,34,30,18,49,52,25,22,8,38,26],processclass:[5,33],identifi:[12,29,15,49,20,54],proccess:[10,24],yen:49,mathbin:49,human:20,coprod:49,yet:[44,17,1,51,19,52],languag:[49,20,54,47,52],noscript:[5,33],onload:[34,3,30,46,22,7],errorset:[43,22],easi:[47,35],interfer:[20,31],had:[19,20,14,3,7],myconfig:[19,46],step1:49,els:[49,46,3,51],save:[53,38,7,56,8],"0x21c0":49,take:[12,0,14,28,2,46,1,30,4,51,49,6,25,52,53,7],sanit:18,applic:[23,20,30,2],loadtimeout:0,preserv:46,bbox:49,background:[49,56,42],sqsubset:49,specif:[0,7,2,28,29,47,17,1,34,5,46,33,41,22,51,53,54,39,48],arbitrari:49,manual:6,zoom:[13,44,42,30,43,22,36,24],leftrightarrow:49,underli:53,www:[20,3,37,50],right:[11,44,45,47,17,1,3,18,49,31,25,22,8,37,54,7,26],old:19,famili:[49,0,45],deal:20,autobold:49,interv:31,begin:[19,37,15,49,30,51,5,25,53,54,7,1],percentag:[11,45,22],intern:[0,44,15,28,29,47,17,1,51,49,22,48,53,10,39,24,54],successfulli:[0,46],interc:49,dddot:49,bottom:[7,8],subclass:[29,34,24,41,48,10,40],circ:49,tracker:[20,4],overcom:52,condit:[0,30],foo:[40,28],core:[1,30,49,22,54,39,26],plu:[43,29,30],bold:[49,47,21,25,26],insecur:20,popular:[20,35,2],colleg:37,repositori:[14,37,42],post:[29,45,28,30,4,18,19,52,41],"super":[40,42],llless:49,obj:12,nwarrow:49,slightli:[49,53,8],surround:[20,11,45],unfortun:[20,37],current_theme_templ:2,joomla:2,span:[49,27,5,32,33,21,22,54,24,35],downharpoonright:49,geramond:49,regist:[0,7,29,47,30,19,52,41,10,39,24,54],jipsen:15,encod:[49,15],bound:49,two:[19,1,15,52,49,43,20,21,22,56,7,25,26],down:[37,38,24,22],shortparallel:49,wrap:40,ntriangleright:49,stackrel:49,nsupseteq:49,git:[20,14,37,42],suffici:[15,49,20,25,7,55],support:[13,14,45,42,15,20,30,49,3,4,34,43,6,44,23,53,54,7,55,11],transform:54,ngtr:49,avail:[0,2,3,5,6,14,43,19,20,11,22,23,48,27,32,33,37,7,40,49,44,45,47,1,50,51,53,54],width:[44,50,49,20,25,53,24],reli:[0,14,47,1,3,51,46,11,53],wordpress:[2,8],editor:8,rightthreetim:49,lnsim:49,longdiv:49,form:[44,45,47,18,49,20,25,22,54,7,48],offer:[14,42,4],forc:[45,53,7,24],epsilon:49,hear:[19,29],so4:49,downdownarrow:49,"true":[5,14,45,28,29,48,49,30,50,43,31,34,22,7,11,9,39,40,10],maxmacro:25,reset:[50,28],displayalign:22,donald:47,tell:[20,7,37,51,53],moveright:49,more:[49,6,8,10,14,42,17,20,21,22,23,28,29,46,39,35,37,38,7,40,41,43,45,47,56,11,51,52,53,54,55,1],retir:14,featur:[13,44,37,49,4,51,19,46,36,53,40],rfloor:49,exist:[45,28,49,20,37,40],ddot:49,backsim:49,triangleq:49,check:[0,14,37,46,18,49,20,29,10,40],tip:49,abovewithdelim:49,role:54,test:[12,13,14,37,52,30,3,51,19,20,44,7,53,39,40],tie:[30,24,28],smallsmil:49,scriptstyl:49,searrow:49,mathel:2,intend:[47,40,22],munderov:54,gvertneqq:49,consid:[0,14,42,49,4,5,20,54,39,48,1],omega:49,outdat:4,longer:[29,14,37,3,18,43,53],furthermor:[1,14,22,7],anywher:7,cancelto:49,tex2jax_ignor:[5,42],ignor:[5,49,33,29],time:[0,3,4,49,6,12,39,42,18,19,25,22,28,46,36,7,41,29,37,1,51,53,54],push:[28,47,17,1,30,51,46,39],"5kb":25,mathrm:49,doteq:49,skip:[5,33,37],consum:18,known:1,skin:2,displayind:22,millisecond:[0,45,28,50,18,6,36,39],decid:[7,50],middl:[49,20],depend:[28,30,51,46,8,53,7,55],head:[2,3,51,20,8,53,38,7],decim:[49,31],readabl:47,nearrow:49,varpi:49,certainli:37,vee:49,decis:53,text:[2,30,5,6,8,10,12,14,42,43,18,19,20,21,22,23,48,25,27,15,3,32,33,35,38,7,49,45,46,47,56,11,51,53,54,1],succnsim:49,sourc:[13,14,45,37,49,3,50,43,44,19,23,53,54,39,48,1,11],string:[0,28,29,49,18,5,56,33,21,22,19,39,48,25],word:[5,33,7,54],room:25,dim:49,getjaxfor:[19,39,24],administr:[2,8],level:[20,7,37,34],did:46,item:[11,45,50,49,46,21,24],cooki:[12,30,42],div:[12,49,54,35,51],prevent:[49,27,45,42,20,50,5,32,33,25,22,7],mmlorhtml:[43,53,55,22,26],slower:53,htmlcss:24,compens:11,sign:[49,14,15,5,20,33,54,7],cost:[49,20,7,40,15],pmb:49,rightarrowtail:49,histori:[19,29,30,47],xandi:40,dotsi:49,dotsm:49,appear:[19,34,37,15,46,49,31,18,5,20,33,22,51,8,7,48,50],dotso:49,repli:19,dotsc:49,dotsb:49,current:[0,7,45,37,2,29,40,20,8,53,38,39,24,10,48],backepsilon:49,ampersand:[49,15],inlinemath:[49,14,3,51,5,20,33,7],defici:44,amalg:49,mathsiz:49,gener:[49,7,15,20,55,48,30,43,6,35,46,54,39,24],mfrac:[20,54],explicitli:[49,14,42,15,46,5,20,33,22,7,40],modif:[1,7],address:[20,37,51],along:[49,47,1,18,19,35,10,24],wait:[0,7,37,42,28,29,47,17,1,3,51,19,46,30,22,52,10,39,24],box:[0,42,30,49,6,24],html_head:2,shift:22,xtwoheadrightarrow:49,bot:49,queue:[29,34,28,52,16,17,1,30,51,46,47,39],overriden:39,digamma:49,varlimsup:49,commonli:[43,20,47],macintosh:39,semant:40,succsim:49,extra:[49,42,3,19,22,54],circumv:37,modul:[0,38,34],prefer:[14,45,50,20,53,37,55],iepro7:3,veebar:49,visibl:[49,27,1,51,5,32,33,44,24],marker:[49,15],myid:56,mobil:[14,42,7,23,53,39],arrowvert:49,memori:[52,48],bigr:49,visit:20,todai:47,subvers:[20,37],stylesheet:[0,34,28,29,17,30,51,52,22,8,53],handler:[0,34,47,3,30,51,52,22,54,7,24],xtofrom:49,current_skin:2,bigl:49,bigm:49,eqcirc:49,checkout:37,bigg:49,inputjax:[34,16,48,30,41,10,39,40],capit:16,reduct:53,peopl:20,bigtriangleup:49,enhanc:[54,42],minscaleadjust:45,visual:[43,23],accept:[46,28,51],hphantom:49,easiest:[19,20,37,28,46],graphic:[47,53,37],prepar:[1,7,24],cap:49,uniqu:56,pmatrix:49,whatev:[49,2,15,24,1,51,19,40],cal:49,purpos:[46,54],getjaxbytyp:39,downharpoonleft:49,meant:28,subseteqq:49,varprojlim:49,backslash:[49,25,22],topic:[16,13,7],critic:37,sharp:49,chemic:49,occur:[0,44,37,28,46,17,1,3,50,18,19,20,30,41,22,7,52,39,24,29,51],eqsim:49,pink:49,alwai:[28,16,1,49,46,7],multipl:[49,1,14],trianglelefteq:49,write:[29,15,47,1,51,20,23],fourth:1,mathsf:49,tild:49,xhtml:[20,44],map:[54,24],book:47,max:49,clone:37,spot:[49,15],usabl:37,mac:[11,39,45,22],cours:[1,14,44,7],mai:[0,2,3,4,49,6,8,14,16,19,20,11,22,24,15,29,46,39,37,7,40,5,44,45,48,1,51,52,53,54],underscor:[49,20],data:[12,0,34,45,28,46,40,19,20,41,48,37,10,39,24],grow:[53,2],newlin:[49,42,18],vartheta:49,baso4:49,explicit:[0,7,22,20],uparrow:49,produc:[49,6,14,19,20,25,22,23,48,26,28,46,35,53,10,7,29,45,24,50,51,11,54],programmat:[54,35],"switch":[14,37,42,49,35,54],preced:[46,7,22],combin:[0,14,42,31,49,43,20,53,54,7],block:[11,14,45,42,20,3,30,49,6,41,22,54,7],approx:49,comfort:37,lsh:49,tex2math:35,still:[19,44,2,28,29,47,1,43,22,36,53,7],pointer:40,ttf:37,dynam:[0,34,13,1,3,51,20,22,52,23,54,7],entiti:[49,44,42,15],amssymbol:[43,20,49,14,7],conjunct:14,group:[0,44,4],monitor:4,polici:37,mpcontext:43,lucki:49,platform:[23,13,2,20],window:[34,28,6,3,50,18,46,51,53,39],"05em":49,bookmarklet:7,main:[49,14,37,1,16,40,56,50,34,43,20,41,22,7,53,10,39,24,54],mathexampl:51,non:[12,0,15,17,49,20,53,54],within:[0,30,49,6,14,28,16,20,25,24,15,39,46,33,35,7,40,42,5,44,37,51,52,54],myinputjax:41,initi:[0,14,15,52,49,30,50,34,5,20,33,41,22,7,19,54,39,48,1],safari:[53,39,3,42],half:46,now:[14,37,42,47,30,43,20,53],discuss:[12,37,7,3,4],nor:[6,21],term:[20,14,7,18],name:[0,30,5,6,7,12,14,28,43,18,19,20,21,22,24,25,26,15,29,3,46,33,37,10,39,40,41,42,49,44,45,48,56],opera:[53,55,39,3,42],boxdot:49,drop:37,separ:[19,14,37,1,49,18,5,20,33,44,22,11,7,56,26],messagestyl:[6,22,18],confid:23,varsupsetneqq:49,compil:46,domain:[20,7,37],replac:[0,14,37,42,28,40,44,3,51,49,20,25,7,10,39,24,54],individu:[48,42,26,51],strikethrough:49,continu:[0,14,15,49,19,52,7,1],happen:[44,37,15,17,1,3,49,52,54],baselin:24,shown:[49,21,22,50,51],accomplish:[20,7,37,53],"3rd":20,space:[42,15,31,51,49,20,22,53,9,48,54],intermix:30,internet:[0,42,3,50,18,49,46,22,53,54,51,24,26],formula:[51,22,36,23,53,54],correct:[46,14,3],simeq:49,earlier:[20,1,7,30,53],state:[10,24,1],migrat:[13,14],ajax:[0,7,16,1,30,34,49,46,41,19,39],mime:[44,48,20,41,10,39,24],underleftarrow:49,org:[14,42,2,3,50,51,49,20,35,8,53,38,7],ord:49,care:[15,31,3,49,20,26],ntrianglelefteq:49,couldn:46,x00b1:20,synchron:[0,28,13,47,17,1,3,51,19,46,30,52,39,29],mscarri:44,thing:[15,47,51,49,20,21],eqref:49,mathop:49,unwis:53,think:[49,22,15,51],frequent:[5,19,33,15],first:[3,49,8,28,19,20,21,22,24,15,29,46,33,37,10,7,5,44,45,1,51,52,54],origin:[40,49,37,15,29,17,3,51,19,20,48,10,7,24],lfloor:49,oni:37,directli:[37,42,1,3,51,49,46,41,8,54],onc:[0,37,28,29,49,30,51,43,20,35,53,10,24,1],arrai:[30,49,6,9,7,42,17,19,21,22,24,25,26,27,28,29,31,32,33,35,10,39,41,5,45,46,11,53,54,55],yourself:[37,20,17,49,46,22,7],fast:[14,42,7],open:[13,44,37,50,49,20,8,23,38],ios4:42,size:[11,45,42,56,51,49,25,53,7,24],given:[0,2,49,12,15,17,18,19,20,21,22,48,28,46,10,39,40,42,29,24,56,54,1],convent:24,ifmodul:37,referenec:39,leftrightharpoon:49,circl:49,white:56,conveni:[20,40,22],hub:[0,30,5,6,7,9,11,14,43,16,18,19,20,25,22,24,26,27,15,3,31,32,33,35,36,10,39,49,34,45,46,48,1,50,51,53,54,55],especi:54,copi:[14,37,15,3,4,43,20,44,7,23,39,41],specifi:[30,49,6,7,9,11,12,14,28,17,19,20,21,22,25,15,29,46,33,36,10,39,42,5,45,47,56,50,52,53,54,55,1],github:[14,37],enclos:[49,54,56,45,22],quad:49,than:[0,3,5,6,7,8,9,14,28,43,17,19,20,41,22,23,48,26,15,29,30,31,33,37,10,39,40,42,49,44,45,47,56,51,52,53,54,1],serv:[20,42],wide:[23,54,37],instanc:[12,7,48,1,5,33,41,39,40],underbrac:49,were:[14,48,51,19,53,24],posit:[49,17,45,42],stub:41,browser:[30,5,6,12,13,14,42,43,20,11,22,23,48,26,15,39,3,33,34,35,37,7,49,44,45,47,50,52,53,54,55],preccurlyeq:49,sai:[17,3,28],lnot:49,doublecup:49,nleftrightarrow:49,argument:[29,28,1,49,46,40,26],hskip:49,doctyp:[20,44],engin:[23,13],techniqu:[14,3],npreceq:49,consortium:23,note:[0,3,49,6,8,39,20,21,22,48,25,15,29,46,33,37,7,41,5,45,56,50,51,53,54,55,1],x2260:20,jsmath:[13,54,35],noth:[20,28,46],channel:[19,47],updownarrow:49,surd:[49,42],sure:[49,14,37,42,29,1,4,51,5,20,33,53,7],windowset:50,normal:[5,28,49,3,43,20,33,22,54,56],buffer:25,compress:7,beta:[49,7],pair:[12,0,28,49,5,56,33,21,19,10,39,24,25,26],fileurl:0,beth:49,hotfix:7,latex:[13,15,47,49,5,20,22,23,54,7],renam:14,textarea:[5,33],later:[29,44,45,28,15,17,1,49,46,7,39],drive:37,typeset:[0,30,5,42,18,19,11,22,23,48,27,46,33,36,39,34,45,32,47,1,50,51,52,53,54],badg:4,sigma:49,mathfrak:49,showmathmenu:45,ismobil:39,show:[49,37,20,4,51,43,6,21,22,46,38,50,26],autoreset:28,parentnod:[3,42],unprocess:[39,48,51],concurr:30,permiss:[20,37,15],hack:53,isfirefox:39,corner:[34,22,18],xml:[23,47],onli:[0,2,3,4,5,6,14,42,43,20,21,22,23,48,15,29,39,46,33,37,10,7,49,45,47,56,51,53,54],slow:24,activ:[14,37,28,47,4,51,43,52,44,54],behind:49,inlinedelimit:49,otim:49,black:49,offici:7,geq:49,mypic:[5,32,33,21,27],nearli:[43,49,7,26],variou:[0,7,45,2,29,16,56,18,19,6,11,10,39,54,26],get:[30,49,12,13,28,18,20,11,22,24,15,3,46,37,7,40,42,29,44,45,1,51,53],cannot:[49,15],ncong:49,downarrow:49,nsim:49,requir:[0,5,14,1,28,46,49,3,43,20,33,41,7,19,23,10,39,24,54],truli:51,prime:49,blind:54,lceil:49,mathpunct:49,rerend:[10,39,48,51],consist:[44,15,1,49,21,53],hostil:20,intermitt:[34,18],shortmid:49,apricot:49,through:[49,14,37,42,29,1,50,19,52,44,53,54,7,40,26],where:[0,30,4,49,6,12,14,28,18,19,20,25,24,15,46,39,37,10,7,43,34,45,48,56,51,52,54],wiki:[2,47,3,49,20,54,7],latexmathml:15,often:[49,20,56,54,15],keyboard:47,maximum:24,ismac:[39,30],concern:[54,39,15],infinit:25,detect:[3,42,28],parent:[12,40],enumer:49,label:[53,50,26],enough:[44,1,20,21,53,7],between:[49,7,28,15,46,1,50,19,20,53,54,39,48,42],maltes:49,"import":[0,37,42,1,43,52,19,7],across:[47,53],absenc:2,longleftrightarrow:49,vdot:49,screen:[0,42,1,18,43,23,51,24],negmedspac:49,come:[14,37,1,3,43,46,44,53,54,7],leftleftarrow:49,fit:[19,50],timout:0,pertain:20,audienc:[53,44],inconsist:14,overbrac:49,improv:[14,42,4,22,53,7],among:7,color:[42,47,56,49,21,22],operatornam:49,period:[0,34,37],colorbox:49,colon:[49,56],cancel:[49,28],"70kb":7,bigcirc:49,msrow:44,damag:20,needlessli:46,myserv:7,rebuild:39,mark:[0,44,15,49,5,20,33,35,54,56],addit:[0,1,14,15,28,20,17,49,51,43,6,44,48,22,46,19,10,39,24,56,42],succapprox:49,upharpoonleft:49,arcsin:49,xrightharpoonup:49,mathplay:[42,3,50,43,22,53],breve:49,texfont:6,blacktriangl:49,former:31,those:[49,6,39,17,19,20,21,22,23,48,28,29,46,10,7,41,43,44,37,24,56,51,54,1],"case":[3,49,14,16,19,20,21,22,48,26,28,46,37,7,40,45,31,24,56,51,53,54,1],kappa:49,tostr:28,oldstyl:49,addtext:12,trick:49,invok:53,invoc:7,margin:[56,25],opera10:45,advantag:[53,1,14,7,2],ctrl:22,leadsto:49,henc:37,worri:[19,54],destin:39,somewher:7,updatemath:51,bigwedg:49,develop:[14,37,47,4,44,7],author:[14,15,18,49,20,41,22,36,23,54],media:[56,7,37],postjax:[54,22],same:[5,14,37,42,15,20,49,8,27,43,32,33,25,29,19,52,7,24,1],html:[2,30,5,6,7,9,12,13,14,42,16,19,20,21,22,24,26,27,15,3,32,33,34,35,37,38,39,43,44,45,47,49,50,51,52,53,54,55,56],pad:[12,49,56],knuth:47,mathvari:54,document:[0,14,37,47,15,13,16,49,3,51,5,20,44,22,7,23,53,54,39,24,35],bring:54,finish:[47,1,3,51,52,39],vvdash:49,nest:[44,42,34],availablefont:[6,7,45],someon:49,hslash:49,capabl:[16,23,53],formaterror:39,mani:[49,7,42,52,56,5,46,33,53,39,1],extern:[0,34,46,1,19,52,39],submenu:[22,50,8],appropri:[19,49,43,35,10,24,54],macro:[42,49,20,25,22,7,26],mml_svg:[43,7],leftharpoonup:49,overwithdelim:49,without:[0,14,45,46,47,49,19,6,44,7,11,54,39],model:[13,34,37,16,30,49,53,54,40],bigotim:49,stixfont:6,mml2jax:[44,20,43,32,22,54,26],loaderror:0,when:[0,3,5,6,7,8,9,11,14,15,16,17,18,19,20,25,22,23,24,27,28,29,30,31,32,33,34,35,36,37,10,39,40,41,42,43,44,45,46,47,21,49,50,51,52,48,53,54,55,1],greasemonkei:[7,3],bitmap:47,flavor:[43,7],speed:[53,54,14,42,7],versu:1,strikeout:49,widest:[20,44],asciimathml:15,nleqq:49,filevers:34,except:[43,20,52,53],littl:[0,29],blog:[2,47,49,20,54,7],rescal:53,treatment:49,yuicompressor:42,earli:[7,42],hover:[50,22,36],around:[49,7,15],read:[14,37,42,47,21,19,20,44,7],outermost:21,boldsymbol:49,messsag:18,getjaxbyinputtyp:39,moo:40,world:[23,46,7],lasterror:39,mod:49,sum_:54,blackberri:42,asciimath2jax_process:33,cdot:49,integ:[49,39],server:[49,14,45,42,3,43,20,37,7],either:[0,14,37,2,29,16,49,3,56,5,20,33,21,7,36,19,53,39,55,25],output:[30,49,9,13,14,42,19,20,11,22,24,26,15,39,44,35,10,7,40,43,34,45,47,48,56,50,51,53,54,55],rollov:42,manag:[12,34,37,2,46,47,30,18,49,20,54,48],lesssim:49,node:12,respect:[11,45,28],inlin:[5,20,33,14],constitut:16,pod:49,slice:28,easili:[23,20,54,47],definit:[0,45,42,49,50,43,25,36,23,11,56],shoveright:49,inputid:48,dashleftarrow:49,mathcal:49,complic:[47,53,21,44,55],refer:[19,7,37,13,30,3,52,51,43,6,29,41,46,48,10,39,40,20],arrow:49,power:[1,4],inspect:39,broken:54,thinspac:49,found:[0,37,20,4,46,22,53,10,24],regexp:[5,33],"throw":[24,10,41,3],trianglerighteq:49,comparison:[1,39],ibook:53,firstnam:46,ddddot:49,stretch:49,act:[49,47,1,19,46,25,22,54],industri:47,needsupd:[10,48,51],processor:[49,44,45,1,15,31,47,55,56,30,50,43,20,25,53,9,7,24,54,26,11],hookrightarrow:49,nobreakspac:49,routin:[12,0,52,46,41,10,39,24],nsupseteqq:49,effici:[40,51],elementari:44,lessdot:49,triangledown:49,compos:44,rightharpoondown:49,mathbackground:49,your:[0,2,3,4,5,6,7,8,9,11,13,14,42,43,20,25,22,23,27,15,31,32,33,35,36,37,38,39,49,44,45,46,47,21,1,50,51,52,53,55],compon:[0,30,49,14,43,16,19,20,23,24,26,15,39,44,10,7,40,29,34,56,50,52,54],log:[49,20,37,18],area:[25,18],aren:49,fontwarn:[6,22,26],lor:49,strict:37,compliant:[14,42],interfac:[37,2,20,8,23,38],low:28,lot:[19,25,37],lambda:49,verbatim:49,cloudfront:20,buggi:49,categor:26,faster:[43,53,54,7,42],pull:37,mathml:[3,49,8,9,38,13,42,20,11,23,48,26,15,10,7,43,44,47,24,51,53,54,55],bullet:[49,47],possibl:[0,44,37,15,28,6,56,18,43,20,22,46,53,54,7,40,1,42],"default":[0,30,5,6,7,9,11,14,28,43,18,20,25,22,24,26,27,15,32,33,35,36,37,10,39,41,49,45,31,50,53,54,55],processescap:[5,49,14,7],buildrel:49,notag:49,asiimath2jax:15,embed:44,connect:[43,20,54,7,46],taylor:20,creat:[0,30,4,49,12,18,19,41,48,28,46,10,40,29,34,37,47,24,56,50,52,54,1],certain:[19,29,52],leftrightsquigarrow:49,risingdotseq:49,varliminf:49,file:[0,2,3,49,6,7,8,10,14,15,17,18,19,20,21,22,24,26,28,29,30,46,35,38,39,41,42,43,34,37,31,47,48,56,52,53,54,55,1],momentarili:39,outputjax:[34,16,48,30,41,39,24],fill:[53,55],again:[49,0,39,48,51],iiiint:49,googl:4,pmod:49,event:[0,42,47,30,3,51,43,52,22,19,54,24],wai:[2,3,49,14,18,19,20,41,22,27,28,29,32,33,7,5,37,46,1,51,53,54],getscript:12,you:[1,2,3,4,5,6,7,8,9,11,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,30,31,32,33,35,37,38,39,40,41,42,43,44,45,46,47,49,50,51,52,53,54,55,56],trash:48,poor:53,resolut:23,sequenc:[13,7,37,17,49,30,19,52,39],symbol:[49,20,15,31],mhchem:49,begingroup:49,dashv:49,track:[54,24,4],menuset:[43,22,36],reduc:[49,7],mathcolor:49,lbrace:49,directori:[0,45,42,52,47,48,30,18,43,20,41,22,19,37,10,7,24],descript:[27,32,3,5,6,33,34,22],lbrack:49,hello:46,calle:40,potenti:1,extpfeil:49,escap:[49,25],dst:39,negthickspac:49,lvertneqq:49,all:[0,2,3,5,6,7,13,14,42,43,18,19,20,41,22,23,24,26,27,28,29,30,32,33,34,39,40,49,44,37,46,47,1,52,53,54],consider:7,illustr:51,dollar:[49,14,15,5,20,33,7],mathjax_displai:56,abil:[14,37,42,47,53,54],follow:[30,49,14,42,16,19,20,21,24,26,28,46,37,10,7,40,41,43,45,56,51,54],alt:[3,22],disk:[43,20,7,37],multlinewidth:25,scr:49,articl:47,init:40,program:[34,2,52,16,48,1,30,20,23,54,40],smile:49,cgi:0,introduc:[20,7,53],liter:[5,49],multlin:[49,25],vert:49,far:[0,29,37,15,18],varrho:49,"1px":[12,49,56],verb:49,mechan:[49,28,29,17,1,30,19,52,40],difficult:[46,44,52],loadcomplet:[49,0,39,41,7],veri:8,preferredfont:45,alterant:47,list:[2,30,49,6,8,9,38,7,16,19,20,25,22,24,27,28,32,33,36,37,10,39,5,45,31,47,48,1,50,51,11,54,55],"_html":53,emul:53,adjust:[45,3,51,11,8,38,7],plain:49,small:[45,42,18,49,25,54],dimens:[49,42],getalljax:[39,51],foreground:56,lll:49,tex:[2,3,5,6,7,8,9,10,13,14,42,43,19,20,25,22,23,26,27,15,34,35,37,38,39,41,49,44,45,47,1,51,53,54],zero:[6,17],design:[44,3,4,43,23,38],pass:[0,14,42,28,29,17,1,30,50,43,46,19,54,39,40,26],overlin:49,further:[17,1,53,10,24,54],what:[0,30,4,49,6,13,39,28,20,11,22,23,27,15,32,33,36,7,42,5,44,45,50,51,54],sub:34,section:[3,5,6,7,9,11,14,42,43,25,22,26,27,15,31,32,33,35,36,38,39,49,44,45,46,50,53,55],advanc:[16,13,23,7],abl:[19,14,45,28,2,20,49,51,43,6,44,22,8,23,37,38,7],delet:45,version:[13,14,37,42,15,46,30,3,4,34,43,20,41,7,36,48,53,10,39,24,51],sup:49,"public":[29,37],hasn:[0,14,30,18,10,24],full:[0,42,46,16,3,51,43,20,22,23,54,7],hash:30,geqslant:49,modular:[23,44],ggg:49,trunk:37,standard:[19,37,47,49,43,20,23,53,54,7,56],modifi:[13,14,2,51,49,18,43,20,41,7,19,39,24],valu:[0,30,49,6,9,12,42,17,19,21,22,24,25,26,27,28,31,32,33,36,39,40,5,44,45,46,56,50,51,11,54,55,1],search:[23,13,39,4],sender:19,prior:[49,53,44,3,22],amount:[49,6,39,25,28],action:[0,3,49,39,28,17,18,19,41,24,15,30,46,36,10,7,29,34,47,1,51,52,54],mathjax_wikipedia:3,mml_htmlormml:[14,2,3,43,20,8,53,38,7],llap:49,via:[0,2,30,5,6,14,42,18,19,20,41,48,26,28,3,33,36,37,7,40,43,44,45,1,54],shorthand:51,filenam:[46,14,7],href:[49,21,42],inappropri:19,emptyset:49,simbl:3,decrement:17,establish:43,select:[44,37,45,50,43,11,53,39],hexadecim:49,proceed:[1,21],x41:49,distinct:16,barwedg:49,stretchi:49,rightsquigarrow:49,taken:[19,49,1,51,53],imath:49,ispc:[39,30],toggl:49,vec:49,flat:49,diamond:49,desir:[43,40,3,37],mlongdiv:44,ital:[49,0,47,22,20],flag:22,aleph:49,particular:[12,0,7,37,15,28,46,47,17,56,49,20,29,22,52,53,54,39,40],webkit:[39,42],upsilon:49,mathml3:44,cach:[19,7],showmathmenumsi:[11,42],none:[29,27,45,28,46,5,32,33,22,7,54,39],outlin:42,det:49,dev:4,widehat:49,remain:[43,47],paragraph:[49,6,54,51,20],caveat:[20,24,37],def:[49,25,40],deg:49,mathtip:49,scan:[39,22],myspan:21,challeng:43,registr:41,share:[20,7,37,4],templat:[38,7,2,8],succneqq:49,minimum:[39,45,42],unreli:14,explor:[0,42,3,50,18,49,46,22,53,54,51,24,26],phrase:[49,20,15],mathinput:51,huge:49,rowspan:44,goal:23,awkward:40,secur:[20,3,37],rather:[0,3,5,6,9,14,42,43,17,19,20,41,22,23,48,26,28,30,31,33,7,40,49,44,37,47,56,51,52,53,54,1],anoth:[49,37,29,17,1,18,19,52,10,51,54,26],showmathmath:11,csc:49,snippet:[12,13,27,32,49,4,5,6,33,21,22,39],ddagger:49,stix:[45,42,47,49,6,37,53,54,7],simpl:[53,21,22,18],css:[0,49,6,9,13,14,42,20,11,22,24,26,39,44,35,36,37,7,43,34,45,47,48,56,50,51,53,54,55],unabl:6,regener:[48,51],resourc:42,referenc:6,algebra:47,mtabl:43,variant:47,reflect:[30,51],vdash:49,mstack:44,impliedbi:49,associ:[11,45,28,48,51,49,46,41,10,39,24,54],welcom:4,lhd:49,footer:7,confus:[20,14],ambigu:16,caus:[0,49,6,5,39,18,19,20,25,22,48,15,46,33,34,10,7,29,44,37,24,1,50,51,54],callback:[0,34,28,29,16,17,1,30,52,51,19,46,47,48,10,39,24],firefox3:45,merror:56,unrhd:49,help:[13,14,37,4,20,50,53,7],soon:[7,3,22,51],trade:[53,7],retypeset:51,hierarchi:[7,37],suffer:53,paramet:[0,30,49,12,14,28,17,18,20,25,22,24,26,27,15,29,32,39,10,7,40,41,42,43,46,48,51],style:[12,0,45,42,13,47,49,30,50,18,5,6,33,21,22,36,56,11,54,39,20],arial:[49,45],border:[12,49,56],x221a:44,processupdatetim:39,x221e:54,late:[47,3],isreadi:[34,30],pend:17,amsmathaddit:1,processenviron:5,might:[0,14,37,46,1,4,19,20,25,7,54,44,24],alter:[5,48,51],cee:49,good:[1,3,4],"return":[12,0,44,40,28,29,17,1,52,18,19,46,41,51,48,10,39,24],textstyl:49,longleftarrow:49,getelementbyid:51,wilipedia:47,rlap:49,xtwoheadleftarrow:49,mathscr:49,instruct:[21,20,14,3,2],bigcup:49,ntriangleleft:49,iff:49,iint:49,fulli:[20,1,44],unicod:[49,6,44,45],x2211:54,subsystem:30,originaltext:48,weight:[21,40],setrender:39,hard:[37,42,4,43,20,7],realli:[46,22],nless:49,expect:[49,1,7,22,51],math2:49,math1:49,beyond:[49,4],orient:[16,40,34,30],"try":[37,4,19,20,41,40],looparrowright:49,shortcom:52,skiptag:[5,33],print:[23,53,56,37],occurr:52,msie:[11,39,55],difficulti:49,assist:43,safari3:45,ast:49,offsetx:45,symbian:42,mml:[7,55,43,20,34,53,10,39,48,54],reason:[0,44,15,46,1,3,50,18,49,20,25,39,41],base:[37,14,45,2,28,52,16,30,3,34,6,41,7,48,23,53,39,40],put:[0,14,37,15,52,49,20,7,26],mathr:49,processupdatedelai:39,offseti:45,basi:[53,7,55],succnapprox:49,stanard:49,drupal:2,msbm10:20,showprocessingmessag:[22,26],perhap:[46,7],bumpeq:49,perman:49,elementjax:[34,16,48,30,41,10,24],stixgener:[49,45],getelementsbytagnam:3,assign:[5,46,33],major:[23,53,7,3],notifi:19,boxplu:49,upper:49,feel:4,exchang:47,lastnam:46,number:[0,2,30,49,6,14,42,18,20,21,22,24,25,28,46,39,10,7,41,43,34,37,31,48,1,51,53],grtaphic:54,fadeoutstep:6,done:[17,1,30,49,20,54,7],least:[54,39,7,15],blank:[29,28],stabl:[20,7,37],miss:[49,15,28],differ:[49,7,37,28,46,1,51,19,20,52,54,39,40],script:[0,2,30,5,8,10,12,14,42,43,19,20,41,22,24,39,3,33,35,38,7,49,37,48,1,51,53,54],interact:[7,20,23,54,39,48],smoother:6,construct:[54,1],statement:[1,28],exten:15,illeg:[21,42,7],store:[12,29,14,45,42,28,48,1,51,46,34,35,7,10,39,24,54],xmln:20,option:[5,6,8,9,13,14,43,20,25,22,26,27,15,39,32,33,35,36,7,40,41,49,45,31,21,50,11,54,55],nleftarrow:49,triangleleft:49,ntrianglerighteq:49,selector:[56,22,18],tex2jax_process:5,part:[5,44,37,15,28,52,40,49,8,3,43,20,25,22,19,23,53,54,7,24,1],pars:[49,42,15],mmltoken:49,binom:49,cosh:49,kind:54,aaa:25,prebuilt:20,whenev:[29,44,37],remot:37,remov:[49,7,42,28,29,48,18,5,6,33,22,51,54,39,24],dtd:20,bridg:[14,48],arrang:28,markup:[0,44,15,47,49,20,54],ffff88:56,comput:[45,37,47,49,53,39],nleqslant:49,packag:[37,15,47,49,35,7],expir:12,"null":[12,0,34,45,42,28,29,40,3,18,6,41,22,51,48,10,39,24],built:[13,14,3,53],equival:[12,28,1,51,43,46,21],lim:49,self:[20,44,42],ell:49,also:[3,4,5,12,14,28,43,16,18,19,20,11,22,48,15,46,37,7,40,49,44,45,47,50,51,52,53,54],brack:49,build:20,brace:[49,3],msgroup:44,distribut:[20,38,14,37,7],appendchild:[12,3],addel:12,reach:7,ignoreclass:[5,33],react:29,most:[19,34,37,2,28,47,30,49,3,43,20,41,53,54,7,40,56,42],plan:20,rho:49,alpha:49,rhd:49,vardelta:49,renewenviron:49,clear:[29,45,28,30,18,19],tpl:2,h2o:49,exp:49,latest:[14,37,2,3,4,51,49,20,35,8,53,38,7],leftroot:49,cdata:42,nshortparallel:49,carefulli:[21,45,51],cdn:[49,14,37,42,2,3,51,43,20,35,8,53,38,7],finv:49,particularli:[43,37],rightleftarrow:49,font:[0,49,6,13,14,42,18,20,21,22,23,24,25,37,7,11,45,47,56,50,51,52,53,54],find:[7,4,51,49,6,35,8,54,39],preremoveclass:22,execut:[0,28,29,17,49,30,19,46,54,7,1],pretti:37,solut:[20,54,37,4],delayedx:28,queu:[17,1,7,28,29],factor:[11,45,22,42],noerror:[43,20,49],jaxfil:41,tagsid:[25,26],precnsim:49,express:[19,29,49,51,5,20,33,25,22,53,24,1],strut:49,nativ:[44,16,3,43,11,23,53,54,55],mainten:14,rest:[0,44,1,51,49,20,23,54],konqueror:[53,39],restart:[37,17,1,5,33,7],ie9:[53,37,42],ie8:[53,42],ie7:53,acut:49,vmatrix:49,common:[13,14,15,2,20,47,49,44,43,6,21,7,39,41],set:[0,30,5,6,7,9,12,14,15,43,18,19,20,25,22,48,26,27,28,29,3,31,32,33,35,36,37,39,40,42,49,34,45,46,47,21,56,50,51,52,11,54,55,1],overrightarrow:49,startup:[13,7,42,51,3,1,30,34,19,41,22,39],see:[0,30,4,5,6,7,8,10,14,28,43,17,19,20,11,22,24,26,27,15,29,32,33,35,36,37,38,39,42,49,44,45,46,47,56,50,51,52,53,54,1],barb:49,sec:49,arg:49,ams_hml:7,disadvantag:53,langl:49,inconveni:14,someth:[49,37,4,51,5,20,22],particip:4,won:[1,7,37,42],columnspan:44,subscript:[49,20,42],experi:22,altern:[0,15,49,46,54,40],numer:[39,44],complement:49,javascript:[0,2,3,49,6,8,11,13,14,16,19,20,21,22,23,48,25,26,28,46,36,38,7,40,43,34,45,47,56,50,51,52,53,54,1],isol:[49,42],mailbox:[19,47],bmatrix:49,consumpt:42,distinguish:10,longrightarrow:49,errat:7,classnam:3,popul:30,closur:[46,28,51],last:[0,37,28,17,56,49,39,24,26],delimit:[49,14,42,15,5,20,33,54,7],hyperlink:54,mathzoom:[43,56,24,36,26],nvdash:49,grei:[49,30],context:[5,33,50,22,28],overset:49,hbar:49,whole:[52,39,51,34],load:[0,2,3,49,7,10,13,14,42,17,18,19,20,41,22,23,24,28,29,30,46,35,38,39,43,34,37,47,1,51,52,53,54],markdown:[49,20,54,47],simpli:[5,14,37,15,28,46,17,49,51,43,32,33,27,22,7,23,10,39,24,41,35],point:[49,17,7,31,20],instanti:40,smith:46,usemathmlspac:9,fcolorbox:49,header:[7,37,2,8],suppli:[39,48,22,28],bigve:49,mistak:21,zeta:49,throughout:49,becom:[14,37,28,1,4,19,44,53,40],notaion:13,gneq:49,devic:[23,53,14,42,7],due:14,empti:[34,45,28,1,30,22,54],otherwis:[0,7,28,48,49,18,43,20,34,8,53,10,39,40],invis:[49,37],fire:[30,7,3,51,46],imag:[14,45,42,32,47,3,27,5,6,33,21,23,37,7,24],descib:15,coordin:[17,54,1],understand:[43,54],demand:43,urcorn:49,convers:[49,15],blacksquar:49,look:[12,49,44,45,28,2,29,56,15,4,18,5,20,33,51,8,37,54,39,26],bcancel:49,solid:[12,49,56],histor:53,pitchfork:49,lvert:49,"while":[12,0,14,37,20,55,49,3,31,19,6,44,22,52,54,7,29,1],blacktriangleleft:49,nprec:49,abov:[12,14,45,15,28,20,40,1,3,7,31,51,49,6,22,46,37,39,24,42],circlearrowright:49,bowti:49,everyon:19,loop:[25,48],pack:42,subsect:41,measuredangl:49,vartriangl:49,eqslantless:49,biguplu:49,itself:[40,49,14,37,1,28,29,17,56,30,34,19,44,22,7,48,10,39,24,54,26],overleftarrow:49,limit:[12,0,44,49,31,25,7],peramet:10,rightarrow:49,minim:24,xleftarrow:49,shorten:18,shorter:42,am_htmlormml:[43,20,7],redisplai:18,htmlcsslast:24,conflict:[49,54,42],higher:7,upuparrow:49,optim:[53,42],wherea:49,domin:47,alert:[19,46,1,28],jsmath2jax:[27,35,26,42],temporari:7,user:[30,4,49,6,13,39,18,19,20,11,22,23,28,3,35,36,37,7,43,44,45,50,51,53,54],robust:[19,47],stack:25,recent:[23,3],lower:[34,42,16,30,18,49,22],task:49,older:[44,7],entri:[49,17,56,42,47],searchabl:23,ngeqq:49,textit:49,curvearrowleft:49,normals:49,scriptsiz:49,fallingdotseq:49,explan:[49,20],rvert:49,obscur:[42,18],press:[22,51],amp:[49,42,15],regardless:51,cup:49,setscript:12,blacklozeng:49,endgroup:49,ffeeee:49,rgb:49,input:[30,49,8,9,38,14,42,19,20,41,22,24,25,26,15,31,39,34,35,10,7,40,43,44,47,48,1,51,53,54],subsequ:[49,10,24],sin:49,oslash:49,asciimath:[13,15,31,47,43,20,33,23,54,7,26],format:[13,14,45,15,47,48,49,11,43,20,21,22,23,53,10,44,24,54],big:[49,26],moodl:2,intuit:47,tomathml:[43,48],game:49,insert:[49,27,28,3,5,32,33,41,22,8,38,39,24,54],bit:[11,40],diagup:49,semi:56,varkappa:49,signal:[29,7,28,52,16,30,34,19,46,41,47,39],altough:46,resolv:42,collect:[28,47,56,46,48,1],api:[16,13,23,20],mathrel:49,swarrow:49,asciimath2jax_ignor:33,scrip:14,gtrless:49,creation:[10,30],some:[2,3,49,6,14,15,16,17,19,20,41,22,23,24,26,28,46,39,37,10,7,40,11,44,45,48,1,51,53,54,55],back:[37,15,20,48,49,6,33,24],endtoggl:49,global:[34,28,16,51,49,53],urgent:7,sampl:[37,52,56,30,51,19,20,22],instal:[13,14,45,42,20,37,49,6,8,23,53,7],scale:[45,42,49,11,22,23],substitut:25,mathemat:[0,30,5,6,8,10,11,7,42,43,19,20,25,22,23,24,27,15,32,33,35,36,37,38,39,41,49,44,45,47,48,1,50,51,53,54],larg:[49,0,14,7],prod:49,reproduc:51,sqsubseteq:49,tex2jax:[5,14,42,51,49,3,34,43,20,44,22,54,7,26],machin:[47,37],garamond:49,previou:[46,1,29,28,18],run:[0,3,5,6,9,39,17,19,20,25,22,27,28,30,31,32,33,37,7,29,44,45,46,1,51,52,11,54,55],doteqdot:49,odot:49,step:[6,54,30,2,20],hookleftarrow:49,varsubsetneq:49,carol:49,impos:37,ngeqslant:49,reappear:18,materi:[42,51],dialog:42,rangl:49,succcurlyeq:49,gamma:49,file3:1,file2:[0,1],file1:[0,1],file4:1,bmod:49,msam10:20,prec:49,notat:[15,47,49,20,23,54,7],isjax:39,chang:[49,14,45,42,2,31,3,50,18,43,20,25,7,37,53,10,39,48,54,51,11],announc:52,triangl:49,question:[20,41,4],submit:4,custom:[49,42,15,18,43,20,23,53],adjac:42,perp:49,includ:[0,1,2,3,5,6,7,9,11,14,15,16,19,20,25,22,23,26,27,28,30,31,32,33,34,35,36,37,10,39,41,42,43,44,45,46,47,21,49,50,51,53,54,55,56],suit:[14,6,31,44,7,20],nativemml:[44,47,55,50,43,11,53,54,39,24,26],overleftrightarrow:49,ulcorn:49,properli:[12,0,14,37,42,20,48,1,3,51,6,44,46,39,40],poster:29,atop:49,loadhook:[0,39,46],serif:[49,0,45],link:[14,37,42,2,20,16,49,6,52,7],translat:[54,10,41,24,42],delta:49,line:[49,14,37,42,2,31,47,30,3,5,20,33,27,53,54,7,26],enspac:49,rmoustach:49,qquad:49,divideontim:49,geqq:49,similar:[52,37,28],xmapsto:49,enlarg:36,constant:[19,25],doesn:[19,45,28,15,48,49,43,22,37,7,40],repres:[12,49,27,20,47,56,18,5,6,33,21,22,23,32,24,54],"char":49,mathdiv:[12,46,1,51],tbinom:49,home:[47,0,15],ebook:53,gecko:39,phantom:49,iiint:49,titl:[20,51],sequenti:[52,1,30],invalid:[49,21],llcorner:49,toaudibl:48,bracket:[49,21,22],shoveleft:49,xrightarrow:49,department:37,supseteq:49,nice:3,lozeng:49,delayclear:45,msup:[20,54],alttext:32,varsubsetneqq:49,eval:28,fisher:49,newcommand:49,svn:[20,14,37],rightharpoonup:49,land:49,mimetyp:[48,10,41,24],svg:[42,47,43,53,54,7],supseteqq:49,depth:49,dot:49,leak:48,aquamarin:49,scroll:38,prototyp:40,code:[0,3,4,5,7,8,12,13,14,43,17,19,20,21,22,24,27,28,29,30,32,33,39,41,49,34,46,47,56,51,52,11,1],partial:49,edg:53,queri:54,tiddlywiki:2,edu:37,privat:[52,41,37],elsewher:51,friendli:20,send:[19,29,7],becam:47,sens:54,sent:[19,29,39,47],actiontyp:45,unzip:37,gnsim:49,xxxxxxxx:[20,37],mous:[45,42,50,43,36,54,24],untouch:49,skew:49,tri:[49,0,14,45],ischrom:39,mathit:49,button:37,geograph:7,fewer:43,nleq:49,xcancel:49,userscript:3,maction:[49,45,42],pleas:[21,4],impli:49,smaller:[43,0,54,42],fortun:19,getjaxfrommath:24,natur:[23,20,49,37,54],jump:30,varupsilon:49,download:[0,14,37,42,6,20,22,23,54,7],hspace:49,click:[49,45,50,43,11,22,36,8,54,24],append:[12,37],compat:[42,47,49,22,53,7],index:[20,37,2],compar:53,access:[49,37,42,2,46,48,1,50,43,20,29,23,53,7,40],acronym:47,mathjax:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56],backprim:49,vargamma:49,varsigma:49,leq:49,intercept:20,let:[14,37,44,50,49,20,21,22,39,55],sinh:49,vertic:[5,33,24],sinc:[0,49,14,28,43,17,19,20,11,22,25,15,39,7,40,42,29,44,56,51,52,53,54,1],tex4ht:54,rtime:49,convert:[13,44,15,28,49,3,18,5,35,23,54,24],sqcap:49,larger:[43,20,54,7,53],technolog:[43,23,4],zscale:22,circledast:49,typic:[49,37,15,5,20,10,7],honor:37,chanc:[5,19,33,29,20],firefox:[37,42,3,53,39,55],rgroup:49,bittersweet:49,appli:[49,37,7,40],iskonqueror:39,lessgtr:49,"boolean":39,smallmatrix:49,oval:49,cloud:[14,7],from:[0,2,30,5,7,10,13,14,15,43,18,19,20,25,22,24,27,28,29,3,32,33,35,37,38,39,40,41,42,49,34,45,46,48,1,50,51,53,54],zip:[20,37,42],commun:[19,13,4,20],chi:49,doubl:[49,43,25,22,36,24],upgrad:[6,37,4,13],varphi:49,cho:49,implic:37,few:[49,20,37,35,15],msqrt:[20,54],postprocess:41,simpler:18,newmath:51,src:[5,14,2,20,49,3,27,51,43,32,33,21,35,7,8,53,38,39,1],nsubseteq:49,lippman:15,doublebarwedg:49,projlim:49,"4ac":20,actual:[12,0,44,15,28,17,49,51,19,46,1,22,7,10,39,24,54],versionatleast:39,account:12,alik:3,retriev:12,augment:[40,10,41,24],scalabl:[47,53,54],underwai:1,aperson:46,halt:52,thin:25,control:[5,6,9,11,39,43,20,25,22,27,32,33,36,37,7,49,45,31,56,50,53,55],tau:49,tar:37,process:[0,3,5,7,12,13,14,42,43,17,18,19,20,25,22,24,26,27,15,30,32,33,35,10,39,41,49,44,46,48,1,51,53,54,55],dfrac:49,preformat:42,high:[23,53,54],tag:[2,30,49,8,14,42,19,20,21,22,24,25,26,15,39,3,32,33,35,10,7,5,44,37,48,51,54],tab:37,tan:49,delai:[0,7,45,28,29,50,18,43,22,36,19,54,39],fontwarns:56,gcd:49,importat:16,getelementsbytagnamen:3,subdirectori:[37,10,24,48],instead:[49,14,37,42,15,46,17,1,51,19,20,54,7],class4:40,class2:[5,33,40],smallfrown:49,sim:49,class1:[5,33,40],simplesup:40,frac:49,overridden:[45,24,18,41,48,10,40],mspace:[49,20,44,42],"_svg":53,anothermethod:40,frak:49,filtertext:18,redund:[40,22],essenti:[43,49,54,40,15],light:[49,40],correspond:[39,45,35,7],element:[30,5,6,12,39,42,43,19,20,21,22,24,29,33,10,7,40,49,34,45,48,56,51,52,54,1],reredn:48,newextarrow:49,allow:[2,3,49,14,42,18,19,20,21,22,23,24,25,29,46,36,37,7,40,43,45,47,56,50,11,1],fallback:[37,45],mjx:12,fastest:53,move:[37,14,45],nsucc:49,comma:[56,3,49,22,7,26],dagger:49,mathjax_tooltip:45,movabl:[38,2],chosen:53,clickabl:49,coth:49,varxi:49,pretransl:[41,24],therefor:49,pixel:[47,45,24],multimap:49,crash:22,pure:44,handl:[0,14,15,28,52,47,55,49,3,11,34,19,6,44,7,53,1,39,24,41,42],supsetneq:49,nokia:42,innermost:21,dai:12,automat:[17,1,18,49,20,41,53,54,7,40],front:[43,42],successor:35,gggtr:49,sourceel:[19,48,24,51],anyth:[19,26,4],edit:[43,7,2,8],class3:[5,33,40],februari:13,mode:[49,45,42,5,20,35,37,53,54],varomega:49,"2em":49,genfrac:49,subset:49,delaypost:45,nointerest:29,meta:53,"static":40,our:[14,37,42,4,20,38],meth:39,ie6:45,special:[5,44,15,46,49,43,20,33,22,7,52,23,53,54,39,56],out:[0,14,45,37,1,51,19,6,11,53,54],variabl:[34,28,16,40,30,51,49,46,53,24],lesseqqgtr:49,matrix:49,categori:1,suitabl:49,rel:[0,11,45,42],moveabl:[38,2],merg:[12,39],ref:49,red:[49,20,21],negthinspac:49,nsucceq:49,insid:[42,2],workflow:44,manipul:51,eqslantgtr:49,releas:[20,7,3,37],bleed:42,indent:[25,22],could:[0,14,15,46,16,48,49,4,51,19,20,44,7,54,39,24,1],ask:[4,51,20,25,54,7,24],succ:49,timer:30,david:15,gtreqqless:49,length:3,outsid:[5,53],"0em":[56,22],uproot:49,softwar:[43,20,54,23],rbrace:49,blogger:2,rbrack:49,precapprox:49,spadesuit:49,date:[20,14,37,42,7],uplu:49,clubsuit:49,bigsqcup:49,suffic:20,prioriti:28,"long":[49,20,1,42,50],start:[0,30,49,8,10,13,14,28,19,20,21,22,24,15,39,38,7,29,37,1,52,54],unknown:44,respond:[29,22,4],system:[45,37,2,20,16,30,4,49,6,23,53],messag:[0,14,37,47,20,16,49,30,52,18,43,6,34,41,22,19,39,29],attach:[19,49,24,52,29],attack:20,termin:[5,33],man:20,iota:49,rsh:49,supset:49,"1em":[56,44],gtreqless:49,hdashlin:49,xlongequ:49,ipad:42,preceq:49,gtrdot:49,subsetneq:49,structur:[0,7,28,46,47,51,19,20,34,10,39,24,26],charact:[49,44,45,42,15,31,47,56,5,6,33,25,22,53,54],htaccess:37,seriou:54,bet:37,exhibit:37,"function":[0,7,28,29,47,17,49,3,51,19,46,30,41,52,54,39,40,1],biggl:49,biggm:49,rrightarrow:49,deprec:[43,20,7],unkown:39,lightli:53,close:[44,42,20,3,4,43,6,26],need:[0,1,2,3,4,5,6,7,8,10,14,15,17,18,19,20,25,22,23,24,28,30,46,33,37,38,39,40,41,42,43,44,45,31,47,48,49,11,51,52,53,54,56],turn:[12,5,14,28,29,43,33,44,11],biggr:49,gdef:49,issu:[0,44,4,18,22,7,53,54,39],inform:[0,45,2,29,47,49,30,18,43,46,11,22,19,10,7,24,54],mid:49,fontdir:24,which:[2,30,5,7,10,14,15,43,18,19,20,21,22,24,25,26,27,28,29,3,32,33,34,35,36,37,38,39,40,42,49,44,45,46,48,56,51,53,54,1],hbox:49,mit:49,singl:[0,14,15,28,52,16,49,51,5,20,33,34,23,1,7,56,42],declaremathoper:49,mathjax_preview:[27,5,32,33,22,54],x22d6:49,unless:[20,42,28,53],who:[19,29,4],leftthreetim:49,why:49,underset:49,placement:42,url:[0,14,37,42,3,49,30,50,43,20,7],gather:49,request:[0,42,28,29,49,30,19,46,7,1],face:[45,4,49,6,25,37,26],inde:[53,26],movablelimit:42,nmid:49,determin:[7,45,2,30,49,31,11,22,39,24],flux:1,occasion:7,fact:[29,14,41],backsimeq:49,mathjax_messag:18,leftarrowtail:49,verbos:[47,46,22],bracevert:49,woth:44,curlyeqsucc:49,highest:53,locat:[0,14,37,6,49,30,51,5,32,33,27,22,7,19,54,39,24,20,35],jax:[30,49,9,14,42,16,19,25,22,24,26,15,31,39,35,10,7,40,41,43,34,45,47,48,56,11,51,53,54,55],vartriangleright:49,should:[3,5,7,8,38,14,28,43,17,20,21,22,24,25,15,29,46,33,35,10,39,41,49,44,37,47,56,51,53,55,1],imagefont:[6,45],vartriangleleft:49,suppos:[46,14,7,51],"5px":[12,49],triangleright:49,"5pt":20,local:[49,37,28,20,1,3,51,43,6,22,7],hope:[6,14],precsim:49,liminf:49,woff:37,expres:49,increas:[14,42],bigstar:49,leqslant:49,smash:49,enabl:[49,14,15,2,5,20,33,8,38,7],organ:54,frown:49,stuff:39,she:53,contain:[0,2,3,5,6,12,7,43,16,17,18,19,20,41,22,24,27,28,29,32,33,37,10,39,49,34,45,46,48,56,51,54,1],view:[44,45,16,3,43,20,35,23,37,7],conform:20,frame:18,apolog:14,temporarili:18,troubl:20,issafari:39,asynchron:[0,34,28,29,47,17,1,51,19,46,52,39],statu:[0,37,46],error:[0,14,15,49,3,4,43,20,44,22,10,39,24,41],jmath:49,pattern:[5,33,22],gtrsim:49,favor:14,written:[20,8],quickest:20,theta:49,neither:[6,21],equiv:[49,53],omicron:49,nshortmid:49,"2pt":49,kei:[12,0,28,29,17,19,22,39],texttip:49,"2px":49,entir:[39,22,7,51],closebox:6,ker:49,thumb:1,skipstartuptypeset:22,plugin:[2,50,49,22,8,23,53,54],admin:[38,8],nabla:49,equal:[49,1,39,40],gnapprox:49,etc:[47,1,51,49,22,7],eta:49,equat:[5,27,45,42,20,37,49,31,51,43,32,33,25,22,48,23,53,54,39,24],eth:49,limiti:37,lmoustach:49,onchang:51,comment:[49,42,56,43,20,22,7],varnoth:49,arriv:[19,52],solv:7,harpoon:49,arguement:46,sqcup:49,quit:[53,51],showfontmenu:50,"55em":49,quotat:56,bbb:49,defint:49,sqsupseteq:49,treat:[49,20,15],immedi:[0,3,1,30,51,19,17,7],incldu:54,smallsetminu:49,both:[0,14,42,15,46,47,49,30,43,20,44,1,22,7,8,53,38,39,40,54],alignat:49,varsupsetneq:49,otf:[37,42],psi:49,x_2:49,togeth:[14,28,1,43,44,39],x_1:49,injlim:49,present:[29,44,4,6,22,53,7],cot:49,twoheadrightarrow:49,multi:49,iscallback:28,displaylin:49,align:[49,20,56,44,22],contextu:[13,44,45,48,50,43,34,22,36,53,54,24,11],studentdisplai:51,defin:[30,49,6,14,19,20,25,22,24,26,15,3,46,39,36,10,7,40,41,43,45,56,50,11,1],glossari:[47,13],layer:[42,2],almost:49,curvearrowright:49,site:[49,14,37,2,43,20,22,23,38,7],archiv:[20,37],substanti:[53,14,7],revis:37,greater:[49,53,15],curlywedg:49,displaystyl:[49,31,51],parti:[19,20],cross:37,sqrt:[49,20,54],getx:40,extensiondir:41,oint:49,android:42,cssid:[49,42],curlyve:49,phi:49,http:[14,37,2,3,50,51,49,20,35,8,53,38,7],d3eoax9i5htok0:20,lleftarrow:49,"8em":[49,25],effect:[17,1,3],mrow:[20,54],student:51,canva:54,php:[2,8],executehook:[29,28],off:[49,42,43,52,11,53,7],center:[49,20,56,22],well:[19,44,37,28,46,56,4,51,43,20,33,41,22,52,53,7],exampl:[0,3,4,49,6,7,9,11,12,14,15,17,19,20,25,22,24,26,27,28,29,31,32,33,34,35,36,37,10,39,40,42,5,44,45,46,21,56,50,51,52,48,53,54,55,1],command:[44,37,28,47,17,1,30,51,49,22,7,39],choos:[49,20,53],undefin:[49,20,28,46],setx:40,subsetneqq:49,sibl:42,usual:[28,15,46,1,49,6,41,22,54,7],curlyeqprec:49,paus:[39,37],less:[49,37,15,5,20,33,54,39],obtain:[49,14,37,51,43,20,22,54,7,24],mistaken:54,mathclos:49,mathoutput:51,simultan:[1,30],web:[2,30,49,6,13,14,42,19,20,22,23,48,15,3,35,45,7,29,37,47,1,51,52,53,54],current_them:2,priorit:28,textbf:49,cdotp:49,atopwithdelim:49,valid:[46,14],schedul:46,match:[5,29,33,45],webpag:35,piec:42,varpropto:49,punctuat:42,cpan:49,know:[49,46,19,20,29,10,7,24,54],cfrac:49,mathinn:49,redesign:53,tick:[49,20,33,15],recurs:[39,42],mho:49,nofont:6,like:[3,49,28,17,18,19,20,23,26,15,29,46,33,35,10,7,42,5,44,37,31,47,56,51,52,54,1],lost:46,messagehook:[19,29,39],arctan:49,necessari:[7,3,20,23,53,39],resiz:53,page:[2,30,5,6,7,8,12,13,14,42,16,18,19,20,11,22,23,24,27,15,29,3,32,33,35,37,38,39,43,44,45,46,47,48,49,50,51,52,53,54,1],didn:49,captur:47,linux:39,"export":48,superclass:40,proper:[29,39],guarante:[0,1,51,17],peter:15,librari:[16,1,34,37],glyph:[49,47],kern:49,rspace:49,assum:51,avoid:[14,42,15,49,21,22,53,54,44],thank:15,tooltip:[49,45],checkmark:49,leav:[12,15,51,49,25,55],doublecap:49,supsetneqq:49,preload:[0,20],twoheadleftarrow:49,mpmous:43,daleth:49,upharpoonright:49,journal:47,usag:[49,13],host:[14,7],sphericalangl:49,although:[16,20,37,55,29],offset:[45,24],panel:49,varepsilon:49,about:[4,49,6,14,28,19,20,11,22,24,15,29,31,39,37,10,7,42,43,45,46,51,52,54],ams_html:[49,14,51,43,35,7],rare:1,column:25,mathajx:14,mod_head:37,mapsto:49,constructor:40,fals:[49,45,42,29,48,3,50,5,31,11,22,9,39,40,10,26],bigoplu:49,eqalign:49,own:[49,14,37,42,20,16,1,31,4,43,6,52,53,10,7,24,54,26],amsmath:[49,14,1,43,20,25,7],circledr:49,maxbuff:25,bigtriangledown:49,guard:22,vphantom:49,circlearrowleft:49,transfer:[20,37],much:[31,47,19,52,53,7],bigcap:49,arg1:46,"var":[12,28,1,3,51,19,46,40],stai:[53,7],arg2:46,deliveri:[20,42],propto:49,unexpect:[11,22],precnapprox:49,studentansw:51,bodi:[0,14,51,20,10,7,24],gain:[53,50],lgroup:49,bug:[12,14,37,42,4,18,20,22,54,7],count:3,made:[37,1,4,52,54,48,26],bbbk:49,whether:[49,27,45,46,55,3,31,51,5,32,33,11,22,7,9,39,48,50],wish:[14,46,56,3,4,49,20,7,53,39],displai:[49,6,12,13,39,42,18,19,20,25,22,23,24,27,15,31,33,35,36,7,5,44,37,47,48,50,51,53,54],substack:49,underleftrightarrow:49,mathord:49,gtrapprox:49,below:[2,49,6,9,12,39,20,25,22,48,27,32,33,36,10,7,5,45,31,21,50,52,11,54,24,55],sideset:49,"_htmlormml":53,problem:[14,37,42,15,46,4,51,49,20,44,53,54,7],x03c0:54,"int":49,imagedir:24,dure:[42,28,30,19,41,22,39,48],novemb:14,implement:[12,0,14,16,49,54,43,46,44,19,53,10,40,41],nolimit:49,inf:49,rightleftharpoon:49,probabl:[19,46,7,15,2],oplu:49,helpurl:50,definecolor:49,immateri:1,percent:[11,45],detail:[0,5,6,7,8,13,14,28,43,17,19,20,11,22,27,15,29,32,33,35,36,37,38,39,42,49,44,45,1,50,51,52,53,54],lesseqgtr:49,other:[0,2,30,5,6,7,14,15,43,17,18,19,20,41,22,23,48,28,29,46,33,35,37,39,40,42,49,44,45,47,1,11,51,52,53,54,55],futur:[0,4,18,19,52,53,39,48],branch:[7,37],varieti:54,removeaft:6,repeat:[37,2],star:49,"class":[40,49,34,42,28,29,16,17,5,33,41,22,48,10,24,54,35],thicksim:49,posttransl:[41,24],reflow:[53,24,42],sphinx:2,scientif:47,reliabl:[53,14,3,7],rule:[49,6,9,1,22],mathjax_mathml:3,portion:[54,51],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","Loading and Configuring MathJax","Installing MathJax in WordPress","The MathML input processor","The MathJax.InputJax Class","The NativeMML output processor","The MathJax.HTML Object","MathJax Documentation","Migrating from MathJax v1.0 to v1.1","MathJax AsciiMath Support","The MathJax API","The MathJax.Callback.Queue Class","The MathJax.Message Object","Using Signals","Getting Started","Describing HTML snippets","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The TeX input processor","Configuration Objects","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax.Callback.Signal Class","The MathJax Startup Sequence","The AsciiMath input processor","The mml2jax Preprocessor","The asciimath2jax Preprocessor","The MathJax variable","Converting to MathJax from jsMath","The MathZoom extension","Installing and Testing MathJax","Using MathJax in Movable Type","The MathJax.Hub Object","The MathJax Object-Oriented Programming Model","The Base Jax Class","What’s New in MathJax v1.1","Common Configurations","MathJax MathML Support","The HTML-CSS output processor","Using Callbacks","Glossary","The MathJax.ElementJax Class","MathJax TeX and LaTeX Support","The MathMenu extension","Modifying Math on the Page","Synchronizing your code with MathJax","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","configuration","platforms/wordpress","options/MathML","api/inputjax","options/NativeMML","api/html","index","upgrade","asciimath","api/index","api/queue","api/message","signals","start","HTML-snippets","options/hub","mathjax","api/outputjax","options/TeX","options/index","options/jsMath2jax","api/callback","api/signal","startup","options/AsciiMath","options/mml2jax","options/asciimath2jax","api/variable","jsMath","options/MathZoom","installation","platforms/movable-type","api/hub","api/object","api/jax","whats-new","config-files","mathml","options/HTML-CSS","callbacks","glossary","api/elementjax","tex","options/MathMenu","typeset","synchronize","output","model","options/MMLorHTML","CSS-styles"]}) \ No newline at end of file +Search.setIndex({objects:{"":{Load:[0,0,1],Preloading:[0,0,1],Log:[19,0,1],ExecuteHooks:[29,0,1],setScript:[13,0,1],Subclass:[41,0,1],Delay:[29,0,1],Add:[29,0,1],getAllJax:[40,0,1],getScript:[13,0,1],Interest:[30,0,1],preProcess:[25,0,1],loadComplete:[0,0,1],Translate:[42,0,1],Config:[40,0,1],addElement:[13,0,1],Reprocess:[40,0,1],Styles:[0,0,1],ExecuteHook:[30,0,1],loadTimeout:[0,0,1],Resume:[18,0,1],Update:[40,0,1],preTranslate:[25,0,1],setRenderer:[40,0,1],formatError:[40,0,1],call:[18,0,1],postTranslate:[25,0,1],getJaxByInputType:[40,0,1],PreProcess:[40,0,1],Post:[30,0,1],has:[41,0,1],Signal:[29,0,1],Set:[19,0,1],Insert:[40,0,1],Execute:[29,0,1],addText:[13,0,1],TextNode:[13,0,1],Augment:[41,0,1],needsUpdate:[49,0,1],Clear:[19,0,1],Register:[42,0,1],Zoom:[25,0,1],Remove:[19,0,1],Element:[13,0,1],Queue:[29,0,1],NoInterest:[30,0,1],Rerender:[40,0,1],getJaxByType:[40,0,1],Push:[18,0,1],Typeset:[40,0,1],fileURL:[0,0,1],wait:[18,0,1],reset:[29,0,1],loadError:[0,0,1],getJaxFor:[40,0,1],getJaxFromMath:[25,0,1],LoadHook:[0,0,1],Process:[40,0,1],Hooks:[29,0,1],MessageHook:[30,0,1],Startup:[42,0,1],Init:[41,0,1],Suspend:[18,0,1],SourceElement:[49,0,1],can:[41,0,1],File:[19,0,1],Text:[49,0,1],isJax:[40,0,1],filterText:[19,0,1],isa:[41,0,1],Require:[0,0,1]}},terms:{linebreak:[46,27],represent:[56,49,52],lspace:50,reprocess:[40,49,52],mathjax_msie_fram:19,yellow:50,four:[50,1,15],prefix:[13,21,25,43],asymp:50,thinspac:50,webfont:[6,46,21],whose:[13,8,52,5,47,34,40,25],html5:[15,43,21,45,55,56,8],under:[45,38],preprocess:[31,52,42,56,40,25],asciimath2jax:[16,44,21,34,56,54],worth:8,digit:43,gimel:50,everi:[20,40,26,8,43],risk:21,mskip:50,arcco:50,govern:[21,15,8],dotplu:50,affect:[15,38,43,50,40,54],eqnarrai:50,cmd:23,bigodot:50,c6h5:50,ominu:50,vector:[48,55,56],math:[31,5,7,8,13,14,15,43,44,19,20,21,12,23,24,25,27,28,16,3,33,34,36,37,38,11,40,50,45,46,48,51,52,53,55,56],nparallel:50,showcontext:51,nsubseteqq:50,direct:[6,15,46,38],blacktriangledown:50,second:[0,15,38,29,47,58,53,5,6,34,22,23,8,20,11,45,25,1],ngeq:50,blue:37,hide:52,prejax:[56,23],neg:50,menclos:50,"new":[31,4,50,13,14,15,43,19,20,21,26,24,25,54,29,40,11,8,41,30,38,49,1,51,52,53,55,56,57],net:21,mhtml:2,told:[50,53,3],limsup:50,elimin:23,behavior:[15,38,23,46,8,27],lessapprox:50,never:[0,8,38,42],here:[13,50,35,46,29,47,49,1,3,52,20,21,42,23,37,12,40,30],updiagonalstrik:50,met:31,lneqq:50,formaturl:26,path:[44,0,8,27,21],noundefin:[44,21,50],interpret:[5,21,50,38,16],nrightarrow:50,forum:[21,4],mbox:50,rceil:50,linearli:55,circleddash:50,mathstrut:50,unix:38,brower:[50,16],thinmathspac:45,unit:[50,43,27],highli:24,describ:[13,50,15,38,29,21,48,58,31,52,44,6,22,8,47,56,40,25],would:[5,6,7,8,10,12,13,15,16,44,18,21,26,23,49,27,28,29,32,33,34,36,37,38,40,41,50,46,47,22,58,51,52,55,56,57,1],afterward:47,readi:[20,35,31,44,42,11],ltime:50,varlambda:50,call:[0,2,3,50,6,7,8,10,15,18,19,20,21,26,23,25,27,28,29,30,32,33,34,37,38,11,40,41,42,5,46,47,48,49,1,51,52,53,54,12,56,57],recommend:[21,56,38,55],vcenter:50,preview:[28,46,5,33,34,23,56,27],type:[0,2,3,5,9,11,13,15,44,20,21,42,23,49,40,36,39,8,50,45,25,1,52,53,55,56],until:[0,28,47,1,5,33,34,42,23,8,20,40,30],notin:50,displaymath:[5,8],relat:[0,43,55],notic:[50,16],warn:[0,15,23,6],mathev:[54,25,7,37],jpg:[5,33,34,22,28],loss:8,hold:[0,7,22,23,37,56,40],unpack:[21,38],must:[0,31,50,6,15,18,19,21,26,23,27,16,30,40,34,38,8,5,45,46,48,58,7,53,55],fbox:[50,43],join:[20,50],centerdot:50,setup:[24,21,45],work:[13,14,15,38,43,16,47,50,3,4,52,44,21,45,36,53,20,24,55,41],cc0000:[58,23],tag_nam:38,root:[0,43,31,19,50,8],overrid:[41,6,11,42,25],mathmenu:[35,58,51,44,23,54],give:[50,8,46,21,48,22,58,20,6,26,54,12,40,30,27],cirit:8,indic:[0,8,38,16,47,18,50,31,20,21,30,42,23,49,11,40,25,56],impair:24,hline:50,want:[4,5,15,29,44,17,19,20,21,12,23,25,27,16,47,34,38,39,8,41,50,45,46,1,52,55,57],keep:[15,38,2,16,48,52,50,21,56,8,25],setminu:50,end:[0,5,45,16,2,55,50,31,4,44,1,9,20,39,8,57,56,43],quot:[46,43,5,34,23,27],hom:50,heartsuit:50,how:[0,2,3,4,5,6,7,8,9,15,16,18,19,21,26,23,27,28,29,30,33,34,36,37,38,40,44,46,32,22,50,51,52,53,12,56],disappear:[5,33,34,28],answer:[4,52],verifi:[21,38,4],config:[1,2,31,5,6,7,8,9,10,11,12,15,19,20,21,26,23,25,27,28,16,3,32,33,34,36,37,39,40,42,44,46,47,50,51,52,54,55,57,58],renewcommand:50,updat:[15,46,43,2,1,52,23,8,38,40,49,27],showrender:51,recogn:21,lai:[55,56],diagdown:50,after:[0,3,50,40,18,19,20,21,42,23,54,29,47,38,8,30,46,1,51,52,53,27,56,57],befor:[0,2,3,4,50,8,9,15,16,18,19,20,21,22,23,26,27,29,30,31,47,34,40,41,42,5,45,46,48,1,7,52,53,55,56],wrong:45,startuphook:[20,40],parallel:[50,1,31,43],averag:56,alignedat:50,attempt:[0,45,51],third:[1,45],leftarrow:50,receiv:[30,15,38,47,41,20,21,42,53,8,25],greasekit:3,maintain:[15,53,4,20,47,23,25],environ:[5,21,50,26,4],enter:[45,32,52,50,21,56,8],textnod:13,order:[31,50,6,5,15,18,19,21,23,27,28,29,40,33,34,38,8,41,30,46,47,48,1,55,56],oper:[0,5,6,7,10,12,43,18,19,20,26,23,24,25,27,28,32,33,34,37,38,11,30,35,46,47,48,1,51,52,55,57],approxeq:50,over:[13,0,46,43,7,50,51,52,44,21,23,37,55,56,8,27],fall:[38,16,21,1,50,6],becaus:[20,15,46,1,16,47,50,3,19,5,21,34,22,8,52,55,56,45,30,26,27],boxtim:50,suspend:[20,18,1,30],textrm:50,appar:1,afil:47,flexibl:[22,1,15],vari:55,smallint:50,img:[28,58,3,5,33,34,22],fix:[15,46,43,38,55,8,27],strang:45,better:[43,16,32,51,21,36,9,55,8],boxminu:50,drawback:55,fade:6,persist:4,comprehens:48,hidden:50,easier:[30,15,38,1,50,45,41],moveleft:50,them:[0,5,6,13,15,29,44,18,20,21,26,16,30,40,32,34,8,43,50,45,38,47,58,56,1],thei:[0,1,3,4,5,6,7,8,10,12,15,43,17,18,19,20,21,26,23,27,28,29,30,31,32,33,34,37,38,40,42,44,46,47,48,22,50,51,52,53,54,55,56,57,58],qualiti:[24,55,56],safe:[13,21,52],rectangl:48,"break":[46,43,1,50,53,27],emph:50,mtext:[50,21,46,43,27],wedg:50,widetild:50,choic:[55,40,9],dbinom:50,leftharpoondown:50,timeout:[0,43,29],each:[5,8,46,16,29,30,50,31,53,19,44,21,34,52,20,38,56,40,1,27],debug:19,side:[19,50,21,26,23,9],mean:[2,31,5,6,15,44,17,20,23,24,27,28,16,30,3,33,34,8,50,46,47,52,53,55],leqq:50,createel:3,resum:[18,1],represetn:50,leqalignno:50,mathopen:50,looparrowleft:50,network:[15,38,43,44,21,39,8],goe:[50,53,1],newli:[13,20,41],crucial:38,content:[2,31,5,9,11,13,15,43,44,21,22,23,40,34,39,8,41,50,45,48,1,52,55,56],method:[13,0,15,41,29,30,18,1,53,19,20,47,42,8,49,11,40,25,52],reader:[50,46,43,44,24,55,27],forth:35,impract:38,multilin:50,situat:[21,8,43,52,55],free:[49,4],ineffici:[41,23],autonumb:26,reconfigur:15,lneq:50,angl:50,moment:[21,11,38],filter:29,isn:[20,55,42,49,52],mtabl:44,isa:41,subtl:52,onto:[48,21,1,40,52],attribtu:21,mathbb:50,rang:[21,56],mathbf:50,render:[5,45,43,31,51,44,21,23,24,55,56,40,57,27,36],independ:8,yourcolleg:38,restrict:[50,38,23],hook:[20,0,29,30],unlik:[24,50,8,42],alreadi:[0,29,52,31,50,3,4,19,20,47,53,8,41,1],subtleti:50,primari:[55,15],tooltop:[46,27],top:[35,38,50,21,55,8,25],sometim:[21,8,38],underlin:[50,43],master:53,too:[50,46,43,16,3,5,21,34,12,55,27],similarli:[0,40,38],newenviron:50,john:47,listen:[20,30,40,29],thickapprox:50,namespac:[43,29,3,52,50,21],tool:[1,38],tagind:26,embellish:43,compressor:43,somewhat:[55,23,53],technic:48,past:[30,15,43,20,53,24,55],filesmatch:38,provid:[13,0,45,2,29,47,18,50,3,19,20,21,30,22,52,53,24,56,40,41,1],eqalignno:50,x2212:[21,56],tree:[21,22],"final":[15,47,50,21,22,24,56,25],project:[48,8,4],matter:[20,36],mathtt:50,ldotp:50,modern:[24,6,45,14],mind:[50,21,8,16,2],increment:18,seem:[47,45],rightrightarrow:50,ldot:50,person:47,latter:[50,17,20,32,22,23,56,8,54],domcontentload:[31,3],expens:[55,56],even:[0,3,50,40,29,18,20,21,22,24,27,16,30,47,8,44,45,46,1,52,53,55,56],though:[29,16,50,53,22,23,56],object:[0,31,50,6,7,13,14,17,18,19,20,22,23,25,26,27,29,47,37,11,40,41,42,30,35,46,48,49,58,51,52,53,54,12,56,1],gzip:43,regular:[5,21,34,23],letter:[21,38],grave:50,don:[50,15,43,47,1,3,32,52,20,6,45,8,55,56,40],dom:[13,49,1,52,20,53,42,23,11,40,25],doe:[50,45,38,16,29,57,49,3,52,20,21,23,8,24,55,11,40,25,56],declar:[45,46,58,51,50,6,12,7,37,27],place:[0,46,6,41,50,4,52,20,21,30,26,23,12,38,8,25,1,27,36],tfrac:50,unchang:[50,15,57,52],sum:[50,29],came:38,delaystartupuntil:[40,31,23,8],random:[21,38],lnapprox:50,syntax:[50,48,41,43,16],mediawiki:2,isopera:40,outerhtml:43,shownam:47,asynchon:52,next:[16,53,52,50,32,40,49],involv:[50,53,56,8,4],consolid:24,layout:[46,27],just:[20,45,38,2,29,47,50,44,21,1,23,8,9,24,56,40,30,58],mathchoic:50,ismsi:[40,31],menu:[14,45,46,43,57,49,31,51,44,7,35,23,37,9,38,55,39,25,56,27,12],explain:[15,2,44,53,8,54],configur:[0,3,5,6,8,9,10,11,14,15,43,19,20,21,26,23,24,25,27,28,16,31,32,33,34,36,37,38,39,40,42,44,45,46,47,22,50,12,54,55,56,57],apach:38,theme:[8,2,9],rich:[24,48],folder:[21,46,38],"0000f0":37,stop:[50,40,46,27],infti:[50,56],amazon:21,report:[45,23,4],circeq:50,subseteq:50,fadeouttim:6,bar:[50,41,29],patch:[8,38],reload:51,bad:43,replacechild:3,neq:50,unexpectedli:[50,21,16],undefinedfamili:[46,27],dashrightarrow:50,scriptscriptstyl:50,precneqq:50,result:[12,15,46,16,29,47,48,49,1,52,50,21,45,23,8,55,11,40,25,56,27],respons:[50,30,11,43,29],fail:[0,43,47,42,55,54],themselv:[35,31,44,21,22,40],best:[0,15,38,16,1,55,56,8],awar:[50,0,1,45,16],subarrai:50,varinjlim:50,wikipedia:[48,3],circledcirc:50,gneqq:50,drawn:[46,27],awai:[50,8,38],approach:[47,56,2,52],attribut:[13,45,43,21,58,50,33,22,56,8],blacktriangleright:50,extend:[24,56,16],extens:[0,31,5,6,7,15,43,44,20,21,26,23,54,28,40,33,34,36,37,8,42,50,35,48,58,51,52,55,1],add:[41,5,15,2,29,18,50,44,6,34,42,23,49,55,25,58],preprocessor:[5,15,16,21,50,45,31,35,44,33,34,28,23,8,56,40,52,54,36],toler:3,intop:50,protect:50,expos:16,cow:41,howev:[50,15,38,47,31,58,3,4,19,44,21,23,52,55,56,8,41,1,54],configuraiton:[50,56],against:30,seri:[1,22],com:[8,38],varpsi:50,pre:[5,15,38,29,50,44,6,34,23,20,8],foral:50,can:[0,1,3,4,5,6,8,12,13,15,29,18,19,20,21,26,23,24,25,27,16,30,31,47,34,35,36,38,11,40,41,42,43,44,45,46,48,50,51,52,53,54,55,56,57,58],foobar:41,delic:23,innerhtml:[3,52],height:[50,25,43,51],wider:4,summat:32,sqsupset:50,speak:[17,56],issol:50,chrome:[46,43,3,55,40,57],three:[45,38,29,47,1,50,6,22,42,53,55,56,21],been:[0,3,4,5,15,18,19,20,21,12,23,25,29,31,47,34,36,38,11,8,30,46,1,52,53,55,57],trigger:[44,25,23,37],interest:[20,30,48,4,53],basic:14,tini:50,quickli:[24,8,4],underrightarrow:50,rather:[0,3,5,6,10,15,43,44,18,20,21,26,23,24,49,54,29,31,32,34,8,41,42,50,45,38,48,58,51,52,53,55,56,1],regul:1,xxx:50,ani:[0,3,4,5,6,7,8,10,12,15,18,19,20,21,26,23,25,27,28,29,30,31,32,33,34,37,38,11,40,41,44,45,46,47,49,50,51,52,53,55,57,1],emploi:55,dash:[58,46,27],tanh:50,hat:50,servic:[15,38,43,21,39,8],properti:[13,0,35,41,29,30,18,47,42,49,11,40,25],diamondsuit:50,sourceforg:15,weren:15,dashboard:39,anchor:[26,23],"3px":[50,58],succeq:50,have:[0,2,31,4,5,6,8,15,16,44,20,21,26,23,25,54,29,30,3,47,34,37,38,40,41,43,50,45,46,32,49,1,12,52,53,55,56],nexist:50,retransl:[49,52],tabl:[55,45,16],cong:50,sever:[0,5,15,38,50,52,44,47,34,56,25,1],amout:19,disabl:[15,46,23],incorrectli:[21,15,43],perform:[31,4,6,15,43,18,19,20,26,23,25,27,29,47,40,11,8,42,30,35,46,48,49,1,52,53,55],suggest:[6,4,21],make:[0,4,5,6,8,15,43,44,17,18,20,21,12,23,24,25,27,28,33,34,38,40,41,50,45,46,58,51,52,53,55,56,1],complex:[55,22],split:50,synch:15,lrcorner:50,unsafewindow:3,complet:[0,31,5,15,44,18,20,21,42,23,25,29,30,40,47,34,8,50,38,48,49,1,52,53,55],longmapsto:50,hand:[45,35,3,19,26,23,56,36],fairli:[22,15],rais:[50,43],mkern:50,ignorepast:30,unlhd:50,squar:[50,22,43],redefin:[6,11,42,25],kept:20,thu:[15,29,1,20,47,49],inherit:[46,17,41,49,11,25,27],client:46,thi:[0,1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,21,22,23,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58],idotsint:50,programm:41,everyth:[44,50,1,40,8],settimeout:[47,29],left:[45,38,35,31,19,50,53,26,23,9,55,39,54],processclass:[5,34],identifi:[13,30,16,50,21,56],proccess:[11,25],yen:50,mathbin:50,human:21,coprod:50,yet:[45,18,1,52,20,53],languag:[50,21,56,48,53],noscript:[5,34],onload:[35,3,31,47,23,8],errorset:[44,23],easi:[48,36],interfer:[21,32],had:[20,21,15,3,8],myconfig:[20,47],step1:50,els:[50,47,3,52],save:[55,39,8,58,9],"0x21c0":50,take:[13,0,15,29,2,47,1,31,4,52,50,6,26,23,53,55,8],sanit:19,applic:[24,21,31,2],loadtimeout:0,preserv:47,bbox:50,background:[50,58,43,37],sqsubset:50,specif:[0,8,2,29,30,48,18,1,35,5,47,34,42,52,55,56,40,49],arbitrari:50,manual:6,zoom:[14,45,43,31,7,44,23,37,25],leftrightarrow:50,underli:55,www:[21,3,38,51],right:[45,38,48,18,1,3,19,50,32,26,23,9,55,56,8,54],old:20,famili:[50,0,46,27],deal:21,autobold:50,interv:32,begin:[20,38,16,50,31,52,5,26,55,56,8,1],percentag:[12,46,23,27],intern:[0,45,16,29,30,48,18,1,52,50,23,49,55,11,40,25,56],successfulli:[0,47],interc:50,dddot:50,bottom:[8,9],subclass:[30,35,25,42,49,11,41],circ:50,tracker:[21,4],overcom:53,condit:[0,31],foo:[41,29],core:[46,1,31,50,12,23,37,56,40,54],plu:[44,30,31],bold:[50,48,22,26,54],insecur:21,popular:[21,36,2],colleg:38,repositori:[15,38,43],post:[30,46,29,31,4,19,20,53,42,27],"super":[41,43],llless:50,obj:13,nwarrow:50,slightli:[50,55,27,9],surround:[21,12,46,23,27],unfortun:[21,38],current_theme_templ:2,joomla:2,span:[50,28,5,33,34,22,23,56,25,36],downharpoonright:50,geramond:50,regist:[0,8,30,48,31,20,53,42,11,40,25,56],jipsen:16,encod:[50,16],bound:50,two:[5,1,16,53,50,58,44,21,22,23,20,8,26,54],down:[38,39,25,23],shortparallel:50,wrap:41,ntriangleright:50,stackrel:50,nsupseteq:50,git:[21,15,38,43],suffici:[16,50,21,26,8,57],support:[14,15,46,43,16,21,31,50,3,4,35,44,6,45,24,55,56,8,57],transform:56,ngtr:50,avail:[0,2,3,5,6,15,44,20,21,23,24,49,27,28,33,34,38,8,41,50,45,46,48,1,51,52,55,56],width:[45,46,51,50,21,26,55,25,27],reli:[0,15,48,1,3,52,47,55],"30em":[46,27],wordpress:[2,9],editor:9,rell:26,rightthreetim:50,lnsim:50,longdiv:50,form:[45,46,48,19,50,21,26,23,56,8,49],offer:[15,43,4],forc:[46,55,8,25],epsilon:50,hear:[20,30],so4:50,downdownarrow:50,"true":[5,15,46,29,30,49,50,31,51,35,44,32,26,23,8,12,10,40,41,11,27],maxmacro:26,reset:[29,51],displayalign:23,donald:48,tell:[38,52,21,26,55,8],moveright:50,more:[50,6,9,11,15,43,18,21,22,23,24,27,29,30,47,40,36,38,39,8,41,42,44,46,48,58,12,52,53,55,56,57,1],retir:15,featur:[14,45,38,57,50,4,52,20,47,37,55,41],rfloor:50,exist:[46,29,50,21,38,41,27],ddot:50,backsim:50,triangleq:50,check:[0,15,38,47,19,50,21,30,11,41],tip:50,abovewithdelim:50,role:56,test:[13,14,15,38,53,31,3,52,20,21,45,8,55,40,41],tie:[31,25,29],smallsmil:50,searrow:50,mathel:2,intend:[48,41,23],munderov:56,mtextfontinherit:[46,27],gvertneqq:50,consid:[0,15,43,50,4,5,21,7,55,56,40,49,1],omega:50,outdat:4,longer:[30,15,46,38,3,19,44,23,55,27],furthermor:[1,15,23,8],anywher:8,cancelto:50,tex2jax_ignor:[5,43],ignor:[5,50,34,30],time:[0,3,4,50,6,13,40,43,19,20,26,23,27,29,47,38,8,42,30,46,1,7,52,55,56],push:[29,48,18,1,31,52,47,40],backward:[46,27],"5kb":26,mathrm:50,doteq:50,skip:[5,34,38],consum:19,known:1,skin:2,displayind:23,millisecond:[0,46,29,51,19,6,7,40,27],decid:[8,51],middl:[50,21],depend:[29,31,52,47,9,55,8,57],head:[2,3,52,21,9,55,39,8],decim:[50,32],readabl:48,nearrow:50,varpi:50,certainli:38,vee:50,decis:55,text:[2,31,5,6,9,11,13,15,43,44,19,20,21,22,23,24,49,26,27,28,16,3,33,34,36,39,8,50,46,47,48,58,12,52,55,56,1],succnsim:50,sourc:[14,15,38,50,3,51,44,45,23,20,24,55,56,40,49,1],string:[0,29,30,50,19,5,58,34,22,23,20,40,49,26],word:[5,34,8,56],room:26,dim:50,getjaxfor:[20,40,25],administr:[2,9],level:[21,8,38,35],did:47,item:[12,46,51,50,47,22,23,25,27],cooki:[13,31,43],div:[13,50,56,36,52],prevent:[50,28,46,43,21,51,5,33,34,26,23,12,8,27],mmlorhtml:[44,55,57,23,54],slower:[55,46,27],htmlcss:25,sign:[50,15,16,5,21,34,56,8],cost:[50,21,8,41,16],pmb:50,rightarrowtail:50,histori:[20,30,31,48],xandi:41,dotsi:50,dotsm:50,appear:[20,35,46,16,47,50,32,51,19,5,21,34,26,23,52,9,38,8,49,27],dotso:50,repli:20,dotsc:50,dotsb:50,current:[0,8,46,38,2,30,41,21,9,55,39,40,25,11,27,49],backepsilon:50,ampersand:[50,16],inlinemath:[50,15,3,52,5,21,34,8],defici:45,amalg:50,mathsiz:50,gener:[50,8,16,21,57,49,31,44,6,36,47,56,40,25],mfrac:[21,56],explicitli:[50,15,43,16,47,5,21,34,23,8,41],modif:[1,8],address:[21,38,52],along:[50,48,1,19,20,36,11,25],wait:[0,8,38,43,29,30,48,18,1,3,52,20,47,31,23,53,11,40,25],box:[0,43,31,50,6,37,25],html_head:2,shift:23,xtwoheadrightarrow:50,bot:50,queue:[30,35,29,53,17,18,1,31,52,47,48,40],overriden:40,digamma:50,varlimsup:50,commonli:[44,21,48],macintosh:40,semant:41,succsim:50,extra:[50,43,3,20,23,56],circumv:38,modul:[0,39,35],prefer:[15,46,51,21,55,38,57],iepro7:3,veebar:50,visibl:[50,28,1,52,5,33,34,45,25],marker:[50,16],myid:58,mobil:[15,43,8,24,55,40],arrowvert:50,memori:[53,49],bigr:50,visit:21,todai:48,subvers:[21,38],stylesheet:[0,35,29,30,18,31,52,53,23,9,55],handler:[0,35,48,3,31,52,53,23,56,8,25],xtofrom:50,current_skin:2,bigl:50,bigm:50,eqcirc:50,checkout:38,bigg:50,inputjax:[35,17,49,31,42,11,40,41],capit:17,reduct:55,peopl:21,bigtriangleup:50,enhanc:[56,43],minscaleadjust:[12,46,27],visual:[44,24,46,27],accept:[47,29,52],hphantom:50,easiest:[20,21,38,29,47],graphic:[48,55,38],prepar:[1,8,25],cap:50,uniqu:58,texhint:23,pmatrix:50,whatev:[50,2,16,25,1,52,20,41],cal:50,purpos:[47,56],getjaxbytyp:40,downharpoonleft:50,meant:29,subseteqq:50,varprojlim:50,backslash:[50,26,23],topic:[17,14,8],stroke:27,phrase:[50,21,16],chemic:50,occur:[0,45,38,29,47,18,1,3,51,19,20,21,31,42,23,8,53,40,25,30,52],eqsim:50,pink:50,alwai:[29,17,1,50,47,8],multipl:[50,1,15],trianglelefteq:50,write:[30,16,48,1,52,21,24],fourth:1,mathsf:50,tild:50,xhtml:[21,45],map:[56,25],book:48,max:50,clone:38,spot:[50,16],usabl:38,mac:[40,23],cours:[1,15,45,8],mai:[0,2,3,4,50,6,9,15,17,20,21,12,23,25,27,16,30,47,40,38,8,41,5,45,46,49,1,52,53,55,56],underscor:[50,21],data:[13,0,35,46,29,47,41,20,21,42,49,38,11,40,25],grow:[55,46,27,2],newlin:[50,46,43,27,19],vartheta:50,baso4:50,explicit:[0,46,21,23,8,27],uparrow:50,produc:[50,6,15,20,21,26,23,24,49,54,29,47,36,11,8,30,46,25,51,52,27,55,56],inform:[0,2,30,48,50,31,19,44,47,23,20,11,8,25,56],"switch":[15,38,43,50,36,56],preced:[47,8,23],combin:[0,15,46,43,32,50,12,44,21,26,55,10,8,57,56,27],block:[12,15,46,43,21,3,31,50,6,42,23,55,56,8],approx:50,comfort:38,addmmlclass:27,downarrow:50,lsh:50,tex2math:36,still:[20,45,46,2,29,30,48,1,7,44,12,23,37,55,8,57],pointer:41,ttf:38,dynam:[0,35,14,1,3,52,21,23,53,24,56,8],entiti:[50,45,43,16],snippet:[13,14,28,33,50,4,5,6,34,22,23,40],conjunct:15,group:[0,45,4],monitor:4,polici:38,mpcontext:[44,23],lucki:50,platform:[24,14,2,21],window:[35,46,29,47,3,51,19,6,23,52,55,40,27],"05em":50,bookmarklet:8,main:[50,15,38,1,17,41,58,35,44,21,42,23,8,55,11,40,25,56],mathexampl:52,non:[13,0,16,18,50,21,55,56],"float":55,myinputjax:42,initi:[0,15,16,53,50,31,51,35,5,21,34,42,23,8,20,56,40,49,1],floar:55,safari:[55,57,40,3,43],half:47,now:[15,46,43,48,31,44,21,12,23,37,38,55],discuss:[13,38,8,3,4],nor:[6,22],term:[21,15,8,19],name:[0,31,5,6,8,13,15,29,44,19,20,21,22,23,25,26,27,16,30,3,47,34,38,11,40,41,42,43,50,45,46,49,58,54],opera:[55,57,40,3,43],boxdot:50,drop:38,separ:[20,15,38,1,50,19,5,21,34,45,23,8,58,54],messagestyl:[6,23,19],confid:24,varsupsetneqq:50,compil:47,domain:[21,8,38],replac:[0,15,38,43,29,41,45,3,52,50,21,26,8,11,40,25,56],individu:[49,43,54,52],strikethrough:50,continu:[0,15,16,50,20,53,8,1],happen:[45,38,16,18,1,3,50,53,56],baselin:25,shown:[50,22,23,51,52],accomplish:[21,8,38,55],"3rd":21,space:[43,16,32,52,50,21,23,55,10,49,56],intermix:31,internet:[0,43,3,19,50,47,23,55,56,52,25,54],formula:[24,55,56,23,52],mathjax_zoom:37,correct:[47,15,3,23],simeq:50,earlier:[46,1,31,21,26,55,8,27],state:[11,25,1],migrat:[14,15],ajax:[0,8,17,1,31,35,50,47,42,20,40],mime:[45,49,21,42,11,40,25],underleftarrow:50,org:[15,43,2,3,51,52,50,21,36,9,55,39,8],ord:50,care:[16,32,3,50,21,54],ntrianglelefteq:50,couldn:47,x00b1:21,synchron:[0,29,14,48,18,1,3,52,20,47,31,53,40,30],mscarri:45,thing:[16,48,52,50,21,22],eqref:50,mathop:50,unwis:55,think:[50,23,16,52],frequent:[5,20,34,16],first:[3,50,9,29,20,21,22,23,25,27,16,30,47,34,38,11,8,5,45,46,1,52,53,56],origin:[41,50,38,16,30,18,3,52,20,21,23,49,11,8,25,27],lfloor:50,oni:38,directli:[38,43,1,3,52,50,47,42,9,56],onc:[0,38,29,30,50,31,52,44,21,36,55,11,25,1],arrai:[31,50,6,10,8,43,18,20,22,23,25,26,27,28,29,30,32,33,34,36,11,40,42,5,46,47,12,54,55,56,57],yourself:[38,21,18,50,47,23,8],fast:[15,43,8],formatnumb:26,open:[14,45,38,51,50,21,9,24,39],ios4:43,size:[12,46,43,58,52,50,26,23,55,8,25,27],given:[0,2,50,13,16,18,19,20,21,22,23,49,29,47,37,11,40,41,43,30,25,58,56,1],convent:25,ifmodul:38,referenec:40,leftrightharpoon:50,circl:50,white:58,conveni:[21,41,23],hub:[0,31,5,6,7,8,10,12,15,44,17,19,20,21,26,23,25,27,28,16,3,32,33,34,36,37,11,40,50,35,46,47,49,1,51,52,54,55,56,57],especi:[55,56],copi:[15,38,16,3,4,44,21,45,8,24,40,42],specifi:[31,50,6,7,8,10,12,13,15,29,18,20,21,22,23,26,27,16,30,47,34,37,11,40,43,5,46,48,58,51,53,55,56,57,1],github:[15,38],enclos:[46,58,50,23,56,27],quad:50,than:[0,3,5,6,8,9,10,15,29,44,18,20,21,26,23,24,49,54,16,30,31,32,34,38,11,40,41,42,43,50,45,46,48,58,51,52,53,55,56,1],serv:[21,43],wide:[24,38,56,46,27],instanc:[13,8,49,1,5,34,42,40,41],underbrac:50,balanc:5,were:[15,49,52,20,55,25,27],posit:[46,43,18,50,23,27],stub:42,browser:[31,5,6,13,14,15,43,44,21,23,24,49,27,16,40,3,34,35,36,38,8,50,45,46,48,51,53,54,55,56,57],preccurlyeq:50,sai:[18,3,29],lnot:50,doublecup:50,nleftrightarrow:50,argument:[30,29,1,50,47,41,54],hskip:50,doctyp:[21,45],engin:[24,14],techniqu:[15,3],npreceq:50,consortium:24,note:[0,3,50,6,9,40,21,22,23,49,26,27,16,30,47,34,38,8,42,5,46,58,51,52,55,56,57,1],x2260:21,jsmath:[14,56,36],poster:30,noth:[21,29,47],channel:[20,48],updownarrow:50,surd:[50,43],sure:[50,15,38,43,30,1,4,52,5,21,34,55,8],windowset:51,normal:[5,46,29,50,3,44,21,34,23,56,58,27],buffer:26,compress:8,beta:[50,8],pair:[13,0,29,50,5,58,34,22,20,11,40,25,26,54],fileurl:0,beth:50,hotfix:8,latex:[14,16,48,50,5,21,24,56,8],renam:15,textarea:[5,34],later:[30,45,46,29,16,18,1,50,47,8,40],drive:38,typeset:[0,31,5,51,43,19,20,12,23,24,49,27,28,47,34,37,40,35,46,33,48,1,7,52,53,55,56],badg:4,sigma:50,mathfrak:50,showmathmenu:[46,23],ismobil:40,show:[50,38,21,51,52,44,6,22,4,47,39,54,23],autoreset:29,cheap:27,parentnod:[3,43],unprocess:[40,49,52],concurr:31,permiss:[21,38,16],hack:55,isfirefox:40,corner:[35,23,19],xml:[24,48],onli:[0,2,3,4,5,6,15,43,44,21,22,23,24,49,27,16,30,40,47,34,38,11,8,50,46,48,58,52,55,56],slow:25,activ:[15,38,29,48,4,52,44,53,45,56],behind:50,inlinedelimit:50,otim:50,black:50,offici:8,geq:50,mypic:[5,33,34,22,28],nearli:[44,50,8,54],variou:[0,8,2,30,17,58,19,20,6,23,11,40,56,54],get:[31,50,13,14,29,19,21,26,23,25,27,16,30,3,47,38,8,41,43,5,45,46,1,52,55],cannot:[50,16],ncong:50,lighter:27,nsim:50,requir:[0,5,15,1,29,47,50,3,7,44,21,34,42,8,20,24,11,40,25,56],truli:52,prime:50,blind:56,lceil:50,mathpunct:50,rerend:[11,40,49,52],consist:[45,16,1,50,22,55],hostil:21,intermitt:[35,19],shortmid:50,apricot:50,through:[50,15,38,43,30,1,20,53,45,55,56,8,41,54],where:[0,31,4,50,6,13,15,29,19,20,21,26,25,27,16,47,40,38,11,8,44,35,46,49,58,52,53,12,56],wiki:[2,48,3,50,21,56,8],latexmathml:16,often:[46,16,58,50,21,56,27],keyboard:48,maximum:25,ismac:[40,31],concern:[56,40,16],infinit:26,detect:[3,43,29],parent:[13,41],enumer:50,label:[55,26,54,51],enough:[45,1,21,22,55,8],between:[50,8,46,16,29,47,1,51,20,21,55,56,40,49,27,43],maltes:50,"import":[0,38,43,1,44,53,20,8],across:[48,55],absenc:2,longleftrightarrow:50,vdot:50,screen:[0,46,43,1,19,44,24,52,25,27],negmedspac:50,come:[15,38,1,3,44,47,45,55,56,8],leftleftarrow:50,fit:[20,51],timout:0,pertain:21,audienc:[55,45],inconsist:15,overbrac:50,improv:[15,43,4,23,55,8],among:8,color:[43,48,58,50,22,23,37],operatornam:50,period:[0,35,38],colorbox:50,colon:[50,58],cancel:[50,29],"70kb":8,bigcirc:50,msrow:45,damag:21,needlessli:47,tabel:55,myserv:8,rebuild:40,mark:[0,45,16,50,5,21,34,36,56,58,27],addit:[0,1,15,16,29,21,18,50,52,44,6,45,49,23,47,20,11,40,25,58,43],succapprox:50,upharpoonleft:50,arcsin:50,xrightharpoonup:50,mathplay:[43,3,51,44,23,55],breve:50,texfont:6,blacktriangl:50,former:32,those:[50,6,40,18,20,21,22,23,24,49,29,30,47,11,8,42,44,45,38,25,58,52,56,1],"case":[3,50,15,17,20,21,22,23,49,54,29,47,38,8,41,46,32,25,58,52,55,56,1],kappa:50,tostr:29,oldstyl:50,addtext:13,trick:50,invok:55,eqnchunk:[46,27],invoc:8,margin:[58,26],opera10:46,advantag:[55,1,15,8,2],ctrl:23,leadsto:50,henc:38,worri:[20,56],destin:40,somewher:8,updatemath:52,bigwedg:50,myclass2:[5,34],develop:[15,38,48,4,45,8],author:[15,16,19,50,21,42,23,37,24,56],media:[58,8,38],postjax:[56,23],same:[5,15,38,43,16,21,50,9,28,44,33,34,26,23,30,20,53,8,25,1,27],html:[2,3,5,6,8,10,13,14,15,43,17,20,21,22,23,25,27,28,16,31,33,34,35,36,38,39,40,44,45,46,48,50,51,52,53,54,55,56,57,58],pad:[13,50,58],knuth:48,mathvari:[56,46,27],document:[0,15,38,48,16,14,17,50,3,52,5,21,45,23,8,24,55,56,40,25,36],bring:56,finish:[48,1,3,52,53,40],vvdash:50,nest:[5,45,43,27,35],availablefont:[6,8,46],someon:50,hslash:50,capabl:[17,24,55],formaterror:40,mani:[50,8,43,53,58,5,47,34,55,40,1],extern:[0,35,47,1,20,53,40],immedi:[0,3,1,31,52,20,18,8],submenu:[23,51,9],appropri:[20,50,44,36,11,25,56],macro:[43,50,21,26,23,8,54],mml_svg:[44,8],leftharpoonup:50,eqnchunkdelai:[46,27],overwithdelim:50,without:[0,15,46,47,48,50,20,6,45,23,8,56,40],model:[14,35,38,17,31,50,55,56,41],bigotim:50,stixfont:6,mml2jax:[45,21,44,33,23,56,54],loaderror:0,when:[0,3,5,6,8,9,10,12,15,16,17,18,19,20,21,26,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,11,40,41,42,43,44,45,46,47,48,22,50,51,52,53,49,55,56,57,1],greasemonkei:[8,3],bitmap:48,flavor:[44,8],speed:[55,56,15,43,8],versu:1,strikeout:50,widest:[21,45],asciimathml:16,nleqq:50,filevers:35,except:[44,21,53,55],littl:[0,30],blog:[2,48,50,21,56,8],rescal:55,treatment:50,yuicompressor:43,earli:[8,43],hover:[37,7,23,51],around:[50,8,16],read:[15,38,43,48,22,20,21,45,8],outermost:22,boldsymbol:50,messsag:19,getjaxbyinputtyp:40,moo:41,world:[24,47,8],lasterror:40,mod:50,sum_:56,blackberri:43,asciimath2jax_process:34,cdot:50,integ:[50,40],server:[50,15,46,43,3,44,21,38,8],either:[0,15,38,2,30,17,50,3,58,5,21,34,22,8,37,20,55,40,57,26],output:[31,50,10,14,15,43,20,21,12,23,25,27,16,40,35,36,11,8,41,44,45,46,48,49,58,51,52,54,55,56,57],rollov:43,manag:[13,35,38,2,47,48,31,19,50,21,56,49],lesssim:50,node:13,respect:[12,46,27,29],inlin:[5,21,34,15],constitut:17,pod:50,slice:29,easili:[24,21,56,48],definit:[0,46,43,50,51,44,26,7,37,24,12,58,27],shoveright:50,inputid:49,dashleftarrow:50,mathcal:50,complic:[48,55,22,45,57],refer:[20,8,38,14,31,3,53,52,44,6,30,26,42,47,49,11,40,41,21],arrow:50,power:[1,4],inspect:40,broken:56,formatid:26,found:[0,38,21,4,47,23,55,11,25],regexp:[5,34],"throw":[25,11,42,3],trianglerighteq:50,comparison:[1,40],central:23,ibook:55,firstnam:47,ddddot:50,stretch:50,act:[50,48,1,20,47,26,23,56,27],industri:48,needsupd:[11,49,52],processor:[31,50,10,12,21,26,25,54,16,32,8,44,45,46,48,1,51,27,55,56,57,58],hookrightarrow:50,nobreakspac:50,routin:[13,0,53,47,42,11,40,25],nsupseteqq:50,effici:[41,27,52],elementari:45,lessdot:50,triangledown:50,compos:45,rightharpoondown:50,mathbackground:50,your:[0,2,3,4,5,6,7,8,9,10,12,14,15,43,21,26,23,24,27,28,16,32,33,34,36,37,38,39,40,44,45,46,47,48,22,50,51,52,53,55,57,1],compon:[0,31,50,7,15,44,17,20,21,24,25,54,16,40,45,11,8,41,30,35,58,51,53,56],log:[50,21,38,19],area:[26,19],aren:50,fontwarn:[6,23,54],lor:50,strict:38,compliant:[15,43],interfac:[38,2,21,9,24,39],low:29,lot:[20,26,38],lambda:50,verbatim:50,cloudfront:21,buggi:50,categor:54,faster:[44,55,56,8,43],pull:38,mathml:[3,50,9,10,39,14,43,21,23,24,49,54,16,11,8,44,45,48,25,52,27,55,56,57],bullet:[50,48],possibl:[0,45,38,16,29,6,58,19,44,21,23,47,55,56,8,41,1,43],"default":[0,31,5,6,7,8,10,12,15,29,44,19,21,26,23,25,27,28,16,33,34,36,37,38,11,40,42,50,46,32,51,54,55,56,57],processescap:[5,50,15,8],buildrel:50,notag:50,asiimath2jax:16,embed:45,connect:[44,21,56,8,47],taylor:21,creat:[0,31,4,50,13,19,20,42,49,29,47,11,41,30,35,38,48,25,58,51,53,56,1],certain:[20,30,53],leftrightsquigarrow:50,risingdotseq:50,varliminf:50,file:[0,2,31,44,6,8,9,10,11,15,16,18,19,20,21,26,23,25,27,29,30,3,47,36,38,39,40,42,43,50,35,46,32,48,22,58,12,53,54,49,55,56,57,1],momentarili:40,outputjax:[35,17,49,31,42,40,25],fill:[55,57],again:[50,0,40,49,52],iiiint:50,googl:4,pmod:50,event:[0,43,53,48,31,3,51,52,44,7,23,20,56,25],wai:[2,3,50,15,19,20,21,42,23,27,28,29,30,33,34,8,5,38,47,1,52,55,56],getscript:13,you:[1,2,3,4,5,6,8,9,10,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,32,33,34,36,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58],trash:49,poor:55,resolut:24,sequenc:[14,8,38,18,50,31,20,53,26,40],symbol:[50,21,26,16,32],mhchem:50,begingroup:50,dashv:50,track:[56,25,4],menuset:[44,23,37],reduc:[50,8],mathcolor:50,lbrace:50,eqchunkdelai:[46,27],directori:[0,46,43,53,48,49,31,19,44,21,42,23,20,38,11,8,25],descript:[28,33,3,5,6,34,35,23],lbrack:50,hello:47,calle:41,potenti:1,extpfeil:50,escap:[50,26],dst:40,negthickspac:50,lvertneqq:50,all:[0,2,3,5,6,8,14,15,43,44,19,20,21,26,23,24,25,27,28,29,30,31,33,34,35,38,40,41,42,50,45,46,47,48,1,12,53,54,55,56,57],consider:8,illustr:52,dollar:[50,15,16,5,21,34,8],improperli:5,mathjax_displai:58,abil:[15,38,43,48,55,56],follow:[31,50,15,43,17,20,21,22,25,26,27,29,47,38,11,8,41,42,44,46,58,52,54,56],alt:[3,23],disk:[44,21,8,38],multlinewidth:26,scr:50,articl:48,init:41,program:[35,2,53,17,49,1,31,21,24,56,41],smile:50,cgi:0,introduc:[21,8,55],global:[35,29,17,52,50,55],multlin:[50,26],vert:50,far:[0,30,38,16,19],varrho:50,"1px":[13,50,58],verb:50,mechan:[50,29,30,18,1,31,20,53,41],difficult:[47,45,53],loadcomplet:[50,0,40,42,8],veri:[37,9],preferredfont:46,alterant:48,list:[2,31,50,6,7,9,10,11,8,17,20,21,26,23,25,27,28,29,33,34,37,38,39,40,5,46,32,48,49,1,51,52,12,56,57],"_html":55,emul:55,adjust:[46,3,52,12,9,39,8,27],plain:50,small:[12,46,43,19,50,26,56,27],dimens:[50,23,43],getalljax:[40,52],foreground:58,lll:50,tex:[2,3,5,6,8,9,10,11,14,15,43,44,20,21,26,23,24,27,28,16,35,36,38,39,40,42,50,45,46,48,1,52,54,55,56],zero:[6,18],design:[45,3,4,44,24,39],pass:[0,15,43,29,30,18,1,31,51,44,47,20,56,40,41,54],overlin:50,further:[18,1,55,11,25,56],what:[0,31,4,5,6,7,14,8,29,21,26,23,24,27,28,16,33,34,37,40,43,50,45,46,51,52,12,56],sub:35,section:[3,5,6,7,8,10,12,15,43,44,26,23,27,28,16,32,33,34,36,37,39,40,50,45,46,47,51,54,55,57],advanc:[17,14,24,8],abl:[20,15,46,29,2,21,50,52,44,6,45,23,9,24,38,39,8],delet:46,version:[31,4,44,14,15,43,21,26,25,27,16,3,47,40,37,38,11,8,42,35,46,49,52,55],sup:50,"public":[30,38],hasn:[0,15,31,19,11,25],full:[0,43,47,17,3,52,44,21,23,24,56,8],hash:[31,23],geqslant:50,modular:[24,45],ggg:50,trunk:38,standard:[20,38,48,50,44,21,24,55,56,8,58],modifi:[14,15,2,52,50,19,44,21,42,8,20,40,25],valu:[0,31,50,6,7,10,13,43,18,20,22,23,25,26,27,28,29,32,33,34,37,40,41,5,45,46,47,58,51,52,54,12,56,57,1],search:[24,14,40,4],sender:20,prior:[50,55,45,3,23],amount:[50,6,40,26,29],within:[0,31,50,6,15,29,17,21,26,25,16,40,47,34,36,8,41,43,5,45,38,52,53,56],action:[0,3,50,40,29,18,19,20,42,25,16,31,47,37,11,8,30,35,48,1,52,53,56],mathjax_wikipedia:3,mml_htmlormml:[15,2,3,44,21,9,55,39,8],llap:50,chunki:[46,27],via:[0,2,31,5,6,15,43,19,20,21,42,23,49,54,29,3,34,37,38,8,41,44,45,46,1,56],shorthand:52,filenam:[47,15,8],href:[50,22,43],inappropri:20,emptyset:50,simbl:3,decrement:18,establish:44,select:[45,46,38,51,44,55,40,57,27],hexadecim:50,proceed:[1,22],x41:50,distinct:17,barwedg:50,stretchi:50,rightsquigarrow:50,taken:[20,50,1,52,55],imath:50,ispc:[40,31],toggl:50,vec:50,flat:50,diamond:50,desir:[44,41,3,38],mlongdiv:45,ital:[50,0,48,23,21],flag:23,aleph:50,particular:[13,0,8,38,16,29,47,48,18,58,50,21,30,23,53,55,56,40,41],webkit:[40,43],upsilon:50,mathml3:45,cach:[20,8],showmathmenumsi:[12,23,43],none:[30,28,46,29,47,5,33,34,26,23,8,56,40],outlin:43,det:50,dev:4,widehat:50,remain:[44,48],paragraph:[46,21,52,50,6,56,27],caveat:[21,25,38],def:[50,26,41],deg:50,mathtip:50,scan:[40,23],myspan:22,challeng:44,registr:42,share:[21,8,38,23,4],templat:[39,8,2,9],succneqq:50,minimum:[12,40,46,43,27],unreli:15,explor:[0,43,3,19,50,47,23,55,56,52,25,54],sharp:50,mathinput:52,huge:50,rowspan:45,goal:24,awkward:41,secur:[21,3,38],programmat:[56,36],anoth:[50,38,30,18,1,19,20,53,11,52,56,54],showmathmath:12,csc:50,amssymbol:[44,21,50,15,8],ddagger:50,stix:[46,43,48,50,6,38,55,56,8],simpl:[55,22,23,19],css:[0,50,6,7,10,14,15,43,21,12,23,25,27,40,45,36,37,38,8,44,35,46,48,49,58,51,52,54,55,56,57],unabl:6,regener:[49,52],resourc:43,referenc:[6,26],algebra:48,iphon:43,variant:48,reflect:[31,52],vdash:50,mstack:45,blacker:27,impliedbi:50,associ:[12,46,29,49,52,50,47,42,11,40,25,56,27],welcom:4,lhd:50,footer:8,confus:[21,15],ambigu:17,caus:[0,50,6,5,40,19,20,21,26,23,25,16,47,34,35,11,8,30,45,38,49,1,51,52,55,56],callback:[0,35,29,30,17,18,1,31,53,52,20,47,48,49,11,40,25],firefox3:46,merror:58,unrhd:50,help:[14,15,38,51,21,4,23,55,8],soon:[8,3,23,52],trade:[55,8],retypeset:52,hierarchi:[8,38],suffer:55,paramet:[0,31,50,13,15,29,18,19,21,26,23,25,54,28,16,30,33,40,37,11,8,41,42,43,44,47,49,52],style:[0,31,50,6,51,13,14,43,19,21,22,23,27,34,37,40,5,46,48,58,7,12,56],arial:[50,46,27],border:[13,50,58],x221a:45,processupdatetim:40,x221e:56,late:[48,3],isreadi:[35,31],pend:18,amsmathaddit:1,processenviron:5,might:[0,15,38,47,1,4,20,21,26,8,56,45,25,27],alter:[5,49,52],cee:50,good:[1,3,27,4],"return":[13,0,45,41,29,30,18,1,53,19,20,47,26,52,49,11,40,25,42],textstyl:50,longleftarrow:50,getelementbyid:52,wilipedia:48,rlap:50,equationnumb:26,xtwoheadleftarrow:50,mathscr:50,instruct:[22,21,15,3,2],bigcup:50,ntriangleleft:50,iff:50,iint:50,fulli:[21,1,45],unicod:[50,6,45,46,27],x2211:56,subsystem:31,originaltext:49,weight:[22,41],setrender:40,hard:[38,43,4,44,21,8],realli:[47,23],nless:50,expect:[46,1,52,50,23,8,27],math2:50,math1:50,beyond:[50,4],orient:[17,41,35,31],"try":[38,4,20,21,42,41],looparrowright:50,shortcom:53,skiptag:[5,34],print:[24,55,58,38],occurr:53,msie:[40,57],difficulti:50,assist:44,safari3:46,ast:50,offsetx:[46,27],symbian:43,mml:[8,57,44,21,35,55,11,40,49,56],reason:[0,45,16,47,1,3,19,50,21,26,40,42],base:[38,15,46,2,29,53,17,31,3,35,6,42,8,49,24,55,40,41,27],put:[0,15,38,16,53,50,21,23,55,8,54],mathr:50,processupdatedelai:40,offseti:[46,27],basi:[55,8,57],succnapprox:50,stanard:50,drupal:2,msbm10:21,taht:12,showprocessingmessag:[23,54],perhap:[47,8],bumpeq:50,perman:50,elementjax:[35,17,49,31,42,11,25],stixgener:[50,46,27],getelementsbytagnam:3,assign:[5,47,34],major:[24,55,8,3],notifi:20,boxplu:50,upper:50,feel:4,exchang:48,lastnam:47,number:[0,2,31,50,6,15,43,19,21,22,23,25,26,27,29,47,40,38,11,8,42,44,35,46,32,49,1,52,55],grtaphic:56,fadeoutstep:6,done:[18,1,31,50,21,56,8],least:[56,40,8,16],blank:[30,29],stabl:[21,8,38],miss:[50,16,29],differ:[50,8,38,29,47,57,1,52,20,21,23,53,56,40,41],script:[0,2,31,5,9,11,13,15,43,44,20,21,42,23,25,40,3,34,36,39,8,50,38,49,1,52,55,56],interact:[8,46,21,24,56,40,49,27],smoother:6,construct:[56,1],statement:[1,29],exten:16,illeg:[22,43,8],store:[13,30,15,46,43,29,49,1,8,52,47,35,36,37,11,40,25,56],xmln:21,option:[5,6,7,8,9,10,12,14,15,44,21,26,23,27,28,16,33,34,36,37,40,41,42,50,46,32,22,51,54,55,56,57],nleftarrow:50,eqn:26,ntrianglerighteq:50,selector:[58,23,19],tex2jax_process:5,part:[5,45,38,16,29,53,41,50,9,3,44,21,26,23,20,24,55,56,8,25,1],pars:[50,43,16],mmltoken:50,binom:50,cosh:50,kind:56,aaa:26,prebuilt:21,whenev:[30,45,38],remot:38,remov:[50,8,46,43,29,30,49,19,5,6,34,23,52,56,40,25,27],dtd:21,bridg:[15,49],arrang:29,markup:[0,45,16,48,50,21,56,27],ffff88:58,comput:[46,38,48,50,55,40,27],nleqslant:50,packag:[38,16,48,50,26,36,8],expir:13,"null":[13,0,35,46,43,29,30,41,3,19,6,42,23,52,49,11,40,25],built:[14,15,3,55],equival:[13,29,1,52,44,47,22],lim:50,self:[21,45,43],ell:50,also:[3,4,5,13,15,29,44,17,19,20,21,12,23,49,27,16,47,38,8,41,50,45,46,48,51,52,53,55,56,57],brack:50,build:21,brace:[5,50,3],msgroup:45,triangleleft:50,distribut:[21,39,15,38,8],appendchild:[13,3],addel:13,reach:8,ignoreclass:[5,34],react:30,most:[20,35,38,2,29,48,31,50,3,44,21,42,55,56,8,41,58,43],plan:21,rho:50,alpha:50,rhd:50,vardelta:50,renewenviron:50,clear:[30,46,29,31,19,20,27],tpl:2,h2o:50,exp:50,latest:[15,38,2,3,4,52,50,21,36,9,55,39,8],leftroot:50,cdata:43,nshortparallel:50,carefulli:[22,46,27,52],cdn:[50,15,38,43,2,3,52,44,21,36,9,55,39,8],flicker:[46,27],finv:50,particularli:[44,38],rightleftarrow:50,font:[0,50,6,14,15,43,19,21,22,23,24,25,26,27,38,8,46,48,58,51,52,53,55,56],find:[8,4,52,50,6,36,9,56,40],preremoveclass:23,access:[50,38,43,2,47,49,1,51,44,21,30,24,55,8,41],execut:[0,29,30,18,50,31,20,47,56,8,1],pretti:38,solut:[21,56,38,4],delayedx:29,queu:[18,1,8,29,30],factor:[12,46,23,27,43],noerror:[44,21,50],jaxfil:42,tagsid:[26,54],precnsim:50,express:[20,46,30,50,52,5,21,34,26,23,55,25,1,27],strut:50,nativ:[45,17,3,44,24,55,56,57],mainten:15,rest:[0,45,1,52,50,21,24,56],konqueror:[55,40],restart:[38,18,1,5,34,8],ie9:[55,38,43],ie8:[55,43],ie7:55,acut:50,vmatrix:50,common:[14,15,16,2,21,48,50,45,44,6,22,8,40,42],set:[0,1,31,5,6,7,8,10,12,13,15,16,19,20,21,26,23,49,27,28,29,30,3,32,33,34,36,37,38,40,41,43,44,35,46,47,48,22,50,51,52,53,54,55,56,57,58],overrightarrow:50,startup:[14,8,43,52,3,1,31,35,20,42,23,40],see:[0,1,31,4,5,6,7,8,9,11,12,15,29,18,20,21,26,23,25,27,28,16,30,33,34,36,37,38,39,40,43,44,45,46,47,48,50,51,52,53,54,55,56,58],barb:50,sec:50,arg:50,ams_hml:8,disadvantag:55,langl:50,inconveni:15,someth:[50,38,4,52,5,21,23],particip:4,won:[55,1,8,38,43],columnspan:45,subscript:[50,21,43],experi:23,altern:[0,16,50,47,56,41],numer:[40,45],complement:50,javascript:[0,2,3,50,6,7,9,12,14,15,17,20,21,22,23,24,49,26,27,29,47,37,39,8,41,44,35,46,48,58,51,52,53,54,55,56,1],isol:[50,43],mailbox:[20,48],bmatrix:50,consumpt:43,distinguish:11,longrightarrow:50,errat:8,classnam:3,popul:31,closur:[47,29,52],last:[0,38,29,18,58,50,40,25,54],delimit:[50,15,43,16,5,21,34,56,8],hyperlink:56,mathzoom:[44,58,25,54,37],nvdash:50,grei:[50,31],context:[5,34,29,51,23],overset:50,hbar:50,whole:[53,40,52,35],load:[0,2,3,50,8,10,11,14,15,43,18,19,20,21,26,23,24,25,27,29,30,31,47,36,38,39,40,42,44,35,46,32,48,1,12,52,53,55,56],markdown:[50,21,56,48],simpli:[5,15,38,16,29,47,18,50,52,44,33,34,28,23,8,24,11,40,25,42,36],point:[50,18,8,32,21],instanti:41,smith:47,usemathmlspac:10,fcolorbox:50,header:[8,38,2,9],suppli:[40,49,23,29],bigve:50,mistak:22,zeta:50,throughout:50,becom:[15,38,29,1,4,20,45,55,41],notaion:14,gneq:50,devic:[24,55,15,43,8],due:[15,46,27],empti:[35,46,29,1,31,23,56],otherwis:[0,8,29,49,50,19,44,21,35,9,55,11,40,41],invis:[50,38],fire:[31,8,3,52,47],imag:[15,46,43,33,48,3,28,5,6,34,22,24,38,8,25],descib:16,coordin:[18,56,1],understand:[44,56],demand:44,urcorn:50,convers:[50,16],blacksquar:50,look:[13,50,45,46,29,2,30,58,16,4,19,5,21,34,54,52,9,38,56,40,27],bcancel:50,solid:[13,50,58],histor:55,pitchfork:50,lvert:50,"while":[13,0,15,38,21,57,50,3,32,20,6,45,23,53,56,8,30,1],blacktriangleleft:50,nprec:50,abov:[13,15,46,16,29,21,41,1,3,8,32,52,50,6,23,47,38,40,25,27,43],circlearrowright:50,bowti:50,everyon:[20,27],loop:[26,49],pack:43,subsect:[26,42],measuredangl:50,vartriangl:50,eqslantless:50,biguplu:50,itself:[41,50,15,38,1,29,30,18,58,31,35,20,45,23,8,49,11,40,25,56,54],overleftarrow:50,limit:[13,0,45,50,32,26,8],peramet:11,rightarrow:50,minim:25,xleftarrow:50,shorten:19,shorter:43,am_htmlormml:[44,21,8],redisplai:19,htmlcsslast:25,conflict:[50,56,43],higher:8,upuparrow:50,optim:[55,43],wherea:50,domin:48,alert:[20,47,1,29],jsmath2jax:[28,36,54,43],temporari:8,user:[31,4,50,6,7,14,40,19,20,21,12,23,24,27,29,3,36,37,38,8,44,45,46,51,52,55,56,57],robust:[20,48],stack:26,recent:[24,3],lower:[35,43,17,31,19,50,23],task:50,older:[45,8],entri:[50,18,58,43,48],searchabl:24,ngeqq:50,textit:50,curvearrowleft:50,normals:50,scriptsiz:50,fallingdotseq:50,explan:[50,21],rvert:50,obscur:[43,19],press:[23,52],amp:[50,43,16],regardless:52,cup:50,setscript:13,blacklozeng:50,endgroup:50,ffeeee:50,rgb:50,input:[31,50,9,10,39,15,43,20,21,42,23,25,26,54,16,32,40,35,36,11,8,41,44,45,48,49,1,52,55,56],subsequ:[50,11,25],sin:50,oslash:50,asciimath:[14,16,32,48,44,21,34,24,56,8,54],format:[14,15,16,48,49,50,56,44,21,22,23,24,55,11,45,25,26],big:[50,54],moodl:2,intuit:48,tomathml:[44,49],game:50,insert:[50,28,46,29,3,5,33,34,42,23,9,39,40,25,56,27],bit:41,diagup:50,lost:47,semi:58,varkappa:50,signal:[30,8,29,53,17,31,35,20,47,42,48,40],altough:47,resolv:43,collect:[29,48,58,47,49,1],api:[17,14,24,21],mathrel:50,swarrow:50,asciimath2jax_ignor:34,scrip:15,gtrless:50,simplifi:43,creation:[11,31],some:[2,3,50,6,8,15,16,17,18,20,21,26,23,24,25,27,29,47,38,11,40,41,42,12,45,46,49,1,52,54,55,56,57],back:[38,16,21,49,50,6,34,25],endtoggl:50,urgent:8,sampl:[38,53,58,31,52,20,21,23],instal:[14,15,46,43,21,38,50,6,9,24,55,8],scale:[46,43,50,12,23,24,27],substitut:26,mathemat:[0,31,5,6,7,9,11,12,8,43,44,20,21,26,23,24,25,27,28,16,33,34,36,37,38,39,40,42,50,45,46,48,49,1,51,52,55,56],larg:[50,0,15,57,8],prod:50,reproduc:52,sqsubseteq:50,tex2jax:[5,15,43,52,50,3,35,44,21,45,23,56,8,54],machin:[48,38],garamond:50,previou:[47,1,30,29,19],run:[0,3,5,6,10,40,18,20,21,26,23,27,28,29,31,32,33,34,38,8,30,45,46,47,1,52,53,12,56,57],doteqdot:50,odot:50,step:[6,56,31,2,21],hookleftarrow:50,varsubsetneq:50,carol:50,impos:38,ngeqslant:50,reappear:19,materi:[55,43,52],prove:55,retain:27,dialog:43,rangl:50,succcurlyeq:50,gamma:50,file3:1,file2:[0,1],file1:[0,1],file4:1,bmod:50,msam10:21,prec:50,notat:[16,48,50,21,24,56,8],isjax:40,chang:[2,3,50,15,43,19,21,26,23,49,27,32,40,38,11,8,44,46,51,52,55,56],announc:53,inclus:[46,27],triangl:50,question:[21,42,4],submit:4,custom:[50,43,16,19,44,21,24,55],adjac:43,perp:50,includ:[0,1,2,3,5,6,7,8,10,12,15,16,17,20,21,26,23,24,27,28,29,31,32,33,34,35,36,37,38,11,40,42,43,44,45,46,47,48,22,50,51,52,54,55,56,57,58],suit:[15,6,32,45,8,21],nativemml:[45,48,57,51,44,12,55,56,40,25,54],overleftrightarrow:50,ulcorn:50,properli:[13,0,15,38,43,21,49,1,3,52,5,6,45,47,55,40,41],emnu:51,atop:50,loadhook:[0,40,47],serif:[50,0,46,27],link:[15,38,43,2,21,17,50,6,26,53,8],translat:[56,11,42,25,43],delta:50,line:[50,15,46,43,2,32,48,31,3,5,21,34,28,54,38,55,56,8,27],enspac:50,rmoustach:50,qquad:50,divideontim:50,geqq:50,similar:[53,38,29],xmapsto:50,enlarg:37,constant:[20,26],doesn:[20,46,29,16,49,50,44,23,38,8,41,27],repres:[13,50,28,21,48,58,19,5,6,34,22,23,24,33,25,56],"char":50,mathdiv:[13,47,1,52],tbinom:50,home:[48,0,16],ebook:55,gecko:40,phantom:50,iiint:50,titl:[21,52],sequenti:[53,1,31],invalid:[50,22],llcorner:50,toaudibl:49,bracket:[50,22,23],shoveleft:50,xrightarrow:50,department:38,supseteq:50,nice:3,lozeng:50,delayclear:[46,27],msup:[21,56],eqnchunkfactor:[46,27],alttext:33,varsubsetneqq:50,eval:29,fisher:50,newcommand:50,svn:[21,15,38],rightharpoonup:50,land:50,mimetyp:[49,11,42,25],svg:[43,48,51,44,54,55,56,8,27],supseteqq:50,depth:50,dot:50,leak:49,aquamarin:50,scroll:39,prototyp:41,code:[0,3,4,5,8,9,13,14,15,44,18,20,21,22,23,25,28,29,30,31,33,34,40,42,50,35,47,48,58,52,53,1],partial:50,edg:55,queri:56,tiddlywiki:2,tooltip:[50,46,27],edu:38,privat:[53,42,38],elsewher:52,friendli:21,send:[20,30,8],becam:48,sens:56,sent:[20,30,40,48],actiontyp:[46,27],unzip:38,gnsim:50,xxxxxxxx:[21,38],mous:[46,43,51,44,7,37,56,25,27],uselabelid:26,untouch:50,skew:50,tri:[0,15,46,50,12,27],ischrom:40,mathit:50,button:38,geograph:8,fewer:44,nleq:50,xcancel:50,userscript:3,maction:[50,46,43,27],pleas:[22,4],impli:50,smaller:[44,0,56,43],fortun:20,getjaxfrommath:25,natur:[24,21,50,38,56],aperson:47,jump:31,varupsilon:50,download:[0,15,38,43,6,21,23,24,56,8],hspace:50,click:[50,51,44,23,37,9,56,25],append:[13,38],compat:[50,46,43,48,5,26,23,55,8,27],index:[21,38,2],compar:55,cell:55,acronym:48,mathjax:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58],backprim:50,vargamma:50,varsigma:50,leq:50,intercept:21,let:[15,38,45,51,50,21,22,23,40,57],sinh:50,vertic:[5,34,25,23],sinc:[0,50,15,29,44,18,20,21,26,23,16,40,8,41,43,30,45,46,58,12,52,53,55,56,1],tex4ht:56,rtime:50,convert:[14,45,16,29,50,3,19,5,36,24,56,25],sqcap:50,larger:[46,44,21,55,56,8,27],technolog:[44,24,4],zscale:23,circledast:50,typic:[50,38,16,5,21,11,8],honor:[38,12,46,23],chanc:[5,20,34,30,21],firefox:[38,43,3,55,40,57],rgroup:50,bittersweet:50,appli:[46,50,12,38,8,41],iskonqueror:40,lessgtr:50,"boolean":40,smallmatrix:50,oval:50,cloud:[15,8],from:[0,2,31,5,8,11,12,14,15,16,19,20,21,26,23,25,27,28,29,30,3,33,34,36,38,39,40,41,42,43,44,35,46,47,49,50,51,52,55,56,1],zip:[21,38,43],commun:[20,14,4,21],chi:50,doubl:[50,44,26,23,37,25],upgrad:[6,38,4,14],varphi:50,cho:50,implic:38,few:[50,21,38,36,16],msqrt:[21,56],postprocess:42,simpler:19,newmath:52,src:[5,15,2,21,50,3,28,52,44,33,34,22,36,8,9,55,39,40,1],nsubseteq:50,lippman:16,doublebarwedg:50,projlim:50,"4ac":21,actual:[13,0,45,16,29,18,50,52,20,47,1,23,8,11,40,25,56],versionatleast:40,account:13,alik:3,retriev:13,augment:[41,11,42,25],scalabl:[48,55,56],underwai:1,critic:38,halt:53,thin:26,eqchunkfactor:[46,27],control:[5,6,51,10,12,40,44,21,26,23,27,28,33,34,37,38,8,50,46,32,58,7,55,57],tau:50,tar:38,process:[0,3,5,8,13,14,15,43,44,18,19,20,21,26,23,25,27,28,16,31,33,34,36,11,40,42,50,45,46,47,49,1,51,52,54,55,56,57],dfrac:50,preformat:43,high:[24,55,56],tag:[2,31,50,9,15,43,20,21,22,23,25,26,54,16,40,3,33,34,36,11,8,5,45,38,49,52,55,56],tab:38,tan:50,delai:[0,8,46,29,30,7,51,19,44,23,37,20,56,40,27],fontwarns:58,gcd:50,importat:17,getelementsbytagnamen:3,subdirectori:[38,11,25,49],instead:[50,15,38,43,16,47,18,1,52,20,21,26,56,8],class4:41,class2:[5,34,41],smallfrown:50,sim:50,class1:[5,34,41],simplesup:41,frac:50,overridden:[46,25,19,42,49,11,41,27],mspace:[50,21,45,43],"_svg":55,anothermethod:41,frak:50,filtertext:19,redund:[41,23],essenti:[44,50,56,41,16],light:[50,41,37],correspond:[40,46,36,8],element:[31,5,6,13,40,43,44,20,21,22,23,25,26,27,30,34,11,8,41,50,35,46,49,58,7,52,53,55,56,1],reredn:49,newextarrow:50,allow:[2,3,5,7,15,43,44,19,20,21,22,23,24,25,26,27,30,47,37,38,8,41,50,46,48,58,51,1],fallback:[38,46],mjx:[13,26],fastest:55,scriptstyl:50,nsucc:50,comma:[58,3,50,23,8,54],dagger:50,mathjax_tooltip:[46,27],movabl:[39,2],chosen:[55,57],clickabl:50,coth:50,varxi:50,pretransl:[42,25],therefor:50,pixel:[48,46,25,27],multimap:50,crash:23,pure:45,handl:[0,3,50,6,15,29,20,42,23,25,16,40,45,8,43,5,35,48,1,7,53,55,57],auto:26,nokia:43,innermost:22,dai:13,automat:[46,18,1,19,50,21,26,55,56,8,41,42,27],front:[44,43],successor:36,gggtr:50,sourceel:[20,49,25,52],anyth:[20,54,46,27,4],edit:[44,8,2,9],class3:[5,34,41],februari:14,mode:[50,46,43,5,21,36,38,55,56],varomega:50,"2em":50,genfrac:50,subset:[50,57],delaypost:[46,27],chunk:[46,27],nointerest:30,meta:55,"static":41,our:[15,38,43,4,21,39],meth:40,ie6:46,special:[5,45,16,47,50,44,21,34,23,8,53,24,55,56,40,58],out:[0,15,46,38,1,52,20,6,55,56,27],variabl:[35,29,17,41,31,52,50,47,55,25],lesseqqgtr:50,matrix:50,categori:1,suitabl:50,rel:[0,23,43],moveabl:[39,2],merg:[13,40],ref:50,red:[50,21,22],negthinspac:50,nsucceq:50,insid:[43,2],workflow:45,manipul:52,eqslantgtr:50,releas:[21,8,3,38],bleed:43,indent:[26,23],could:[0,15,16,47,17,49,50,45,4,52,20,21,26,8,56,40,25,1],ask:[4,52,21,26,56,8,25],succ:50,timer:31,david:16,gtreqqless:50,length:3,outsid:[5,55],"0em":[58,23],uproot:50,softwar:[44,21,56,24],rbrace:50,blogger:2,rbrack:50,precapprox:50,spadesuit:50,date:[21,15,38,43,8],uplu:50,clubsuit:50,bigsqcup:50,suffic:21,prioriti:29,"long":[46,43,1,51,50,21,27],start:[0,31,50,9,11,14,15,29,20,21,22,23,25,16,40,39,8,30,38,1,53,56],unknown:45,respond:[30,27,46,23,4],system:[46,38,2,21,17,31,4,50,6,24,55,27],messag:[0,15,38,48,21,17,50,31,53,19,44,6,35,42,23,20,40,30],attach:[50,30,7,20,53,23,25],attack:21,termin:[5,34],man:21,iota:50,rsh:50,supset:50,"1em":[58,45,27],gtreqless:50,hdashlin:50,xlongequ:50,ipad:43,preceq:50,gtrdot:50,subsetneq:50,structur:[0,8,29,47,48,52,20,21,35,54,11,40,25,27],charact:[50,45,46,43,16,32,48,58,5,6,34,26,23,55,56,27],htaccess:38,seriou:56,bet:38,reposit:23,exhibit:38,"function":[0,8,1,29,30,48,18,50,3,52,20,47,31,26,53,56,40,41,42],biggl:50,biggm:50,rrightarrow:50,deprec:[44,21,8,23],unkown:40,lightli:55,close:[45,43,21,3,4,44,6,54],need:[0,1,2,3,4,5,6,8,9,11,15,16,18,19,20,21,26,23,24,25,27,29,31,47,34,38,39,40,41,42,43,44,45,46,32,48,49,50,52,53,55,56,57,58],turn:[13,5,15,29,30,44,34,45],biggr:50,gdef:50,issu:[0,45,4,19,23,8,55,56,40],min:50,mid:50,fontdir:25,which:[2,31,5,8,11,15,16,44,19,20,21,22,23,25,26,27,28,29,30,3,33,34,35,36,37,38,39,40,41,43,50,45,46,47,49,58,52,54,55,56,1],hbox:[5,50],mit:50,singl:[0,15,16,29,53,17,50,52,5,21,34,35,24,1,8,58,43],declaremathoper:50,mathjax_preview:[28,5,33,34,23,56],x22d6:50,unless:[21,43,29,55],who:[20,30,4],leftthreetim:50,why:50,underset:50,placement:43,url:[0,15,38,43,31,50,3,51,44,21,26,23,8],gather:50,request:[0,43,29,30,50,31,20,47,8,1],face:[46,4,50,6,26,38,54],inde:[55,54],movablelimit:43,nmid:50,determin:[50,8,2,31,5,32,23,40,25],flux:1,positiontohash:23,occasion:8,fact:[30,15,42],backsimeq:50,mathjax_messag:19,leftarrowtail:50,verbos:[48,47,23],bracevert:50,woth:45,curlyeqsucc:50,highest:55,locat:[0,15,38,6,50,31,52,5,33,34,28,23,8,20,56,40,25,21,36],jax:[31,50,10,15,43,17,20,26,23,25,27,16,32,40,36,11,8,41,42,44,35,46,48,49,58,12,52,54,55,56,57],vartriangleright:50,should:[3,5,8,9,11,15,29,44,18,21,22,23,25,26,16,30,47,34,36,39,40,42,50,45,38,48,58,51,52,55,57,1],imagefont:[6,46],vartriangleleft:50,suppos:[47,15,8,52],"5px":[13,50],triangleright:50,"5pt":21,local:[50,38,29,21,1,3,52,44,6,23,8],hope:[6,15],precsim:50,move:[15,38,12,23,46,27],liminf:50,woff:38,expres:50,increas:[15,43],bigstar:50,leqslant:50,smash:50,enabl:[50,15,46,16,2,5,21,34,9,39,8,27],organ:56,frown:50,stuff:40,she:55,contain:[0,2,3,5,6,13,8,44,17,18,19,20,21,26,23,25,27,28,29,30,33,34,38,11,40,42,50,35,46,47,49,58,52,55,56,1],view:[45,46,17,3,44,21,36,24,38,8],conform:21,frame:19,apolog:15,temporarili:19,troubl:21,issafari:40,asynchron:[0,35,29,30,48,18,1,52,20,47,53,40],statu:[0,38,47],error:[0,15,16,50,3,4,44,21,45,23,11,40,25,42],jmath:50,pattern:[5,34,23],misus:55,gtrsim:50,favor:[15,23],written:[21,9],quickest:21,theta:50,neither:[6,22],equiv:[50,55],omicron:50,nshortmid:50,"2pt":50,kei:[13,0,29,30,18,20,23,40],texttip:50,"2px":50,entir:[40,23,8,52],closebox:6,ker:50,thumb:1,skipstartuptypeset:23,plugin:[2,51,50,23,9,24,55,56],admin:[39,9],nabla:50,equal:[50,1,40,41],gnapprox:50,etc:[48,1,52,50,23,8],eta:50,equat:[5,43,44,21,26,23,24,49,27,28,32,34,38,40,50,46,33,25,12,52,55,56],eth:50,darker:27,limiti:38,lmoustach:50,onchang:52,comment:[50,43,58,44,21,23,8],varnoth:50,arriv:[20,53],solv:8,harpoon:50,arguement:47,sqcup:50,showmathplay:51,quit:[55,52],showfontmenu:51,"55em":50,quotat:58,bbb:50,defint:50,sqsupseteq:50,treat:[50,21,16],searpat:5,incldu:56,smallsetminu:50,both:[0,15,43,16,47,48,50,31,44,21,45,1,23,8,9,55,39,40,41,56],alignat:50,varsupsetneq:50,otf:[38,43],psi:50,x_2:50,togeth:[15,29,1,44,45,40],x_1:50,injlim:50,present:[30,45,51,6,4,55,8,23],cot:50,twoheadrightarrow:50,multi:50,iscallback:29,displaylin:50,align:[50,21,58,45,23],contextu:[14,45,46,57,49,51,44,35,23,37,55,56,25,27,12],studentdisplai:52,defin:[31,50,6,7,15,20,21,26,23,25,27,16,3,47,40,37,11,8,41,42,44,46,58,51,54,12,1],glossari:[48,14],layer:[43,2],almost:50,curvearrowright:50,site:[50,15,38,2,44,21,23,24,39,8],archiv:[21,38],substanti:[55,15,8],revis:38,unneed:27,greater:[50,55,16],formattag:26,curlywedg:50,displaystyl:[50,32,52],parti:[20,21],cross:38,sqrt:[50,21,56],getx:41,extensiondir:42,oint:50,supsetneq:50,android:43,cssid:[50,43],curlyve:50,phi:50,http:[15,38,2,3,51,52,50,21,36,9,55,39,8],d3eoax9i5htok0:21,lleftarrow:50,"8em":[50,26],effect:[18,1,3,37],mrow:[21,56],student:52,canva:56,php:[2,9],executehook:[30,29],off:[50,43,44,53,55,8],center:[50,21,58,23,55],well:[20,45,38,29,47,58,4,52,44,21,34,42,23,53,55,8],exampl:[0,3,4,5,6,7,8,10,12,13,15,16,18,20,21,26,23,25,27,28,29,30,32,33,34,35,36,37,38,11,40,41,43,50,45,46,47,22,58,51,52,53,54,49,55,56,57,1],command:[45,38,29,48,18,1,31,52,50,23,8,40],choos:[50,21,55],undefin:[50,21,29,47],setx:41,subsetneqq:50,sibl:43,usual:[29,16,47,1,50,6,42,23,56,8],curlyeqprec:50,paus:[40,38],less:[50,46,16,5,21,34,38,56,40,27],obtain:[50,15,38,52,44,21,23,56,8,25],mistaken:56,mathclos:50,mathoutput:52,simultan:[1,31],web:[2,31,50,6,14,15,43,20,21,23,24,49,16,3,36,46,8,30,38,48,1,52,53,55,56],current_them:2,priorit:29,textbf:50,cdotp:50,atopwithdelim:50,valid:[47,15],schedul:47,match:[30,46,5,34,12,27],branch:[8,38],webpag:36,piec:43,varpropto:50,punctuat:43,cpan:50,know:[50,47,20,21,30,11,8,25,56],cfrac:50,mathinn:50,redesign:55,tick:[50,21,34,16],recurs:[40,43],mho:50,nofont:6,like:[3,50,29,18,19,20,21,24,27,16,30,47,34,36,46,11,8,43,5,45,38,32,48,58,52,53,54,55,56,1],success:55,messagehook:[20,30,40],arctan:50,necessari:[8,3,21,24,55,40],resiz:55,page:[2,3,5,6,8,9,13,14,15,43,17,19,20,21,26,23,24,25,28,16,30,31,33,34,36,38,39,40,44,45,46,47,48,49,50,51,52,53,55,56,1],didn:50,captur:48,linux:[40,23],"export":49,superclass:41,proper:[30,40],guarante:[0,1,52,18],peter:16,librari:[17,1,35,38],glyph:[50,48],kern:50,rspace:50,assum:52,avoid:[15,43,16,50,22,23,55,56,45],thank:16,overlap:55,checkmark:50,leav:[13,16,52,50,26,57],doublecap:50,supsetneqq:50,preload:[0,21],twoheadleftarrow:50,mpmous:[44,23],daleth:50,upharpoonright:50,journal:48,usag:[50,14],host:[15,8],sphericalangl:50,although:[17,21,38,57,30],offset:[46,25,27],panel:50,varepsilon:50,about:[4,50,6,15,29,20,21,23,25,16,30,32,40,38,11,8,43,44,46,47,52,53,56],ams_html:[50,15,52,44,36,8],rare:1,column:26,mathajx:15,mod_head:38,mapsto:50,constructor:41,fals:[50,54,46,43,30,49,3,51,5,32,26,23,10,40,41,11,27],bigoplu:50,eqalign:50,own:[50,15,38,43,21,17,1,32,4,44,6,53,55,11,8,25,56,54],amsmath:[50,15,1,44,21,26,8],circledr:50,maxbuff:26,bigtriangledown:50,guard:23,vphantom:50,circlearrowleft:50,transfer:[21,38],much:[32,48,20,53,55,8],bigcap:50,arg1:47,"var":[13,29,1,3,52,20,47,41],stai:[55,8],arg2:47,deliveri:[21,43],propto:50,unexpect:23,precnapprox:50,studentansw:52,bodi:[0,15,52,21,11,8,25],gain:55,lgroup:50,bug:[13,15,38,43,4,19,21,23,56,8],count:3,made:[38,1,4,53,56,49,54],bbbk:50,whether:[50,28,46,47,32,57,3,51,52,5,33,34,26,23,8,10,40,49,27],wish:[15,47,58,3,4,50,21,8,55,40],displai:[50,6,13,14,8,43,19,20,21,26,23,24,25,27,28,16,32,34,36,38,40,5,45,46,48,49,51,52,55,56],substack:50,underleftrightarrow:50,mathord:50,gtrapprox:50,below:[2,50,6,7,10,13,40,21,26,23,25,27,28,33,34,37,11,8,5,46,32,22,51,53,49,12,56,57],sideset:50,"_htmlormml":[55,57],problem:[15,38,43,16,47,4,52,50,21,45,55,56,8],x03c0:56,"int":50,imagedir:25,dure:[46,43,29,31,20,42,23,40,49,27],novemb:15,implement:[13,0,15,17,57,50,56,44,47,45,20,55,11,41,42],nolimit:50,inf:50,rightleftharpoon:50,probabl:[20,47,8,16,2],oplu:50,helpurl:51,definecolor:50,immateri:1,percent:[12,46,27],detail:[0,5,6,7,8,9,14,15,29,44,18,20,21,12,23,27,28,16,30,33,34,36,37,38,39,40,43,50,45,46,1,51,52,53,55,56],lesseqgtr:50,other:[0,2,31,5,6,8,15,16,44,18,19,20,21,42,23,24,49,27,29,30,47,34,36,38,40,41,43,50,45,46,48,1,52,53,55,56,57],futur:[0,4,19,20,53,55,40,49],rememb:27,varieti:56,removeaft:6,repeat:[38,2],star:50,liter:[5,50],"class":[41,50,35,43,29,30,17,18,5,34,42,23,49,11,25,56,27,36],thicksim:50,posttransl:[42,25],reflow:[55,25,43],sphinx:2,scientif:48,reliabl:[55,15,3,8],rule:[50,6,10,1,23],mathjax_mathml:3,portion:[56,46,27,52],eot:38,balancebrac:5},objtypes:{"0":"py:method"},titles:["The MathJax.Ajax Object","Using Queues","Using MathJax in popular web platforms","Loading MathJax Dynamically","The MathJax Community","The tex2jax Preprocessor","The FontWarnings extension","The MathEvents extension","Loading and Configuring MathJax","Installing MathJax in WordPress","The MathML input processor","The MathJax.InputJax Class","The NativeMML output processor","The MathJax.HTML Object","MathJax Documentation","Migrating from MathJax v1.0 to v1.1","MathJax AsciiMath Support","The MathJax API","The MathJax.Callback.Queue Class","The MathJax.Message Object","Using Signals","Getting Started","Describing HTML snippets","The Core Configuration Options","What is MathJax?","The MathJax.OutputJax Class","The TeX input processor","The SVG output processor","The jsMath2jax Preprocessor","The MathJax.Callback Class","The MathJax.Callback.Signal Class","The MathJax Startup Sequence","The AsciiMath input processor","The mml2jax Preprocessor","The asciimath2jax Preprocessor","The MathJax variable","Converting to MathJax from jsMath","The MathZoom extension","Installing and Testing MathJax","Using MathJax in Movable Type","The MathJax.Hub Object","The MathJax Object-Oriented Programming Model","The Base Jax Class","What’s New in MathJax v1.1","Common Configurations","MathJax MathML Support","The HTML-CSS output processor","Using Callbacks","Glossary","The MathJax.ElementJax Class","MathJax TeX and LaTeX Support","The MathMenu extension","Modifying Math on the Page","Synchronizing your code with MathJax","Configuration Objects","MathJax Output Formats","The MathJax Processing Model","The MMLorHTML configuration options","CSS Style Objects"],objnames:{"0":"Python method"},filenames:["api/ajax","queues","platforms/index","dynamic","community","options/tex2jax","options/FontWarnings","options/MathEvents","configuration","platforms/wordpress","options/MathML","api/inputjax","options/NativeMML","api/html","index","upgrade","asciimath","api/index","api/queue","api/message","signals","start","HTML-snippets","options/hub","mathjax","api/outputjax","options/TeX","options/SVG","options/jsMath2jax","api/callback","api/signal","startup","options/AsciiMath","options/mml2jax","options/asciimath2jax","api/variable","jsMath","options/MathZoom","installation","platforms/movable-type","api/hub","api/object","api/jax","whats-new","config-files","mathml","options/HTML-CSS","callbacks","glossary","api/elementjax","tex","options/MathMenu","typeset","synchronize","options/index","output","model","options/MMLorHTML","CSS-styles"]}) \ No newline at end of file diff --git a/docs/source/options/AsciiMath.rst b/docs/source/options/AsciiMath.rst index 981815b72..ed766ee1a 100644 --- a/docs/source/options/AsciiMath.rst +++ b/docs/source/options/AsciiMath.rst @@ -6,10 +6,11 @@ The AsciiMath input processor The options below control the operation of the AsciiMath input processor that is run when you include ``"input/AsciiMath"`` in the -`jax` array of your configuration or use a combined configuration file -that includes AsciiMath input. They are listed with their default -values. To set any of these options, include a ``AsciiMath`` section -in your :meth:`MathJax.Hub.Config()` call. For example +`jax` array of your configuration or load a combined configuration +file that includes the AsciiMath input jax. They are listed with +their default values. To set any of these options, include a +``AsciiMath`` section in your :meth:`MathJax.Hub.Config()` call. For +example .. code-block:: javascript diff --git a/docs/source/options/HTML-CSS.rst b/docs/source/options/HTML-CSS.rst index f8cb0fd2e..b52339823 100644 --- a/docs/source/options/HTML-CSS.rst +++ b/docs/source/options/HTML-CSS.rst @@ -6,10 +6,12 @@ The HTML-CSS output processor The options below control the operation of the HTML-CSS output processor that is run when you include ``"output/HTML-CSS"`` in the -`jax` array of your configuration. They are listed with their default -values. To set any of these options, include a ``"HTML-CSS"`` section -in your :meth:`MathJax.Hub.Config()` call. Note that, because of the -dash, you need to enclose the name in quotes. For example +`jax` array of your configuration or load a combined configuration +file that includes the HTML-CSS output jax. They are listed with +their default values. To set any of these options, include a +``"HTML-CSS"`` section in your :meth:`MathJax.Hub.Config()` call. +Note that, because of the dash, you need to enclose the name in +quotes. For example .. code-block:: javascript @@ -25,7 +27,7 @@ would set the ``preferredFont`` option to the :term:`STIX` fonts. The scaling factor (as a percentage) of math with respect to the surrounding text. The `HTML-CSS` output processor tries to match - the en-size of the mathematics with that of the text where it is + the ex-size of the mathematics with that of the text where it is placed, but you may want to adjust the results using this scaling factor. The user can also adjust this value using the contextual menu item associated with the typeset mathematics. @@ -86,6 +88,68 @@ would set the ``preferredFont`` option to the :term:`STIX` fonts. (even if it doesn't contain the needed character), so order these carefully. +.. describe:: mtextFontInherit: false + + This setting controls whether ```` elements will be typeset + using the math fonts or the font of the surrounding text. When + ``false``, the font for ``mathvariant="normal"`` will be used; + when ``true``, the font will be inherited from the surrounding + paragraph. + +.. describe:: EqnChunk: 50 + EqnChunkFactor: 1.5 + EqnChunkDelay: 100 + + These values control how "chunky" the display of mathematical + expressions will be; that is, how often the equations will be + updated as they are processed. + + ``EqnChunk`` is the number of equations that will be typeset before + they appear on screen. Larger values make for less visual flicker + as the equations are drawn, but also mean longer delays before the + reader sees anything. + + ``EqChunkFactor`` is the factor by which the ``EqnChunk`` will + grow after each chunk is displayed. + + ``EqChunkDelay`` is the time (in milliseconds) to delay between + chunks (to allow the browser to respond to other user + interaction). + + Set ``EqnChunk`` to 1, ``EqnChunkFactor`` to 1, and + ``EqnChunkDelay`` to 10 to get the behavior from MathJax v1.1 and + below. + +.. describe:: linebreaks: {} + + This is an object that configures automatic linebreaking in the + HTML-CSS output. In order to be backward compatible with earlier + versions of MathJax, only explicit line breaks are performed by + default, so you must enable line breaks if you want automatic + ones. The object contains the following values: + + .. describe:: automatic: false + + This controls the automatic breaking of expressions: when + ``false``, only ``linebreak="newline"`` is processed; when + ``true``, line breaks are inserted automatically in long + expressions. + + .. describe:: width: "container" + + This controls how wide the lines of mathematics can be. + + Use an explicit width like ``"30em"`` for a fixed width. + Use ``"container"`` to compute the size from the containing + element. + Use ``"nn% container"`` for a portion of the container. + Use ``"nn%"`` for a portion of the window size. + + The container-based widths may be slower, and may not produce + the expected results if the layout width changes due to the + removal of previews or inclusion of mathematics during + typesetting. + .. describe:: styles: {} This is a list of CSS declarations for styling the HTML-CSS @@ -96,18 +160,10 @@ would set the ``preferredFont`` option to the :term:`STIX` fonts. .. describe:: showMathMenu: true - This controls whether the MathJax contextual menu will be - available on the mathematics in the page. If true, then - right-clicking (on the PC) or control-clicking (on the Mac) will - produce a MathJax menu that allows you to get the source of the - mathematics in various formats, change the size of the mathematics - relative to the surrounding text, get information about - MathJax, and configure other MathJax settings. - - Set this to ``false`` to disable the menu. When ``true``, the - ``MathMenu`` configuration block determines the operation of the - menu. See :ref:`the MathMenu options ` for - more details. + This value has been moved to the core configuration block, since + it applies to all output jax, but it will still be honored (for + now) if it is set here. See the :ref:`Core configuration options + ` for more details. .. describe:: tooltip: { ... } @@ -128,7 +184,8 @@ would set the ``preferredFont`` option to the :term:`STIX` fonts. The delay (in milliseconds) before the tooltop is cleared after the mouse moves out of the ``maction`` element. - .. describe:: offsetX: 10 and offsetY: 5 + .. describe:: offsetX: 10 + offsetY: 5 These are the offset from the mouse position (in pixels) where the tooltip will be placed. diff --git a/docs/source/options/MMLorHTML.rst b/docs/source/options/MMLorHTML.rst index 023de9461..77d808a20 100644 --- a/docs/source/options/MMLorHTML.rst +++ b/docs/source/options/MMLorHTML.rst @@ -6,9 +6,11 @@ The MMLorHTML configuration options The options below control the operation of the MMLorHTML configuration file that is run when you include ``"MMLorHTML.js"`` in the `config` -array of your configuration. They are listed with their default -values. To set any of these options, include a ``MMLorHTML`` section -in your :meth:`MathJax.Hub.Config()` call. For example +array of your configuration, or when you use one of the combined +configuration files that ends with ``_HTMLorMML``. They are listed +with their default values. To set any of these options, include a +``MMLorHTML`` section in your :meth:`MathJax.Hub.Config()` call. For +example .. code-block:: javascript @@ -28,15 +30,29 @@ Note that if you use the ``MMLorHTML.js`` configuration file, you should **not** specify an output processor in the `jax` array of your configuration; `MMLorHTML` will fill that in for you. -.. describe:: prefer: { MSIE: "MML", Firefox: "MML", Opera: "HTML", other: "HTML" } +.. describe:: prefer: { + MSIE: "MML", + Firefox: "HTML", + Safari: "HTML", + Chrome: "HTML", + Opera: "HTML", + other: "HTML" + } This lets you set the preferred renderer on a browser-by-browser basis. You set the browser to either ``"MML"`` or ``"HTML"`` depending on whether you want to use the `NativeMML` or `HTML-CSS` - output processor. Note that although Opera does process some MathML - natively, its support is not sufficient to handle the more - complicated output generated by MathJax, so its setting is - ``"HTML"`` by default. + output processor. Note that although Opera and Safari do process some MathML + natively, their support is not sufficient to handle the more + complicated output generated by MathJax, so their settings are + ``"HTML"`` by default. Although Firefox does support a large + subset of MathJax, it does not implement all the features needed by + MathJax, and so it is also set to ``"HTML"`` by default (this is + new in v2.0). + + Note that users can still use the MathJax contextual menu to select + a different renderer after the default one has been chosen by + ``MMLorHTML.js``. diff --git a/docs/source/options/MathEvents.rst b/docs/source/options/MathEvents.rst new file mode 100644 index 000000000..512b28f85 --- /dev/null +++ b/docs/source/options/MathEvents.rst @@ -0,0 +1,37 @@ +.. _configure-MathEvents: + +************************ +The MathEvents extension +************************ + +The options below control the operation of the MathEvents component that +allows handles mouse and menu events attached to mathematics that is +typeset by MathJax. They are listed with their +default values. To set any of these options, include a ``MathEvents`` +section in your :meth:`MathJax.Hub.Config()` call. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + MathEvents: { + hover: 400 + } + }); + +would set the required delay for hovering over a math element to +400 milliseconds. + +.. describe:: hover: 500 + + This value is the time (in milliseconds) that a user must hold the + mouse still over a math element before it is considered to be + hovering over the math. + +.. describe:: styles: {} + + This is a list of CSS declarations for styling the zoomed + mathematics. See the definitions in ``extensions/MathEvents.js`` + for details of what are defined by default. See :ref:`CSS Style + Objects ` for details on how to specify CSS + style in a JavaScript object. + diff --git a/docs/source/options/MathML.rst b/docs/source/options/MathML.rst index 7624bdcbb..9038b743f 100644 --- a/docs/source/options/MathML.rst +++ b/docs/source/options/MathML.rst @@ -6,7 +6,8 @@ The MathML input processor The options below control the operation of the MathML input processor that is run when you include ``"input/MathML"`` in the `jax` array of -your configuration. They are listed with their default values. To +your configuration or load a combined configuration file that includes +the MathML input jax. They are listed with their default values. To set any of these options, include a ``MathML`` section in your :meth:`MathJax.Hub.Config()` call. For example diff --git a/docs/source/options/MathMenu.rst b/docs/source/options/MathMenu.rst index 03ea8e31b..6b8529735 100644 --- a/docs/source/options/MathMenu.rst +++ b/docs/source/options/MathMenu.rst @@ -34,33 +34,41 @@ would set the ``delay`` option to 600 milliseconds. .. describe:: showRenderer: true - This controls whether the "Math Renderer" item will be displayed in - the "Settings" submenu of the mathematics contextual menu. It - allows the user to change between the `HTML-CSS` and `NativeMML` - output processors for the mathematics on the page. Set to - ``false`` to prevent this menu item from showing. - -.. describe:: showContext: false - - This controls whether the "Contextual Menu" item will be displayed - in the "Settings" submenu of the mathematics contextual menu. - It allows the user to decide whether the MathJax menu or the - browser's default contextual menu will be shown when the context - menu click occurs over mathematics typeset by MathJax. (The main - reason to allow pass-through to the browser's menu is to gain - access to the MathPlayer contextual menu when the NativeMML output - processor is used in Internet Explorer with the `MathPlayer plugin - `_.) Set to - ``false`` to prevent this menu item from showing. + This controls whether the "Math Renderer" item will be displayed + in the "Math Settings" submenu of the MathJax contextual menu. + It allows the user to change between the `HTML-CSS`, `NativeMML`, + and `SVG` output processors for the mathematics on the page. Set + to ``false`` to prevent this menu item from showing. .. describe:: showFontMenu: false This controls whether the "Font Preference" item will be displayed - in the "Settings" submenu of the mathematics contextual menu. + in the "Math Settings" submenu of the MathJax contextual menu. This submenu lets the user select what font to use in the mathematics produced by the `HTML-CSS` output processor. Note that changing the selection in the font menu will cause the page to reload. Set to ``false`` to prevent this menu item from showing. + +.. describe:: showMathPlayer: true + + This controls whether the "MathPlayer" item will be displayed in + the "Math Settings" submenu of the MathJax contextual menu. This + submenu lets the user select what events should be passed on to + the `MathPlayer plugin + `_, when it is + present. Mouse events can be passed on (so that clicks will be + processed by MathPlayer rather than MathJax), and emnu events can + be passed on (to allow the user access to the MathPlayer menu). + Set to ``false`` to prevent this menu item from showing. + +.. describe:: showContext: false + + This controls whether the "Contextual Menu" item will be displayed + in the "Math Settings" submenu of the MathJax contextual menu. + It allows the user to decide whether the MathJax menu or the + browser's default contextual menu will be shown when the context + menu click occurs over mathematics typeset by MathJax. Set to + ``false`` to prevent this menu item from showing. .. describe:: windowSettings: { ... } diff --git a/docs/source/options/MathZoom.rst b/docs/source/options/MathZoom.rst index 3b7ddc7bf..709ab548b 100644 --- a/docs/source/options/MathZoom.rst +++ b/docs/source/options/MathZoom.rst @@ -14,23 +14,28 @@ section in your :meth:`MathJax.Hub.Config()` call. For example MathJax.Hub.Config({ MathZoom: { - delay: 600 + styles: { + "#MathJax_Zoom": { + "background-color": "#0000F0" + } + } } }); -would set the ``delay`` option to 600 milliseconds. +would set the background color of the Zoom box to a very light blue. Mathematics is zoomed when the user "triggers" the zoom by an action, either clicking on the mathematics, double-clicking on it, or holding the mouse still over it (i.e., "hovering"). Which trigger is used is set by the user via the math contextual menu (or by the author using -the ``menuSettings`` configuration section). +the ``menuSettings`` configuration section of the `core configuration +options `). -.. describe:: delay: 400 +.. describe:: delay: 500 - This the time (in milliseconds) that the mouse must be still over a - typeset mathematical formula before the zoomed version is displayed - (when the zoom trigger is set to `Hover`). + This value is now stored as the ``hover`` parameter in the + :ref:`MathEvents ` configuration options, and + will have no effect if given here. .. describe:: styles: {} diff --git a/docs/source/options/NativeMML.rst b/docs/source/options/NativeMML.rst index a25aacb3f..c2e663b7a 100644 --- a/docs/source/options/NativeMML.rst +++ b/docs/source/options/NativeMML.rst @@ -6,9 +6,11 @@ The NativeMML output processor The options below control the operation of the NativeMML output processor that is run when you include ``"output/NativeMML"`` in the -`jax` array of your configuration. They are listed with their default -values. To set any of these options, include a ``NativeMML`` section -in your :meth:`MathJax.Hub.Config()` call. For example +`jax` array of your configuration or load a combined configuration +file taht includes the NativeMML output jax. They are listed with +their default values. To set any of these options, include a +``NativeMML`` section in your :meth:`MathJax.Hub.Config()` call. For +example .. code-block:: javascript @@ -23,35 +25,26 @@ would set the ``scale`` option to 105 percent. .. describe:: scale: 100 The scaling factor (as a percentage) of math with respect to the - surrounding text. Since the `NativeMML` output relies on the - browser's native MathML support, MathJax does not control the - font size used in the mathematics. You may need to set this value - to compensate for the size selected by the browser. The user can - also adjust this value using the contextual menu item associated - with the typeset mathematics. + surrounding text. The `NativeMML` output processor tries to match + the ex-size of the mathematics with that of the text where it is + placed, but you may want to adjust the results using this scaling + factor. The user can also adjust this value using the contextual + menu item associated with the typeset mathematics. + +.. describe:: minScaleAdjust: 50 + + This gives a minimum scale (as a percent) for the scaling used by + MathJax to match the equation to the surrounding text. This will + prevent MathJax from making the mathematics too small. .. describe:: showMathMath: true + showMathMenuMSIE: true - This controls whether the MathJax contextual menu will be - available on the mathematics in the page. If true, then - right-clicking (on the PC) or control-clicking (on the Mac) will - produce a MathJax menu that allows you to get the source of the - mathematics in various formats, change the size of the mathematics - relative to the surrounding text, get information about - MathJax, and configure other MathJax settings. - - Set this to ``false`` to disable the menu. When ``true``, the - ``MathMenu`` configuration block determines the operation of the - menu. See :ref:`the MathMenu options ` for - more details. + These values have been moved to the core configuration block, since + it applies to all output jax, but they will still be honored (for + now) if it is set here. See the :ref:`Core configuration options + ` for more details. -.. describe:: showMathMenuMSIE: true - - There is a separate menu setting for MSIE since the code to handle - that is a bit delicate; if it turns out to have unexpected - consequences, you can turn it off without turning off the - menu support in other browsers. - .. describe:: styles: {} This is a list of CSS declarations for styling the NativeMML diff --git a/docs/source/options/SVG.rst b/docs/source/options/SVG.rst new file mode 100644 index 000000000..bfbe9e5db --- /dev/null +++ b/docs/source/options/SVG.rst @@ -0,0 +1,162 @@ +.. _configure-SVG: + +************************ +The SVG output processor +************************ + +The options below control the operation of the SVG output +processor that is run when you include ``"output/SVG"`` in the +`jax` array of your configuration or load a combined configuration +file that includes the SVG output jax. They are listed with their default +values. To set any of these options, include an ``SVG`` section +in your :meth:`MathJax.Hub.Config()` call. Note that, because of the +dash, you need to enclose the name in quotes. For example + +.. code-block:: javascript + + MathJax.Hub.Config({ + "SVG": { + scale: 120 + } + }); + +would set the ``scale`` option to 120%. + +.. describe:: scale: 100 + + The scaling factor (as a percentage) of math with respect to the + surrounding text. The `SVG` output processor tries to match + the ex-size of the mathematics with that of the text where it is + placed, but you may want to adjust the results using this scaling + factor. The user can also adjust this value using the contextual + menu item associated with the typeset mathematics. + +.. describe:: minScaleAdjust: 50 + + This gives a minimum scale (as a percent) for the scaling used by + MathJax to match the equation to the surrounding text. This will + prevent MathJax from making the mathematics too small. + +.. describe:: font: "TeX" + + This is the font to use for rendering the mathematics. Note that + currently only the `TeX` font is available. + +.. describe:: blacker: 10 + + This is the stroke width to use for all character paths (1em = + 1000 units). This is a cheap way of getting slightly lighter or + darker characters, but remember that not all displays will act the + same, so a value that is good for you may not be good for everyone. + +.. describe:: undefinedFamily: "STIXGeneral, 'Arial Unicode MS', serif" + + This is the font-family CSS value used for characters that are not + in the selected font (e.g., this is where to look for characters + not included in the MathJax TeX fonts). IE will stop looking + after the first font that exists on the system (even if it doesn't + contain the needed character), so order these carefully. + +.. describe:: mtextFontInherit: false + + This setting controls whether ```` elements will be typeset + using the math fonts or the font of the surrounding text. When + ``false``, the font for ``mathvariant="normal"`` will be used; + when ``true``, the font will be inherited from the surrounding + paragraph. + +.. describe:: addMMLclasses: false + + This controls whether the MathML structure is retained and CSS + classes are added to mark the original MathML elements (as in the + output from the `HTML-CSS` output jax). By default, the SVG + output jax removes unneeded nesting in order to produce a more + efficient markup, but if you want to use CSS to style the elements + as if they were MathML, you might need to set this to true. + +.. describe:: EqnChunk: 50 + EqnChunkFactor: 1.5 + EqnChunkDelay: 100 + + These values control how "chunky" the display of mathematical + expressions will be; that is, how often the equations will be + updated as they are processed. + + ``EqnChunk`` is the number of equations that will be typeset before + they appear on screen. Larger values make for less visual flicker + as the equations are drawn, but also mean longer delays before the + reader sees anything. + + ``EqChunkFactor`` is the factor by which the ``EqnChunk`` will + grow after each chunk is displayed. + + ``EqChunkDelay`` is the time (in milliseconds) to delay between + chunks (to allow the browser to respond to other user + interaction). + + Set ``EqnChunk`` to 1, ``EqnChunkFactor`` to 1, and + ``EqnChunkDelay`` to 10 to get the behavior from MathJax v1.1 and + below. + +.. describe:: linebreaks: {} + + This is an object that configures automatic linebreaking in the + SVG output. In order to be backward compatible with earlier + versions of MathJax, only explicit line breaks are performed by + default, so you must enable line breaks if you want automatic + ones. The object contains the following values: + + .. describe:: automatic: false + + This controls the automatic breaking of expressions: when + ``false``, only ``linebreak="newline"`` is processed; when + ``true``, line breaks are inserted automatically in long + expressions. + + .. describe:: width: "container" + + This controls how wide the lines of mathematics can be. + + Use an explicit width like ``"30em"`` for a fixed width. + Use ``"container"`` to compute the size from the containing + element. + Use ``"nn% container"`` for a portion of the container. + Use ``"nn%"`` for a portion of the window size. + + The container-based widths may be slower, and may not produce + the expected results if the layout width changes due to the + removal of previews or inclusion of mathematics during + typesetting. + +.. describe:: styles: {} + + This is a list of CSS declarations for styling the SVG output. + See the definitions in ``jax/output/SVG/config.js`` for some + examples of what are defined by default. See :ref:`CSS Style + Objects ` for details on how to specify CSS + style in a JavaScript object. + +.. describe:: tooltip: { ... } + + This sets the configuration options for ```` elements + with ``actiontype="tooltip"``. (See also the ``#MathJax_Tooltip`` + style setting in ``jax/output/SVG/config.js``, which can be + overridden using the ``styles`` option above.) + + The ``tooltip`` section can contain the following options: + + .. describe:: delayPost: 600 + + The delay (in milliseconds) before the tooltip is posted after + the mouse is moved over the ``maction`` element. + + .. describe:: delayClear: 600 + + The delay (in milliseconds) before the tooltop is cleared + after the mouse moves out of the ``maction`` element. + + .. describe:: offsetX: 10 + offsetY: 5 + + These are the offset from the mouse position (in pixels) + where the tooltip will be placed. diff --git a/docs/source/options/TeX.rst b/docs/source/options/TeX.rst index 19471fff6..949556b5d 100644 --- a/docs/source/options/TeX.rst +++ b/docs/source/options/TeX.rst @@ -6,7 +6,8 @@ The TeX input processor The options below control the operation of the TeX input processor that is run when you include ``"input/TeX"`` in the `jax` array of -your configuration. They are listed with their default values. To +your configuration or load a combined configuration file that includes +the TeX input jax. They are listed with their default values. To set any of these options, include a ``TeX`` section in your :meth:`MathJax.Hub.Config()` call. For example @@ -41,41 +42,90 @@ to be defined within the TeX input processor. either side of the equation, but if you are displaying mathematics in a small area or a thin column of text, you might need to change the value to leave sufficient margin for tags. + +.. describe:: equationNumbers: {} + + This object controls the automatic equation numbering and the + equation referencing. It contains the following values: + + .. describe:: autoNumber: "none" + + This controls whether equations are numbered and how. By + default it is set to ``"none"`` to be compatible with earlier + versions of MathJax where auto-numbering was not performed (so + pages will not change their appearance). You can change + this to ``"AMS"`` for equations numbered as the `AMSmath` + package would do, or ``"all"`` to get an equation number for + every displayed equation. + + .. describe:: formatNumber: function (n) {return n} + + A function that tells MathJax what tag to use for equation + number ``n``. This could be used to have the equations labeled + by a sequence of symbols rather than numbers, or to use section + and subsection numbers instead. + + .. describe:: formatTag: function (n) {return '('+n+')'} + + A function that tells MathJax how to format an equation number + for displaying as a tag for an equation. This is what appears + in the margin of a tagged or numbered equation. + + .. describe:: formatID: function {return 'mjx-eqn-'+String(n).replace(/[:'"<>&]/g,"")} + + A function that rells MathJax what ID to use as an anchor for + the equation (so that it can be used in URL references). + + .. describe:: formatURL: function (id) {return '#'+escape(id)} + + A function that takes an equation ID and returns the URL to + link to it. + + .. describe:: useLabelIds: true + + This controls whether element ID's use the ``\label`` name or + the equation number. When ``true``, use the label, when + ``false``, use the equation number. + + See the `MathJax examples page + `_ for + some examples of equation numbering. .. describe:: Macros: {} - This lists macros to define before the TeX input processor begins. - These are name:value pairs where the `name` gives the name of the TeX - macro to be defined, and `value` gives the replacement text for the - macro. The `value` can be an array of the form `[value,n]`, where - `value` is the replacement text and `n` is the number of parameters - for the macro. Note that since the `value` is a javascript string, - backslashes in the replacement text must be doubled to prevent them - from acting as javascript escape characters. + This lists macros to define before the TeX input processor begins. + These are `name:value` pairs where the `name` gives the name of + the TeX macro to be defined, and `value` gives the replacement + text for the macro. The `value` can be an array of the form + `[value,n]`, where `value` is the replacement text and `n` is the + number of parameters for the macro. Note that since the `value` + is a javascript string, backslashes in the replacement text must + be doubled to prevent them from acting as javascript escape + characters. - For example, + For example, - .. code-block:: javascript + .. code-block:: javascript + + Macros: { + RR: '{\\bf R}', + bold: ['{\\bf #1}', 1] + } - Macros: { - RR: '{\\bf R}', - bold: ['{\\bf #1}', 1] - } - - would ask the TeX processor to define two new macros: ``\RR``, - which produces a bold-face "R", and ``\bold{...}``, which takes one - parameter and sets it in the bold-face font. + would ask the TeX processor to define two new macros: ``\RR``, + which produces a bold-face "R", and ``\bold{...}``, which takes one + parameter and sets it in the bold-face font. .. describe:: MAXMACROS: 10000 - Because a definition of the form ``\def\x{\x} \x`` would cause MathJax - to loop infinitely, the `MAXMACROS` constant will limit the number of - macro substitutions allowed in any expression processed by MathJax. + Because a definition of the form ``\def\x{\x} \x`` would cause MathJax + to loop infinitely, the `MAXMACROS` constant will limit the number of + macro substitutions allowed in any expression processed by MathJax. .. describe:: MAXBUFFER: 5*1024 - Because a definition of the form ``\def\x{\x aaa} \x`` would loop - infinitely, and at the same time stack up lots of a's in MathJax's - equation buffer, the `MAXBUFFER` constant is used to limit the size of - the string being processed by MathJax. It is set to 5KB, which should - be sufficient for any reasonable equation. + Because a definition of the form ``\def\x{\x aaa} \x`` would loop + infinitely, and at the same time stack up lots of a's in MathJax's + equation buffer, the `MAXBUFFER` constant is used to limit the size of + the string being processed by MathJax. It is set to 5KB, which should + be sufficient for any reasonable equation. diff --git a/docs/source/options/asciimath2jax.rst b/docs/source/options/asciimath2jax.rst index cb899efa7..f408a1846 100644 --- a/docs/source/options/asciimath2jax.rst +++ b/docs/source/options/asciimath2jax.rst @@ -86,11 +86,11 @@ preprocessor to include dollar signs as well as back-ticks. special characters. The pattern is inserted into one that requires your pattern to match a complete word, so setting ``ignoreClass: "class2"`` would cause it to match an element with - ``class="class1 class2 class3"``. Note that you can assign - several classes by separating them by the vertical line character - (``|``). For instance, with ``ignoreClass: "class1|class2"`` - any element assigned a class of either ``class1`` or ``class2`` - will be skipped. + ``class="class1 class2 class3"`` but not ``class="myclass2"``. + Note that you can assign several classes by separating them by the + vertical line character (``|``). For instance, with + ``ignoreClass: "class1|class2"`` any element assigned a class of + either ``class1`` or ``class2`` will be skipped. .. describe:: processClass: "asciimath2jax_process" @@ -103,8 +103,8 @@ preprocessor to include dollar signs as well as back-ticks. `regexp` special characters. The pattern is inserted into one that requires your pattern to match a complete word, so setting ``processClass: "class2"`` would cause it to match an element with - ``class="class1 class2 class3"``. Note that you can assign - several classes by separating them by the vertical line character - (``|``). For instance, with ``processClass: "class1|class2"`` any - element assigned a class of either ``class1`` or ``class2`` will - have its contents processed. + ``class="class1 class2 class3"`` but not ``class="myclass2"``. + Note that you can assign several classes by separating them by the + vertical line character (``|``). For instance, with + ``processClass: "class1|class2"`` any element assigned a class of + either ``class1`` or ``class2`` will have its contents processed. diff --git a/docs/source/options/hub.rst b/docs/source/options/hub.rst index 1c86cac71..5b4e8d4c4 100644 --- a/docs/source/options/hub.rst +++ b/docs/source/options/hub.rst @@ -19,10 +19,7 @@ behavior of MathJax. They are given with their default values. A comma-separated list of extensions to load at startup. The default directory is ``MathJax/extensions``. The ``tex2jax`` and - ``mml2jax`` preprocessors can be listed here, as well as a number - of TeX-specific extensions (see the :ref:`TeX and LaTeX input - ` section of the :ref:`Getting Started - ` document for more details). There is also a + ``mml2jax`` preprocessors can be listed here, as well as a ``FontWarnings`` extension that you can use to inform your user that mathematics fonts are available that they can download to improve their experience of your site. @@ -33,7 +30,9 @@ behavior of MathJax. They are given with their default values. starts up, e.g., to define local macros, etc., and there is a sample config file named ``config/local/local.js``. The default directory is the `MathJax/config` directory. The ``MMLorHTML.js`` - configuration is the only other predefined configuration file. + configuration is one such configuration file, and there are a + number of other pre-defined configurations (see :ref:`Using a + configuration file ` for more details). .. describe:: styleSheets: [] @@ -43,8 +42,9 @@ behavior of MathJax. They are given with their default values. .. describe:: styles: {} - CSS `selector: rules;` styles to be defined dynamically at startup - time. + CSS styles to be defined dynamically at startup time. These are + in the form `selector:rules` (see :ref:`CSS Style Objects + ` for complete details). .. describe:: preJax: null and postJax: null @@ -149,13 +149,51 @@ behavior of MathJax. They are given with their default values. .. describe:: elements: [] This is a list of DOM element ID's that are the ones to process for - mathematics when any of the Hub typesetting calls (Typeset, Process, - Update, etc.) are called with no element specified, and during + mathematics when any of the Hub typesetting calls (``Typeset()``, ``Process()``, + ``Update()``, etc.) are called with no element specified, and during MathJax's initial typesetting run when it starts up. This lets you restrict the processing to particular containers rather than scanning the entire document for mathematics. If none are supplied, the complete document is processed. +.. describe:: positionToHash: true + + Since typesetting usually changes the vertical dimensions of the + page, if the URL contains an anchor position, then after the page + is typeset, you may no longer be positioned at the correct + position on the page. MathJax can reposition to that location + after it completes its initial typesetting of the page. This + value controls whether MathJax will reposition the browser to the + ``#hash`` location from the page URL after typesetting for the page. + + +.. describe:: showMathMenu: true + showMathMenuMSIE: true + + These control whether to attach the MathJax contextual menu to the + expressions typeset by MathJax. Since the code for handling + MathPlayer in Internet Explorer is somewhat delicate, it is + controlled separately via ``showMathMenuMSIE``, but the latter is + now deprecated in favor of the MathJax contextual menu settings + for MathPlayer (see below). + + If ``showMathMenu`` is ``true``, then right-clicking (on Windows + or Linux) or control-clicking (on Mac OS X) will produce a MathJax + menu that allows you to get the source of the mathematics in + various formats, change the size of the mathematics relative to + the surrounding text, get information about MathJax, and configure + other MathJax settings. + + Set this to ``false`` to disable the menu. When ``true``, the + ``MathMenu`` configuration block determines the operation of the + menu. See :ref:`the MathMenu options ` for + more details. + + These values used to be listed in the separate output jax, but + have been moved to this more central location since they are + shared by all output jax. MathJax will still honor their values + from their original positions, if they are set there. + .. describe:: menuSettings: { ... } This block contains settings for the mathematics contextual menu @@ -195,9 +233,19 @@ behavior of MathJax. They are given with their default values. to ``"Browser"``, you will get the MathPlayer contextual menu rather than the MathJax menu. - There are also settings for ``format``, ``renderer``, and ``font``, - but these are maintained by MathJax and should not be set by the - page author. + .. describe:: texHints: true + + This controls whether the "Show Source" menu item includes + special class names that help MathJax to typeset the + mathematics that was produced by the TeX input jax. If these + are included, then you can take the output from "Show Source" + and put it into a page that uses MathJax's MathML input jax + and expect to get the same results as the original TeX. + (Without this, there may be some spacing differences.) + + There are also settings for ``format``, ``renderer``, ``font``, + ``mpContext``, and ``mpMouse``, but these are maintained by + MathJax and should not be set by the page author. .. describe:: errorSettings: { ... } diff --git a/docs/source/options/index.rst b/docs/source/options/index.rst index f73fca1ce..3a7d42c76 100644 --- a/docs/source/options/index.rst +++ b/docs/source/options/index.rst @@ -13,16 +13,16 @@ will see that ``config/default.js`` is itself one big call to ``config/default.js`` can be included in-line to configure MathJax. The structure that you pass to :meth:`MathJax.Hub.Config()` is a -JavaScript object that includes name-value pairs giving the names of +JavaScript object that includes `name:value` pairs giving the names of parameters and their values, with pairs separated by commas. Be careful not to include a comma after the last value, however, as some browsers (namely Internet Explorer) will fail to process the configuration if you do. The MathJax components, like the TeX input processor, have their own -sections in the configuration object, labeled by the component name, +sections in the configuration object labeled by the component name, and using an object as its value. That object is itself -a configuration object made up of name-value pairs that give the +a configuration object made up of `name:value` pairs that give the configuration options for the component. For example, @@ -81,6 +81,7 @@ are categorized by the component they affect. The AsciiMath input processor options The HTML-CSS output processor options The NativeMML output processor options + The SVG output processor options The MMLorHTML configuration options .. toctree:: @@ -88,6 +89,7 @@ are categorized by the component they affect. The MathMenu options The MathZoom options + The MathEvents options The FontWarnings options diff --git a/docs/source/options/tex2jax.rst b/docs/source/options/tex2jax.rst index 246ae3635..4354f2e9b 100644 --- a/docs/source/options/tex2jax.rst +++ b/docs/source/options/tex2jax.rst @@ -56,6 +56,21 @@ preprocessor. the browser before MathJax has the chance to run. You can only include text, not tags, as your math delimiters. +.. describe:: balanceBraces: true, + + This value determines whether `tex2jax` requires braces to be + balanced within math delimiters (which allows for nested dollar + signs). Set to ``false`` to get pre-v2.0 compatibility. When + ``true``, + + .. code-block:: latex + + $y = x^2 \hbox{ when $x > 2$}$. + + will be properly handled as a single expression. When ``false``, + it would be interpreted as two searpate expressions, each with + improperly balanced braces. + .. describe:: processEscapes: false When set to ``true``, you may use ``\$`` to represent a literal @@ -116,11 +131,11 @@ preprocessor. special characters. The pattern is inserted into one that requires your pattern to match a complete word, so setting ``ignoreClass: "class2"`` would cause it to match an element with - ``class="class1 class2 class3"``. Note that you can assign - several classes by separating them by the vertical line character - (``|``). For instance, with ``ignoreClass: "class1|class2"`` - any element assigned a class of either ``class1`` or ``class2`` - will be skipped. + ``class="class1 class2 class3"`` but not ``class="myclass2"``. + Note that you can assign several classes by separating them by the + vertical line character (``|``). For instance, with + ``ignoreClass: "class1|class2"`` any element assigned a class of + either ``class1`` or ``class2`` will be skipped. .. describe:: processClass: "tex2jax_process" @@ -133,8 +148,8 @@ preprocessor. `regexp` special characters. The pattern is inserted into one that requires your pattern to match a complete word, so setting ``processClass: "class2"`` would cause it to match an element with - ``class="class1 class2 class3"``. Note that you can assign - several classes by separating them by the vertical line character - (``|``). For instance, with ``processClass: "class1|class2"`` any - element assigned a class of either ``class1`` or ``class2`` will - have its contents processed. + ``class="class1 class2 class3"`` but not ``class="myclass2"``. + Note that you can assign several classes by separating them by the + vertical line character (``|``). For instance, with + ``processClass: "class1|class2"`` any element assigned a class of + either ``class1`` or ``class2`` will have its contents processed. diff --git a/docs/source/output.rst b/docs/source/output.rst index 26d1e767f..5acf5fcae 100644 --- a/docs/source/output.rst +++ b/docs/source/output.rst @@ -32,7 +32,7 @@ the `jax` array of your MathJax configuration. For example would specify TeX input and HTML-with-CSS output for the mathematics in your document. -The HTML-CSS output processor produces high-quality output in all +The **HTML-CSS output processor** produces high-quality output in all major browsers, with results that are consistent across browsers and operating systems. This is MathJax's primary output mode. Its major advantage is its quality and consistency; its drawback is that it is @@ -46,7 +46,7 @@ fonts so that users don't have to have math fonts installed on their computers; but this does introduce some printing issues in some browsers. -The SVG output processor is new in MathJax version 2.0, and it uses +The **SVG output processor** is new in MathJax version 2.0, and it uses `Scalable Vector Graphics` to render the mathematics on the page. SVG is supported in all the major browsers and most mobile devices; note, however, that Internet Explorer prior to IE9 does not support SVG, and @@ -63,7 +63,7 @@ once they are typeset, and don't rescale if the window size changes variable-width tables, that means equation numbers may not stay at the edge of the window if it is resized. -The NativeMML output processor uses the browser's internal MathML +The **NativeMML output processor** uses the browser's internal MathML support (if any) to render the mathematics. Currently, Firefox has native support for MathML, and IE has the `MathPlayer plugin `_ for rendering @@ -179,3 +179,32 @@ possible. That can be accomplished by adding at the top of the ```` section of your HTML documents. Note that this line must come at the beginning of the ````, before any stylesheets, scripts, or other content are loaded. + +.. _html-css-extensions: + +HTML-CSS Extensions +=================== + +The HTML-CSS output jax uses elements with width set to 100% when it +typesets displayed equations. If there are floating elements on the +left or right, this can mean that displayed mathematics isn't properly +centered, and can cause equation numbers to overlap the floating +content. To avoid this, you can specify the `handle-floats` extension +in the `extensions` array of your `HTML-CSS` configuration block. + +.. code-block:: javascript + + "HTML-CSS": { + extensions: ["handle-floats.js"] + } + +This will use CSS that puts the displayed equations into elements that +work like tabel cells, and won't overlap the floaring content. +Because this is somewhat of a misuse of CSS, it is not used by +default, but it has proved successful in most situations, so you may +consider using it in pages that include material that floats to the +left or right of text containing displayed mathematics, especially +when equation numbers or tags are used. + +See the :ref:`HTML-CSS configuration options ` for +other options of the HTML-CSS output jax. From 90f9948e19229aae5e050b0dcae40bbd104078dc Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Wed, 22 Feb 2012 10:53:18 -0500 Subject: [PATCH 07/12] Add more to TeX documentation, and include new examples --- docs/html/_sources/tex.txt | 58 ++++++++++++++- docs/html/index.html | 2 +- docs/html/searchindex.js | 2 +- docs/html/tex.html | 47 +++++++++++- docs/source/tex.rst | 58 ++++++++++++++- test/examples.html | 11 ++- test/sample-all-at-once.html | 136 +++++++++++++++++++++++++++++++++++ test/sample-autoload.html | 48 +++++++++++++ test/sample-macros.html | 64 +++++++++++++++++ 9 files changed, 419 insertions(+), 7 deletions(-) create mode 100644 test/sample-all-at-once.html create mode 100644 test/sample-autoload.html create mode 100644 test/sample-macros.html diff --git a/docs/html/_sources/tex.txt b/docs/html/_sources/tex.txt index 7452360b0..3d8fb903d 100644 --- a/docs/html/_sources/tex.txt +++ b/docs/html/_sources/tex.txt @@ -322,6 +322,33 @@ load extensions into pages that didn't load them in their configurations (and prevents you from having to load all the extensions into all pages even if they aren't used). +It is also possible to create a macro that will autoload an extension +when it is first used (under the assumption that the extension will +redefine it to perform its true function). For example + +.. code-block:: html + + + +would declare the ``\cancel``, ``\bcancel``, ``\xcancel``, and +``\cancelto`` macros to load the `cancel` extension (where they are +actually defined). Whichever is used first will cause the extension +to be loaded, redefining all four to their proper values. Note that +this may be better than loading the extension explicitly, since it +avoids loading the extra file on pages where these macros are *not* +used. The `sample autoloading macros +`_ +example page shows this in action. + The main extensions are described below. @@ -383,6 +410,9 @@ want to use the other macros that it defines. The `AMSsymbols` extension is not loaded automatically, so you must include it explicitly if you want to use the macros it defines. +Both extensions are included in all the combined configuration files +that load the TeX input processor. + Autobold -------- @@ -742,7 +772,20 @@ the paragraph, use } } -You may also wish to set the font family, as the default is "serif". +You may also wish to set the font family or other CSS values here. + +If you are using a combined configuration file that loads the TeX +input processor, it will also load the `noErrors` extension +automatically. If you want to disable the `noErrors` extension so +that you receive the normal TeX error messages, use the following +configuration: + +.. code-block:: javascript + + TeX: { noErrors: { disabled: true } } + +Any math that includes errors will be replaced by an error message +indicating what went wrong. noUndefined @@ -777,6 +820,19 @@ default values set ``mathcolor`` to ``"red"``, but do not set any other attributes. This example sets the background to a light pink, and reduces the font size slightly. +If you are using a combined configuration file that loads the TeX +input processor, it will also load the `noUndefined` extension +automatically. If you want to disable the `noUndefined` extension so +that you receive the normal TeX error messages for undefined macros, +use the following configuration: + +.. code-block:: javascript + + TeX: { noUndefined: { disabled: true } } + +Any math that includes an undefined control sequence name will be +replaced by an error message indicating what name was undefined. + Unicode support --------------- diff --git a/docs/html/index.html b/docs/html/index.html index 61a691b9e..7d4e445df 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -122,7 +122,7 @@ MathML, and AsciiMath notaion that works in all modern browsers.


    -

    This version of the documentation was built February 20, 2012.

    +

    This version of the documentation was built February 22, 2012.

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

    +

    It is also possible to create a macro that will autoload an extension +when it is first used (under the assumption that the extension will +redefine it to perform its true function). For example

    +
    <script type="text/x-mathjax-config">
    +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
    +  MathJax.Hub.Insert(MathJax.InputJax.TeX.Definitions.macros,{
    +    cancel: ["Extension","cancel"],
    +    bcancel: ["Extension","cancel"],
    +    xcancel: ["Extension","cancel"],
    +    cancelto: ["Extension","cancel"]
    +  });
    +});
    +</script>
    +
    +
    +

    would declare the \cancel, \bcancel, \xcancel, and +\cancelto macros to load the cancel extension (where they are +actually defined). Whichever is used first will cause the extension +to be loaded, redefining all four to their proper values. Note that +this may be better than loading the extension explicitly, since it +avoids loading the extra file on pages where these macros are not +used. The sample autoloading macros +example page shows this in action.

    The main extensions are described below.

    ActionΒΆ

    @@ -366,6 +389,8 @@ environments it defines, but you will have to load it explicitly if you want to use the other macros that it defines. The AMSsymbols extension is not loaded automatically, so you must include it explicitly if you want to use the macros it defines.

    +

    Both extensions are included in all the combined configuration files +that load the TeX input processor.

    AutoboldΒΆ

    @@ -687,7 +712,17 @@ the paragraph, use

    }
    -

    You may also wish to set the font family, as the default is “serif”.

    +

    You may also wish to set the font family or other CSS values here.

    +

    If you are using a combined configuration file that loads the TeX +input processor, it will also load the noErrors extension +automatically. If you want to disable the noErrors extension so +that you receive the normal TeX error messages, use the following +configuration:

    +
    TeX: { noErrors: { disabled: true } }
    +
    +
    +

    Any math that includes errors will be replaced by an error message +indicating what went wrong.

    noUndefinedΒΆ

    @@ -716,6 +751,16 @@ the following to your mathcolor to "red", but do not set any other attributes. This example sets the background to a light pink, and reduces the font size slightly.

    +

    If you are using a combined configuration file that loads the TeX +input processor, it will also load the noUndefined extension +automatically. If you want to disable the noUndefined extension so +that you receive the normal TeX error messages for undefined macros, +use the following configuration:

    +
    TeX: { noUndefined: { disabled: true } }
    +
    +
    +

    Any math that includes an undefined control sequence name will be +replaced by an error message indicating what name was undefined.

    Unicode supportΒΆ

    diff --git a/docs/source/tex.rst b/docs/source/tex.rst index 7452360b0..3d8fb903d 100644 --- a/docs/source/tex.rst +++ b/docs/source/tex.rst @@ -322,6 +322,33 @@ load extensions into pages that didn't load them in their configurations (and prevents you from having to load all the extensions into all pages even if they aren't used). +It is also possible to create a macro that will autoload an extension +when it is first used (under the assumption that the extension will +redefine it to perform its true function). For example + +.. code-block:: html + + + +would declare the ``\cancel``, ``\bcancel``, ``\xcancel``, and +``\cancelto`` macros to load the `cancel` extension (where they are +actually defined). Whichever is used first will cause the extension +to be loaded, redefining all four to their proper values. Note that +this may be better than loading the extension explicitly, since it +avoids loading the extra file on pages where these macros are *not* +used. The `sample autoloading macros +`_ +example page shows this in action. + The main extensions are described below. @@ -383,6 +410,9 @@ want to use the other macros that it defines. The `AMSsymbols` extension is not loaded automatically, so you must include it explicitly if you want to use the macros it defines. +Both extensions are included in all the combined configuration files +that load the TeX input processor. + Autobold -------- @@ -742,7 +772,20 @@ the paragraph, use } } -You may also wish to set the font family, as the default is "serif". +You may also wish to set the font family or other CSS values here. + +If you are using a combined configuration file that loads the TeX +input processor, it will also load the `noErrors` extension +automatically. If you want to disable the `noErrors` extension so +that you receive the normal TeX error messages, use the following +configuration: + +.. code-block:: javascript + + TeX: { noErrors: { disabled: true } } + +Any math that includes errors will be replaced by an error message +indicating what went wrong. noUndefined @@ -777,6 +820,19 @@ default values set ``mathcolor`` to ``"red"``, but do not set any other attributes. This example sets the background to a light pink, and reduces the font size slightly. +If you are using a combined configuration file that loads the TeX +input processor, it will also load the `noUndefined` extension +automatically. If you want to disable the `noUndefined` extension so +that you receive the normal TeX error messages for undefined macros, +use the following configuration: + +.. code-block:: javascript + + TeX: { noUndefined: { disabled: true } } + +Any math that includes an undefined control sequence name will be +replaced by an error message indicating what name was undefined. + Unicode support --------------- diff --git a/test/examples.html b/test/examples.html index f1f38fab6..6565142c8 100644 --- a/test/examples.html +++ b/test/examples.html @@ -4,7 +4,7 @@ MathJax Example Page @@ -21,7 +21,12 @@ View the page source for any of these examples to see how they work.
  • Page of TeX equations with automatic numbering
  • Page of TeX equations with equation references
  • -

  • Page showing MathJax signals during page processing
  • +
  • Example of defining TeX macros
  • +
  • Defining macros to autoload the extensions in + which they are implemented
  • +

    +

  • Example of waiting until all the + math is typeset before displaying the page (avoids "flicker")
  • Showing an equation one step at a time
  • Display an equation typed in by a user
  • @@ -29,6 +34,8 @@ View the page source for any of these examples to see how they work.

  • Loading MathJax into a page after it is loaded
  • Loading MathJax dynamically with in-line configuration
  • +

    +

  • Page showing MathJax signals during page processing
  • diff --git a/test/sample-all-at-once.html b/test/sample-all-at-once.html new file mode 100644 index 000000000..2360a792a --- /dev/null +++ b/test/sample-all-at-once.html @@ -0,0 +1,136 @@ + + + +Wait Until MathJax is Finished Before Showing Page + + + + + + + + + + + + + + + + + + diff --git a/test/sample-autoload.html b/test/sample-autoload.html new file mode 100644 index 000000000..f2a7c4cfd --- /dev/null +++ b/test/sample-autoload.html @@ -0,0 +1,48 @@ + + + +Example of defining a macro that autoloads an extension + + + + + + + + + + + + +

    +This page makes \cancel, \bcancel, +\xcancel, and \cancelto all be defined so that +they will load the cancel.js extension when first used. +

    + +

    +Here is the first usage: \(\cancel{x+1}\). It will cause the cancel +package to be loaded automatically. +

    + + + diff --git a/test/sample-macros.html b/test/sample-macros.html new file mode 100644 index 000000000..0cee5ddad --- /dev/null +++ b/test/sample-macros.html @@ -0,0 +1,64 @@ + + + +Example of defining a macro that autoloads an extension + + + + + + + + + + + + + +
    +\( + \def\<#1>{\left<#1\right>} + \newcommand{\CC}{\mathbf{C}} +\) +
    + +

    +This page uses two different methods to define macros: either putting them +in JavaScript notation in the MathJax configuration, or in TeX notation in +the body of the document. +

    + +

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

    +example page shows this in action. The autoload-all extension below +defines such macros for all the extensions so that if you include +it, MathJax will have access to all the macros it knows about.

    The main extensions are described below.

    ActionΒΆ

    @@ -551,7 +553,7 @@ MathML attribute values allowed on the To use this extension in your own configurations, add it to the extensions array in the TeX block.

    TeX: {
    -  extensions: ["action.js"]
    +  extensions: ["enclose.js"]
     }
     
    @@ -804,6 +806,45 @@ array. You can configure the extension as follows:

    +
    +

    Autoload-allΒΆ

    +

    The autoload-all extension predefines all the macros from the +extensions above so that they autoload the extensions when first +used. A number of macros already do this, e.g., \unicode, but +this extension defines the others to do the same. That way MathJax +will have access to all the macros that it knows about.

    +

    To use this extension in your own configurations, add it to the +extensions array in the TeX block.

    +
    TeX: {
    +  extensions: ["autoload-all.js"]
    +}
    +
    +
    +

    This extension is not included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands.

    +

    Note that autoload-all redefines \color to be the one from the +color extension (the LaTeX-compatible one rather than the +non-standard MathJax version). This is because \colorbox and +\fcolorbox autoload the color extension, which will cause +\color to be redefined, and so for consistency, \color is +redefined immediately.

    +

    If you wish to retain the original definition of \color, then use +the following

    +
    <script type="text/x-mathjax-config">
    +MathJax.Hub.Config({
    +  TeX: { extensions: ["autoload-all.js"] }
    +});
    +MathJax.Hub.Register.StartupHook("TeX autoload-all Ready", function () {
    +  var MACROS = MathJax.InputJax.TeX.Definitions.macros;
    +  MACROS.color = "Color";
    +  delete MACROS.colorbox;
    +  delete MACROS.fcolorbox;
    +});
    +</script>
    +
    +
    +

    Supported LaTeX commandsΒΆ

    @@ -1191,7 +1232,8 @@ in MathJax page.

    LΒΆ

    -
    \Lambda
    +
    \label                 [AMSmath]
    +\Lambda
     \lambda
     \land
     \langle
    @@ -1797,6 +1839,7 @@ vmatrix
     
  • noErrors
  • noUndefined
  • Unicode support
  • +
  • Autoload-all
  • Supported LaTeX commands
      diff --git a/docs/source/tex.rst b/docs/source/tex.rst index 3d8fb903d..928434ca1 100644 --- a/docs/source/tex.rst +++ b/docs/source/tex.rst @@ -347,7 +347,9 @@ this may be better than loading the extension explicitly, since it avoids loading the extra file on pages where these macros are *not* used. The `sample autoloading macros `_ -example page shows this in action. +example page shows this in action. The `autoload-all` extension below +defines such macros for *all* the extensions so that if you include +it, MathJax will have access to all the macros it knows about. The main extensions are described below. @@ -594,7 +596,7 @@ To use this extension in your own configurations, add it to the .. code-block:: javascript TeX: { - extensions: ["action.js"] + extensions: ["enclose.js"] } This extension is **not** included in any of the combined configurations, @@ -885,6 +887,53 @@ array. You can configure the extension as follows: } +Autoload-all +------------ + +The `autoload-all` extension predefines all the macros from the +extensions above so that they autoload the extensions when first +used. A number of macros already do this, e.g., ``\unicode``, but +this extension defines the others to do the same. That way MathJax +will have access to all the macros that it knows about. + +To use this extension in your own configurations, add it to the +`extensions` array in the TeX block. + +.. code-block:: javascript + + TeX: { + extensions: ["autoload-all.js"] + } + +This extension is **not** included in any of the combined configurations, +and will not be loaded automatically, so you must include it +explicitly in your configuration if you wish to use these commands. + +Note that `autoload-all` redefines ``\color`` to be the one from the +`color` extension (the LaTeX-compatible one rather than the +non-standard MathJax version). This is because ``\colorbox`` and +``\fcolorbox`` autoload the `color` extension, which will cause +``\color`` to be redefined, and so for consistency, ``\color`` is +redefined immediately. + +If you wish to retain the original definition of ``\color``, then use +the following + +.. code-block:: html + + + + .. _tex-commands: Supported LaTeX commands @@ -1292,6 +1341,7 @@ L .. code-block:: latex + \label [AMSmath] \Lambda \lambda \land From 6e65afd4a127eeee1c37ac887bc04f2fcdd89abe Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Thu, 23 Feb 2012 10:35:05 -0500 Subject: [PATCH 09/12] Added v2.0 what's new document --- docs/html/_sources/index.txt | 3 +- docs/html/_sources/installation.txt | 1 + .../{whats-new.txt => whats-new-1.1.txt} | 2 +- docs/html/_sources/whats-new-2.0.txt | 719 ++++++++++++++++++ docs/html/community.html | 10 +- docs/html/index.html | 5 +- docs/html/installation.html | 3 +- docs/html/searchindex.js | 2 +- docs/html/upgrade.html | 8 +- .../{whats-new.html => whats-new-1.1.html} | 12 +- docs/html/whats-new-2.0.html | 671 ++++++++++++++++ docs/source/index.rst | 3 +- docs/source/installation.rst | 1 + .../{whats-new.rst => whats-new-1.1.rst} | 2 +- docs/source/whats-new-2.0.rst | 719 ++++++++++++++++++ 15 files changed, 2138 insertions(+), 23 deletions(-) rename docs/html/_sources/{whats-new.txt => whats-new-1.1.txt} (99%) create mode 100644 docs/html/_sources/whats-new-2.0.txt rename docs/html/{whats-new.html => whats-new-1.1.html} (95%) create mode 100644 docs/html/whats-new-2.0.html rename docs/source/{whats-new.rst => whats-new-1.1.rst} (99%) create mode 100644 docs/source/whats-new-2.0.rst diff --git a/docs/html/_sources/index.txt b/docs/html/_sources/index.txt index 6c940b0ae..c6ec0ca16 100644 --- a/docs/html/_sources/index.txt +++ b/docs/html/_sources/index.txt @@ -41,7 +41,8 @@ Upgrading MathJax .. toctree:: :maxdepth: 1 - What's New in MathJax v1.1 + What's New in MathJax v2.0 + What's New in MathJax v1.1 Migrating from MathJax v1.0 to v1.1 Converting to MathJax from jsMath diff --git a/docs/html/_sources/installation.txt b/docs/html/_sources/installation.txt index 9ddf4f421..04aedd11a 100644 --- a/docs/html/_sources/installation.txt +++ b/docs/html/_sources/installation.txt @@ -213,6 +213,7 @@ installation is working properly:: index.html # Tests default configuration index-images.html # Tests image-font fallback display sample.html # Sample page with lots of pretty equations + examples.html # Page with links to all sample pages Open these files in your browser to see that they appear to be working properly. If you have installed MathJax on a server, use the web diff --git a/docs/html/_sources/whats-new.txt b/docs/html/_sources/whats-new-1.1.txt similarity index 99% rename from docs/html/_sources/whats-new.txt rename to docs/html/_sources/whats-new-1.1.txt index 0a5419fc5..104d145f0 100644 --- a/docs/html/_sources/whats-new.txt +++ b/docs/html/_sources/whats-new-1.1.txt @@ -1,4 +1,4 @@ -.. _whats-new: +.. _whats-new-1.1: ************************** What's New in MathJax v1.1 diff --git a/docs/html/_sources/whats-new-2.0.txt b/docs/html/_sources/whats-new-2.0.txt new file mode 100644 index 000000000..bf6ab2f84 --- /dev/null +++ b/docs/html/_sources/whats-new-2.0.txt @@ -0,0 +1,719 @@ +.. _whats-new-2.0: + +************************** +What's New in MathJax v2.0 +************************** + +MathJax version 2.0 includes many new and improved features, including +much better speeds in Internet Explorer, a new AsciiMath input +processor, a new :term:`SVG` output processor, support for additional +LaTeX commands, and many bug fixes, to name just a few of the changes. + + +Major speed improvement for HTML-CSS output, particularly in IE +=============================================================== + +The HTML-CSS output processing was redesigned to avoid the page +reflows that were the main source of the speed problem in Internet +Explorer 8 and 9. For test pages having between 20 and 50 typeset +expressions, we see an 80% reduction in output processing time for +IE8, a 50% reduction for IE9, and between 15% and 25% reduction for +most other browsers over the corresponding v1.1a times. Since the +processing time in v1.1a grows non-linearly in IE, you should see even +larger savings for pages with more equations when using v2.0. Forcing +IE7 emulation mode is no longer necessary (and indeed is no longer +recommended). + + +Reduced flickering during typsetting +==================================== + +In the past, each expression was displayed as soon as it was typeset, +which caused a lot of visual flickering as MathJax processed the page. +In v2.0, the output is processed in blocks so that typeset expressions +are revealed in groups. This reduces the visual distraction, and also +speeds up the processing. The number of equations in a block can be +controlled through the ``EqnChunk`` parameter in the HTML-CSS or SVG +block of your configuration. See the :ref:`configuration options for +HTML-CSS ` and :ref:`configuration options for SVG +` pages for details. + +If the page URL includes a hash reference (a link to a particular +location within the page), MathJax v2.0 will jump to that location +after the page has finished typsetting. (Since the size of the page +may have changed due to the mathematical typsetting, that location may +no longer be visible on screen, so MathJax moves there when it is done +with the initial typesetting.) You can control this behavior with the +``positionToHash`` parameter in the main section of your +configuration. See the :ref:`core configuration options +` page for details. + + +Automatic equation numbering of TeX formulas +============================================ + +The TeX input jax now can be configured to add equation numbers +(though the default is not to number equations so that existing pages +will not change their appearance). This is controlled through the +``equationNumbers`` section of the ``TeX`` block of your configuration +(see the :ref:`TeX configuration options ` page for +details). You can request that the numbering follow the AMS-style +numbering of environments, or you can request that every displayed +equation be numbered. There are now ``\label``, ``\ref``, and +``\eqref`` commands to make it easier to link to particular equations +within the document. + + +Automatic line breaking of long displayed equations +=================================================== + +MathJax now implements the MathML3 specification for automatic line +breaking of displayed equations in its HTML-CSS output. This is +disabled by default, but can be enabled via the ``linebreaks`` section +of the ``HTML-CSS`` or ``SVG`` block of your configuration (see the +:ref:`HTML-CS configuration options ` or :ref:`SVG +configuration options ` page for details). Note that +automatic line breaking only applies to displayed equations, not +in-line equations, unless they are themselves longer than a line. The +algorithm uses the nesting depth, the type of operator, the size of +spaces, and other factors to decide on the breakpoints, but it does +not know the meaning of the mathematics, and may not choose the +optimal breakpoints. We will continue to work on the algorithm as we +gain information from its actual use in the field. + + +New AsciiMath input jax and SVG output jax +========================================== + +MathJax currently processes math in either :term:`TeX` and +:term:`LaTeX` format, or :term:`MathML` notation; version 2.0 augments +that to include :term:`AsciiMath` notation (see `the ASCIIMathML +home page `_ +for details on this format). This is a notation that is easier for +students to use than TeX, and has been requested by the user +community. See the :ref:`AsciiMath support ` page +for details. + +In addition to the HTML-CSS and Native MathML output available in +v1.1, MathJax v2.0 includes an :term:`SVG`-based output jax. This should +prove to be more reliable than the HTML-CSS output, as it avoids some +CSS, web-font, and printing issues that the HTML-CSS output suffers +from, and it currently has no browser-dependent code. The SVG mode +even works in some ebook readers (like Apple iBooks and Calibre). See +the :ref:`output formats ` documentation for details. + + +New combined configuration files +================================ + +Pre-defined configuration files that include the AsciiMath and SVG +processors are now available with MathJax v2.0. These include +``AM_HTMLorMML``, ``TeX-AMS-MML_SVG``, and ``TeX-MML-AM_HTMLorMML``. +See the :ref:`common configurations ` section for details. + + +MathJax contextual menu now available on mobile devices +======================================================= + +MathJax v2.0 provides access to its contextual menu in mobile devices +that are based on the WebKit (Safari) and Gecko (Firefox) engines. +For Mobile Firefox, the menu is accessed by a tap-and-hold on any +expression rendered by MathJax (this is Mobile Firefox's standard +method of triggering a contextual menu). In Mobile Safari, use a +double-tap-and-hold (you may need to zoom in a bit to be able to +accomplish this). This is the first step toward providing a better +interface for mobile devices. + + +Improved support for screen readers +=================================== + +Some issues surrounding the use of screen readers and their +interaction with MathPlayer have been resolved in MathJax v2.0. In +particular, there are additional menu items that allow the user finer +control over some aspects of MathJax's interface that were interfering +with some screen readers' ability to properly identify the +mathematics. Several stability issues with MathPlayer have also been +addressed. In Internet Explorer when MathPlayer is installed, there +is now a new contextual menu item to allow you to specify what events +are handled by MathJax and what should be handled by MathPlayer. This +gives you finer control over MathPlayer's interaction with some screen +readers. + + +Many new TeX additions and enhancements +======================================= + +* New `mhchem` chemistry extension (adds ``\ce``, ``\cf``, and ``\cee`` macros) + +* New `cancel` extension (adds ``\cancel``, ``\bcancel``, ``\xcancel``, and ``\cancelto`` macros) + +* New `extpfeil` extension (adds more stretchy arrows) + +* New `color` extension (makes ``\color`` work as a switch, as in LaTeX). + Adds ``\definecolor``, other color models, LaTeX named colors, + ``\colorbox``, ``\fcolorbox``, etc. + +* New `begingroup` extension to allow macro definitions to be + localized. Adds ``\begingroup`` and ``\endgroup`` for isolating macro + declarations, and defines ``\let``, ``\renewenvironment``, ``\global``, and + ``\gdef``. + +* New `enclose` extension to give TeX access to ```` elements. + Adds ``\enclose{type}[attributes]{math}`` macro. + +* New `action` extension to give TeX access to ```` elements. + Adds ``\mathtip{math}{tip}``, ``\texttip{math}{tip}``, and + ``\toggle{math1}{math2}...\endtoggle`` macros. + +* New ``\mmToken{type}[attributes]{text}`` macro for producing ````, + ````, ````, and other token MathML elements directly. + +* New ``\bbox[color;attributes]{math}`` macro to add background color, + padding, borders, etc. + +* New ``\middle`` macro for stretchy delimiters between ``\left`` and ``\right``. + +* New ``\label``, ``\ref``, and ``\eqref`` macros for numbered equations. + +* Better implementation of ``\not`` so it produces proper MathML when possible. + +* Better implementation of ``\dots`` that selects ``\ldots`` or ``\cdots`` + depending on the context. + +* Better implementation of ``\cases`` that automatically uses ``\text`` on + the second entry in each row. + +* Safer implementation of ``\require`` that only allows loading from + extensions directory. + +* Allow ``\newcomand`` to provide a default parameter. + +* Allow ``\\`` to take an optional argument that specifies additional + space between lines. + +* Allow ``\\`` to be used anywhere (to force a line break), not just in + arrays. + +* Allow optional alignment parameter for array, aligned, and gathered + environments. + +See the :ref:`TeX support ` page for details on these +extensions and macros. + + +Font enhancements +================= + +* Work around for the OS X Lion STIX font problem. + +* Support for STIX-1.1 fonts (detection of which version you have, + and use data appropriate for that). + +* New WOFF versions of the web fonts (smaller, so faster to + download). + +* Data for more stretchy characters in HTML-CSS output. + +* Add support for Unicode planes 1 through 10 (not just the Math + Alphabet block) in HTML-CSS output. + +* Increased timeout for web fonts (since it was switching to image + fonts too often, especially for mobile devices). + +* Only switch to image fonts if the first web font fails to load (if + we can access one, assume we can access them all). + +* Allow ```` elements to use the page font rather than MathJax + fonts (optionally). This is controlled by the ``mtextFontInerhit`` + configuration parameter for HTML-CSS and SVG output jax. + +* Provide better control over the font used for characters that are + not in the MathJax fonts. + +* Allow Firefox to use web-based fonts when a local URL uses MathJax + from the CDN (in the past it would force image fonts when that was + not necessary). + + +Interface improvements +====================== + +* The MathJax contextual menu has been reorganized to make it easier + to get the source view, and to control the parameters for + MathPlayer in IE. + +* The MathJax contextual menu is available in mobile devices (see + description above). + +* Warning messages are issued if you switch renderers to one that is + inappropriate for your browser. + +* MathJax now starts processing the page on the ``DOMContentLoaded`` + event rather than the page ``onload`` event (this allows the + mathematics to appear sooner). + +* Native MathML output is now scaled to better match the surrounding + font (like it is for HTML-CSS output). + +* Better CSS styling for NativeMML output in Firefox in order to + handle ``\cal`` and other fonts. + +* MathML output now (optionally) includes class names to help mark + special situations generated by the TeX input jax. (This lets the + MathML from the Show Source menu item better reproduce the original + TeX output.) + +* MathJax now loads the menu and zoom code (if they haven't been + loaded already) after the initial typesetting has occured so that + they will be available immediately when a user needs those + features, but do not delay the initial typesetting of the + mathematics. + +* For the `tex2jax` preprocessor, the ``processClass`` can now be + used to override the ``skipTags`` to force a tag that is usually + skipped to have its contents be processed. + +* The `noErrors` and `noUndefined` extensions can now be disabled via + a configuration option (since they are included in many of the + combined configuration files). See the `noErrors` and + `noUndefined` sections of the :ref:`TeX support + ` page for more information. + +* There is a new :meth:`MathJax.Hub.setRenderer()` function that can + be used to switch the current renderer. See the :ref:`MathJax Hub + API ` documentation for details. + +* A user-defined macros is no longer overridden if an extension is + loaded that redefines that macro. + +* Improved web-font detection reliability. + + +.. _important-changes-2.0: + +Important changes from previous versions +======================================== + +* The default renderer for Firefox has been changed from `NativeMML` to + `HTML-CSS` (in those configurations that choose between the two). + The only browser that defaults to `NativeMML` is now IE with + MathPlayer installed. You can configure this to your liking using + the :ref:`MMLorHTML configuration options `. + +* `NativeMML` output will now be selected in IE9 when MathPlayer is + present (since IE9 was released the same day as MathJax v1.1a, and + there had been problems with IE9 beta releases, we weren't sure if + MathPlayer would work with the official release, and so did not + select NativeMML by default.) + +* The performance improvements in IE8 and IE9 now make it unnecessary + to use a ```` tag to force IE7 emulation mode. In fact IE9 in + IE9 standards mode now runs faster than IE9 in IE7 standards mode, + and IE8 in IE8 standards mode is comparable to IE8 in IE7 standards + mode. We now recommend that you use + + .. code-block:: html + + + + to obtain the highest emulation mode available in IE, which + will be the fastest one for MathJax 2.0. + +* The `tex2jax` preprocessor now balances braces when looking for the + closing math delimiter. That allows expressions like + + .. code-block:: latex + + $y = x^2 \hbox{ when $x > 2$}$ + + to be properly parsed as a single math expression rather than two + separate ones with unbalanced braces. The old behavior can be + obtained by setting ``balanceBraces`` to false in the ``tex2jax`` + block of your configuration. (See the :ref:`tex2jax configuration + options ` for details.) + +* If you are hosting your own copy of MathJax on your server, and + that copy is being used from pages in a different domain, you will + have set up the access control paramters for the font directory to + allow Firefox to access the font files properly. Since MathJax 2.0 + includes fonts in WOFF format, you will need to include ``woff`` in + you access control declaration for the fonts. E.g., use + :: + + + + Header set Access-Control-Allow-Origin "*" + + + + in the ``.htaccess` file for the ``Mathjax/fonts`` directory if you + are using the Apache web server. See :ref:`Notes about shared + installations ` for details. + +* The ``\cases`` macro now properly places the second column in text + mode not math mode. In the past, one needed to use ``\text`` in + the second column to achieve the proper results; pages that did + this will still work properly in v2.0. Pages that took advantage + of the math mode in the second column will need to be adjusted. + +* The ``\dots`` macro now produces ``\ldots`` or ``\cdots`` depending + on the context (in the past, ``\dots`` always produced ``\ldots``). + +* A one pixel padding has been added above and below HTML-CSS and SVG + output so that math on successive lines of a paragraph won't bump + into each other. + +* There is a new `MathPlayer` submenu of the `Math Settings` menu in + the MathJax contextual menu that allows the user to control what + events are passed on to MathPlayer. This allows better control for + those using assistive devices like screen readers. When menu + events are being passed on to MathPlayer, the MathJax menu can be + obtained by ALT-clicking on a typeset expression (so the user can + still access MathJax's other features). + +* In order to improve stability with IE when MathPlayer is installed, + MathJax now adds the namespace and object bindings that are needed + for MathPlayer at the time that Mathjax is first loaded, rather + than waiting for the `NativeMML` output jax to be loaded. Since + this is before the configuration information has been obtained, + this will happen regardless of whether the `NativeMML` output jax + is requested. This means that IE may ask the user to allow + MathPlayer to be used, and may show the MathPlayer splash dialog + even when MathPlayer is not in the end used by MathJax. Note that + this setup can only be performed if MathJax is loaded explicitly as + part of the initial web page; if it is injected into the page later + by adding a `` - + @@ -35,7 +35,7 @@ index
    • - next |
    • MathJax Output Formats

      Next topic

      -

      What’s New in MathJax v1.1

      +

      What’s New in MathJax v2.0

    • - next |
    • Upgrading MathJaxΒΆ


    -

    This version of the documentation was built February 22, 2012.

    +

    This version of the documentation was built February 23, 2012.

  • diff --git a/docs/html/installation.html b/docs/html/installation.html index f13c3c6c1..5c8d5bb87 100644 --- a/docs/html/installation.html +++ b/docs/html/installation.html @@ -205,7 +205,8 @@ installation is working properly:

    test/
         index.html          # Tests default configuration
         index-images.html   # Tests image-font fallback display
    -    sample.html         # Sample page with lots of pretty equations
    + sample.html # Sample page with lots of pretty equations + examples.html # Page with links to all sample pages

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

  • - previous |
  • MathJax v2.0 documentation »
  • @@ -281,7 +281,7 @@ retired in favor of the GitHub site.

    Previous topic

    -

    What’s New in MathJax v1.1

    Next topic

    next |

  • - previous |
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/whats-new.html b/docs/html/whats-new-1.1.html similarity index 95% rename from docs/html/whats-new.html rename to docs/html/whats-new-1.1.html index 8a6246359..1d366f8e7 100644 --- a/docs/html/whats-new.html +++ b/docs/html/whats-new-1.1.html @@ -24,7 +24,7 @@ - + @@ -38,7 +38,7 @@ next |
  • - previous |
  • MathJax v2.0 documentation »
  • @@ -50,7 +50,7 @@
    -

    What’s New in MathJax v1.1ΒΆ

    +

    What’s New in MathJax v1.1ΒΆ

    MathJax version 1.1 includes a number of important improvements and enhancements over version 1.0. We have worked hard to fix bugs, improve support for browsers and mobile devices, process TeX and MathML better, and @@ -218,8 +218,8 @@ font menu (since Opera can’t display many of the characters).

    Previous topic

    -

    The MathJax Community

    +

    What’s New in MathJax v2.0

    Next topic

    Migrating from MathJax v1.0 to v1.1

    @@ -250,7 +250,7 @@ font menu (since Opera can’t display many of the characters). next |
  • - previous |
  • MathJax v2.0 documentation »
  • diff --git a/docs/html/whats-new-2.0.html b/docs/html/whats-new-2.0.html new file mode 100644 index 000000000..fe169b9e7 --- /dev/null +++ b/docs/html/whats-new-2.0.html @@ -0,0 +1,671 @@ + + + + + + + + What’s New in MathJax v2.0 — MathJax v2.0 documentation + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +

    What’s New in MathJax v2.0ΒΆ

    +

    MathJax version 2.0 includes many new and improved features, including +much better speeds in Internet Explorer, a new AsciiMath input +processor, a new SVG output processor, support for additional +LaTeX commands, and many bug fixes, to name just a few of the changes.

    +
    +

    Major speed improvement for HTML-CSS output, particularly in IEΒΆ

    +

    The HTML-CSS output processing was redesigned to avoid the page +reflows that were the main source of the speed problem in Internet +Explorer 8 and 9. For test pages having between 20 and 50 typeset +expressions, we see an 80% reduction in output processing time for +IE8, a 50% reduction for IE9, and between 15% and 25% reduction for +most other browsers over the corresponding v1.1a times. Since the +processing time in v1.1a grows non-linearly in IE, you should see even +larger savings for pages with more equations when using v2.0. Forcing +IE7 emulation mode is no longer necessary (and indeed is no longer +recommended).

    +
    +
    +

    Reduced flickering during typsettingΒΆ

    +

    In the past, each expression was displayed as soon as it was typeset, +which caused a lot of visual flickering as MathJax processed the page. +In v2.0, the output is processed in blocks so that typeset expressions +are revealed in groups. This reduces the visual distraction, and also +speeds up the processing. The number of equations in a block can be +controlled through the EqnChunk parameter in the HTML-CSS or SVG +block of your configuration. See the configuration options for +HTML-CSS and configuration options for SVG pages for details.

    +

    If the page URL includes a hash reference (a link to a particular +location within the page), MathJax v2.0 will jump to that location +after the page has finished typsetting. (Since the size of the page +may have changed due to the mathematical typsetting, that location may +no longer be visible on screen, so MathJax moves there when it is done +with the initial typesetting.) You can control this behavior with the +positionToHash parameter in the main section of your +configuration. See the core configuration options page for details.

    +
    +
    +

    Automatic equation numbering of TeX formulasΒΆ

    +

    The TeX input jax now can be configured to add equation numbers +(though the default is not to number equations so that existing pages +will not change their appearance). This is controlled through the +equationNumbers section of the TeX block of your configuration +(see the TeX configuration options page for +details). You can request that the numbering follow the AMS-style +numbering of environments, or you can request that every displayed +equation be numbered. There are now \label, \ref, and +\eqref commands to make it easier to link to particular equations +within the document.

    +
    +
    +

    Automatic line breaking of long displayed equationsΒΆ

    +

    MathJax now implements the MathML3 specification for automatic line +breaking of displayed equations in its HTML-CSS output. This is +disabled by default, but can be enabled via the linebreaks section +of the HTML-CSS or SVG block of your configuration (see the +HTML-CS configuration options or SVG +configuration options page for details). Note that +automatic line breaking only applies to displayed equations, not +in-line equations, unless they are themselves longer than a line. The +algorithm uses the nesting depth, the type of operator, the size of +spaces, and other factors to decide on the breakpoints, but it does +not know the meaning of the mathematics, and may not choose the +optimal breakpoints. We will continue to work on the algorithm as we +gain information from its actual use in the field.

    +
    +
    +

    New AsciiMath input jax and SVG output jaxΒΆ

    +

    MathJax currently processes math in either TeX and +LaTeX format, or MathML notation; version 2.0 augments +that to include AsciiMath notation (see the ASCIIMathML +home page +for details on this format). This is a notation that is easier for +students to use than TeX, and has been requested by the user +community. See the AsciiMath support page +for details.

    +

    In addition to the HTML-CSS and Native MathML output available in +v1.1, MathJax v2.0 includes an SVG-based output jax. This should +prove to be more reliable than the HTML-CSS output, as it avoids some +CSS, web-font, and printing issues that the HTML-CSS output suffers +from, and it currently has no browser-dependent code. The SVG mode +even works in some ebook readers (like Apple iBooks and Calibre). See +the output formats documentation for details.

    +
    +
    +

    New combined configuration filesΒΆ

    +

    Pre-defined configuration files that include the AsciiMath and SVG +processors are now available with MathJax v2.0. These include +AM_HTMLorMML, TeX-AMS-MML_SVG, and TeX-MML-AM_HTMLorMML. +See the common configurations section for details.

    +
    +
    +

    MathJax contextual menu now available on mobile devicesΒΆ

    +

    MathJax v2.0 provides access to its contextual menu in mobile devices +that are based on the WebKit (Safari) and Gecko (Firefox) engines. +For Mobile Firefox, the menu is accessed by a tap-and-hold on any +expression rendered by MathJax (this is Mobile Firefox’s standard +method of triggering a contextual menu). In Mobile Safari, use a +double-tap-and-hold (you may need to zoom in a bit to be able to +accomplish this). This is the first step toward providing a better +interface for mobile devices.

    +
    +
    +

    Improved support for screen readersΒΆ

    +

    Some issues surrounding the use of screen readers and their +interaction with MathPlayer have been resolved in MathJax v2.0. In +particular, there are additional menu items that allow the user finer +control over some aspects of MathJax’s interface that were interfering +with some screen readers’ ability to properly identify the +mathematics. Several stability issues with MathPlayer have also been +addressed. In Internet Explorer when MathPlayer is installed, there +is now a new contextual menu item to allow you to specify what events +are handled by MathJax and what should be handled by MathPlayer. This +gives you finer control over MathPlayer’s interaction with some screen +readers.

    +
    +
    +

    Many new TeX additions and enhancementsΒΆ

    +
      +
    • New mhchem chemistry extension (adds \ce, \cf, and \cee macros)
    • +
    • New cancel extension (adds \cancel, \bcancel, \xcancel, and \cancelto macros)
    • +
    • New extpfeil extension (adds more stretchy arrows)
    • +
    • New color extension (makes \color work as a switch, as in LaTeX). +Adds \definecolor, other color models, LaTeX named colors, +\colorbox, \fcolorbox, etc.
    • +
    • New begingroup extension to allow macro definitions to be +localized. Adds \begingroup and \endgroup for isolating macro +declarations, and defines \let, \renewenvironment, \global, and +\gdef.
    • +
    • New enclose extension to give TeX access to <menclose> elements. +Adds \enclose{type}[attributes]{math} macro.
    • +
    • New action extension to give TeX access to <maction> elements. +Adds \mathtip{math}{tip}, \texttip{math}{tip}, and +\toggle{math1}{math2}...\endtoggle macros.
    • +
    • New \mmToken{type}[attributes]{text} macro for producing <mo>, +<mi>, <mtext>, and other token MathML elements directly.
    • +
    • New \bbox[color;attributes]{math} macro to add background color, +padding, borders, etc.
    • +
    • New \middle macro for stretchy delimiters between \left and \right.
    • +
    • New \label, \ref, and \eqref macros for numbered equations.
    • +
    • Better implementation of \not so it produces proper MathML when possible.
    • +
    • Better implementation of \dots that selects \ldots or \cdots +depending on the context.
    • +
    • Better implementation of \cases that automatically uses \text on +the second entry in each row.
    • +
    • Safer implementation of \require that only allows loading from +extensions directory.
    • +
    • Allow \newcomand to provide a default parameter.
    • +
    • Allow \\ to take an optional argument that specifies additional +space between lines.
    • +
    • Allow \\ to be used anywhere (to force a line break), not just in +arrays.
    • +
    • Allow optional alignment parameter for array, aligned, and gathered +environments.
    • +
    +

    See the TeX support page for details on these +extensions and macros.

    +
    +
    +

    Font enhancementsΒΆ

    +
      +
    • Work around for the OS X Lion STIX font problem.
    • +
    • Support for STIX-1.1 fonts (detection of which version you have, +and use data appropriate for that).
    • +
    • New WOFF versions of the web fonts (smaller, so faster to +download).
    • +
    • Data for more stretchy characters in HTML-CSS output.
    • +
    • Add support for Unicode planes 1 through 10 (not just the Math +Alphabet block) in HTML-CSS output.
    • +
    • Increased timeout for web fonts (since it was switching to image +fonts too often, especially for mobile devices).
    • +
    • Only switch to image fonts if the first web font fails to load (if +we can access one, assume we can access them all).
    • +
    • Allow <mtext> elements to use the page font rather than MathJax +fonts (optionally). This is controlled by the mtextFontInerhit +configuration parameter for HTML-CSS and SVG output jax.
    • +
    • Provide better control over the font used for characters that are +not in the MathJax fonts.
    • +
    • Allow Firefox to use web-based fonts when a local URL uses MathJax +from the CDN (in the past it would force image fonts when that was +not necessary).
    • +
    +
    +
    +

    Interface improvementsΒΆ

    +
      +
    • The MathJax contextual menu has been reorganized to make it easier +to get the source view, and to control the parameters for +MathPlayer in IE.
    • +
    • The MathJax contextual menu is available in mobile devices (see +description above).
    • +
    • Warning messages are issued if you switch renderers to one that is +inappropriate for your browser.
    • +
    • MathJax now starts processing the page on the DOMContentLoaded +event rather than the page onload event (this allows the +mathematics to appear sooner).
    • +
    • Native MathML output is now scaled to better match the surrounding +font (like it is for HTML-CSS output).
    • +
    • Better CSS styling for NativeMML output in Firefox in order to +handle \cal and other fonts.
    • +
    • MathML output now (optionally) includes class names to help mark +special situations generated by the TeX input jax. (This lets the +MathML from the Show Source menu item better reproduce the original +TeX output.)
    • +
    • MathJax now loads the menu and zoom code (if they haven’t been +loaded already) after the initial typesetting has occured so that +they will be available immediately when a user needs those +features, but do not delay the initial typesetting of the +mathematics.
    • +
    • For the tex2jax preprocessor, the processClass can now be +used to override the skipTags to force a tag that is usually +skipped to have its contents be processed.
    • +
    • The noErrors and noUndefined extensions can now be disabled via +a configuration option (since they are included in many of the +combined configuration files). See the noErrors and +noUndefined sections of the TeX support page for more information.
    • +
    • There is a new MathJax.Hub.setRenderer() function that can +be used to switch the current renderer. See the MathJax Hub +API documentation for details.
    • +
    • A user-defined macros is no longer overridden if an extension is +loaded that redefines that macro.
    • +
    • Improved web-font detection reliability.
    • +
    +
    +
    +

    Important changes from previous versionsΒΆ

    +
      +
    • The default renderer for Firefox has been changed from NativeMML to +HTML-CSS (in those configurations that choose between the two). +The only browser that defaults to NativeMML is now IE with +MathPlayer installed. You can configure this to your liking using +the MMLorHTML configuration options.

      +
    • +
    • NativeMML output will now be selected in IE9 when MathPlayer is +present (since IE9 was released the same day as MathJax v1.1a, and +there had been problems with IE9 beta releases, we weren’t sure if +MathPlayer would work with the official release, and so did not +select NativeMML by default.)

      +
    • +
    • The performance improvements in IE8 and IE9 now make it unnecessary +to use a <meta> tag to force IE7 emulation mode. In fact IE9 in +IE9 standards mode now runs faster than IE9 in IE7 standards mode, +and IE8 in IE8 standards mode is comparable to IE8 in IE7 standards +mode. We now recommend that you use

      +
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      +
      +
      +

      to obtain the highest emulation mode available in IE, which +will be the fastest one for MathJax 2.0.

      +
    • +
    • The tex2jax preprocessor now balances braces when looking for the +closing math delimiter. That allows expressions like

      +
      $y = x^2 \hbox{ when $x > 2$}$
      +
      +
      +

      to be properly parsed as a single math expression rather than two +separate ones with unbalanced braces. The old behavior can be +obtained by setting balanceBraces to false in the tex2jax +block of your configuration. (See the tex2jax configuration +options for details.)

      +
    • +
    • If you are hosting your own copy of MathJax on your server, and +that copy is being used from pages in a different domain, you will +have set up the access control paramters for the font directory to +allow Firefox to access the font files properly. Since MathJax 2.0 +includes fonts in WOFF format, you will need to include woff in +you access control declaration for the fonts. E.g., use

      +
      <FilesMatch "\.(ttf|otf|eot|woff)$">
      +<IfModule mod_headers.c>
      +Header set Access-Control-Allow-Origin "*"
      +</IfModule>
      +</FilesMatch>
      +
      +

      in the .htaccess` file for the ``Mathjax/fonts directory if you +are using the Apache web server. See Notes about shared +installations for details.

      +
    • +
    • The \cases macro now properly places the second column in text +mode not math mode. In the past, one needed to use \text in +the second column to achieve the proper results; pages that did +this will still work properly in v2.0. Pages that took advantage +of the math mode in the second column will need to be adjusted.

      +
    • +
    • The \dots macro now produces \ldots or \cdots depending +on the context (in the past, \dots always produced \ldots).

      +
    • +
    • A one pixel padding has been added above and below HTML-CSS and SVG +output so that math on successive lines of a paragraph won’t bump +into each other.

      +
    • +
    • There is a new MathPlayer submenu of the Math Settings menu in +the MathJax contextual menu that allows the user to control what +events are passed on to MathPlayer. This allows better control for +those using assistive devices like screen readers. When menu +events are being passed on to MathPlayer, the MathJax menu can be +obtained by ALT-clicking on a typeset expression (so the user can +still access MathJax’s other features).

      +
    • +
    • In order to improve stability with IE when MathPlayer is installed, +MathJax now adds the namespace and object bindings that are needed +for MathPlayer at the time that Mathjax is first loaded, rather +than waiting for the NativeMML output jax to be loaded. Since +this is before the configuration information has been obtained, +this will happen regardless of whether the NativeMML output jax +is requested. This means that IE may ask the user to allow +MathPlayer to be used, and may show the MathPlayer splash dialog +even when MathPlayer is not in the end used by MathJax. Note that +this setup can only be performed if MathJax is loaded explicitly as +part of the initial web page; if it is injected into the page later +by adding a <script> tag to the page dynamically, then +MathPlayer will be set up when the NativeMML jax is loaded as in +the past, and some stability issues may occur if events are passed +to MathPlayer.

      +
    • +
    • The MathJax typesetting is now started on DOMContentLoaded +rather than at the page onload event, when possible, so that +means MathJax may start typesetting the page earlier than in the +past. This should speed up typesetting one pages with lots of +images or side-bar content, for example.

      +
    • +
    • MathJax now attempts to determine whether the page’s onload +event had already occurred, and if it has, it does not try to wait +for the DOMContentLoaded or onload event before doing its +initial typeset pass. This means that it is no longer necessary to +call MathJax.Hub.Startup.onload() by hand if you insert MathJax +into the page dynamically (e.g., from a GreaseMonkey script).

      +
    • +
    • If the page URL includes a hash reference (a link to a particular +location within the page), MathJax v2.0 will jump to that location +after the page has finished typsetting. Since the size of the page +may have changed due to the mathematical typsetting, that location +may no longer be visible on screen, so MathJax moves there when it +is done with the initial typesetting. You can control this +behavior with the positionToHash parameter in the main section +of your configuration (see core configuration options).

      +
    • +
    • In the event that MathJax is not able to load the configuration file +you have specified in the script tag that loads MathJax.js via +config=filename, it will no longer issue the warning message +about a missing configuration. The configuration process changed +in v1.1, and that message was to help page maintainers update their +configurations, but it turns out that for users with slow network +connections, MathJax could time out waiting for the configuration +file and would issue the warning message in that case, even though +the page included the proper configuration. That should no longer +occur in MathJax v2.0.

      +
    • +
    +
    +
    +

    Other enhancementsΒΆ

    +
      +
    • Use prioritized lists of callbacks for StartupHooks, MessageHooks, +LoadHooks, PreProcessors, and pre- and post-filters on the input jax.
    • +
    • Updated operator dictionary to correspond to current W3C version.
    • +
    • Improved browser detection for Gecko and WebKit browsers.
    • +
    • Make prefilters and postfilters for all input jax, and make them into +hook lists rather than a single hook.
    • +
    • Use <mi> rather than <mo> for \sin, \cos, and other +such functions, for \mathop{\rm...} and \operatorname.
    • +
    • Add &ApplyFunction; after \mathop{} and other macros that are +functions (e.g., \sin).
    • +
    • The MathJax_Preview style has been moved from HTML-CSS/jax.js to +MathJax.js, since it is common to all output.
    • +
    • The autobold extension now uses \boldsymbol rather than +\bf so that it will affect more characters.
    • +
    • Make units of mu‘s be relative to the scriptlevel (as they +are supposed to be).
    • +
    • Reorganized the event-handling code to make it more modular and reduce +redundancy in the different output jax.
    • +
    • Modified CSS in NativeMML output for Firefox to use local copies of +the web fonts, if they are available.
    • +
    • Error messages now have the MathJax contextual menu.
    • +
    • Better handling of some characters not in the web fonts (remap to +locations where they exist, when possible).
    • +
    • Better choice of accent characters in some cases.
    • +
    • Better handling of pseudo-scripts (like primes).
    • +
    • Better sizing of characters introduced by \unicode{}, or +otherwise outside of the fonts known to MathJax.
    • +
    • Provide a new extension to handle tagged equations better in +HTML-CSS output when there are floating elements that might +reduce the area available to displayed equations. (See the +HTML-CSS extensions section of the output formats documentation for detais.)
    • +
    • Use a text font for \it rather than the math italics, so +spacing is better.
    • +
    • Handle italic correction better in HTML-CSS output
    • +
    • Handle href attributes better, especially when on <math> +elements.
    • +
    • Allow \sqrt\frac{}{} without producing an error.
    • +
    +
    +
    +

    Other bug fixesΒΆ

    +
      +
    • MathPlayer setup changed to prevent crashes.
    • +
    • Moved remapping of <mo> contents to the output jax so that the +original contents aren’t changed.
    • +
    • Don’t combine mathvariant with fontstyle or fontweight +(as per the MathML specification).
    • +
    • Isolate non-standard attributes on MathML elements so that they don’t +interfere with the inner workings of MathJax.
    • +
    • Properly handle width of border and padding in merrors in HTML-CSS +output.
    • +
    • Properly handle lower-case Greek better.
    • +
    • Process weight and style of unknown characters properly.
    • +
    • Fixed spacing problems with \cong in MathJax web fonts .
    • +
    • Choose better sizes for \widehat and \widetilde
    • +
    • Fixed problem with detecting em/ex sizes when uses in mobile devices +with small screen widths.
    • +
    • Fixed MathML output when dimensions of mu‘s are used in TeX input.
    • +
    • Better handling of table borders from TeX.
    • +
    • Fixed some problems with table widths and heights, and spacing.
    • +
    • Better handling of colored backgrounds in HTML-CSS output.
    • +
    • Handle border and padding CSS styles better in HTML-CSS output.
    • +
    • Fixed multline environment to put tags on bottom row when +TagSide is set to right.
    • +
    • Force reflow after equations are typeset so that some rendering +problems in tables are corrected in Firefox and WebKit browsers.
    • +
    • Fixed a number of bugs with the size of zoom boxes and the size of their +content.
    • +
    • Have equations with tags zoom into a full-width zoom box to +accommodate the tag.
    • +
    • Fixed positioning problem with zoom boxes in NativeMML mode.
    • +
    • Don’t allow mouse events on zoomed math.
    • +
    • Fixed MathJax.Hub.getJaxFor() and MathJax.Hub.isJax() to +properly handle elements that are part of an output jax’s output +(in particular, you can find the element jax from any DOM element +in the output).
    • +
    • Fixed a number of font anomalies (problems in the data files).
    • +
    • Fixed problem where <mspace> with a background color would not +always overlay previous items.
    • +
    • Fixed a problem with colored <mspace> elements being too tall in +IE/quirks mode.
    • +
    • Fixed problem where <mtable> with equalrows="true" would +not produce equal height rows.
    • +
    • Allow <mpadded> background color to be specified exactly (i.e., +without the 1px padding) when one of its dimensions is given +explicitly (or there is no content).
    • +
    • Avoiding flicker problem with hover zoom trigger in Firefox.
    • +
    • Fix \unicode bug with font names that include spaces.
    • +
    • Remove internal multiple spaces in token elements as per the MathML +specification.
    • +
    • Work around HTML5 removing namespaces, so that xmlns:xlink +becomes xlink with no namespace, which confuses the XML parsers.
    • +
    • Fix MathJax.Message.Set() and MathJax.Message.Clear() so +that a delay of 0 is properly handled.
    • +
    • Produce better MathML for \bmod, \mod, and \pmod.
    • +
    • Don’t allow Safari/Windows to use STIX fonts since it can’t access +characters in Plane1 (the mathematical alphabets).
    • +
    • Fix \thickapprox to use the correct glyph in HTML-CSS output +with MathJax web fonts.
    • +
    • Make style attributes work on <mstyle> elements.
    • +
    • Better handling of border and padding on MathML elements in +HTML-CSS output.
    • +
    • Fixed error with size of \: space.
    • +
    • Allow delimiter of . on \genfrac (it was accidentally rejected).
    • +
    • Handle AMSmath control sequences with stars better (\cs{*} no longer +counts as \cs*).
    • +
    • Fixed wrong character number in stretchy data for U+221A.
    • +
    • Fixed <annotation-xml> to use the proper scaling in HTML-CSS +output.
    • +
    • Fixed a problem with combining characters when they are used as +accents.
    • +
    • Fixed a problem in Firefox with \mathchoice when the contents have +negative width.
    • +
    • TeX input jax no longer incorrectly combines <mo> elements that have +different variants, styles, classes, or id’s.
    • +
    • Fixed the scriptlevel when <munderover> has base with +movablelimits="true" in non-display mode.
    • +
    • Fixed typo in implementation of SimpleSUPER.
    • +
    • Fixed typo in self-closing flag for <mprescript> tag.
    • +
    • Prevent infinite loop if one of the jax fails to load (due to failure +to compile or timeout waiting for it to load).
    • +
    • Fixed a whitespace issue in token elements with IE/quirks mode in +the MathML input jax.
    • +
    • Make sure height is above depth when making spaces and rules in +HTML-CSS and SVG output.
    • +
    • Fixed HTML-CSS tooltip to be work properly when a restart occurs +within the tooltip.
    • +
    • Fixed problem with size of colored backgrounds on <mo> in some +circumstances in HTML-CSS output.
    • +
    • Make \ulcorner, etc. use more approprate unicode positions, and remap +those positions to the locations in the MathJax web fonts.
    • +
    +
    +
    +

    Some technical changesΒΆ

    +
      +
    • Break the processing phase into two separate phases to do input +processing separately from output processing (they used to be +interleaved). This makes it easier to implement forward references +for the \ref macro.
    • +
    • Make Font Preference menu honor the imageFont setting.
    • +
    • Changed the name of the preview filter commands to previewFilter +in all preprocessors.
    • +
    • Make ^ and _ be stretchy even though that isn’t in the W3C +dictionary.
    • +
    • Fixed HTML-CSS output problem when a multi-character token element has +characters taken from multiple fonts.
    • +
    • Force message text to be black in FontWarnings and configuration +warnings.
    • +
    • Added Find() and IndexOf() commands to menus to locate menu items.
    • +
    • Added menu signals for post/unpost and activation of menu items.
    • +
    • Added signals for typesetting of unknown characters.
    • +
    • Added signals for zoom/unzoom.
    • +
    • Added More signals for error conditions.
    • +
    • Allow preferences to select MathML output for Safari with late enough +version.
    • +
    • Improved About MathJax box.
    • +
    • Have tex2jax handle empty delimiter arrays and don’t scan page if +there is nothing to look for.
    • +
    • Make delay following a processing message configurable and lengthen +it to make browser more responsive during typesetting.
    • +
    • Make thin rules be in pixels to try to improve results in IE +(disappearing division lines).
    • +
    • Mark all output elements as isMathJax, so it can be used to identify +what elements are part of mathematical output.
    • +
    • Force MathZoom and MathMenu to wait for the Begin Styles message +before inserting their styles so when they are included in the +combined files, the author can still configure them.
    • +
    • Add default id’s to the jax base object classes.
    • +
    • Mark top-level math element as having a texError when it is one (to +make it easier to recognize).
    • +
    • Have Update() method ask ElementJax to determine if it needs updating +(which in turn asks the associated input jax).
    • +
    • Make Remove() work for just clearing output (without detaching) if +desired.
    • +
    • Have ElementJax store input and output jax ID’s rather than pointers +(to help avoid circular references for cleanup purposes).
    • +
    • Move input/output jax and preprocessor registries from Hub.config to +Hub itself (they are not user configurable through Hub.Config, and so +even though they are configurations, they don’t belong there).
    • +
    • Make sure embelished large ops are type OP not ORD to get spacing +right.
    • +
    • Added MathJax.HTML.getScript() to get the contents of a script (needed +since it works differently in different browsers).
    • +
    • Move code that prevents numbers from being treated as a unit for +super- and subscripts to the super- and subscript routine in the +TeX input jax (prevents making changes to \text{}, +\hbox{}, \href{}, etc.).
    • +
    • Make mml2jax work better with IE namespaces (IE9 no longer seems to +list the xmlns entries on the <html> element).
    • +
    +
    +
    + + +
    +
    +
    + +
    +
    + + + + + \ No newline at end of file diff --git a/docs/source/index.rst b/docs/source/index.rst index 6c940b0ae..c6ec0ca16 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -41,7 +41,8 @@ Upgrading MathJax .. toctree:: :maxdepth: 1 - What's New in MathJax v1.1 + What's New in MathJax v2.0 + What's New in MathJax v1.1 Migrating from MathJax v1.0 to v1.1 Converting to MathJax from jsMath diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 9ddf4f421..04aedd11a 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -213,6 +213,7 @@ installation is working properly:: index.html # Tests default configuration index-images.html # Tests image-font fallback display sample.html # Sample page with lots of pretty equations + examples.html # Page with links to all sample pages Open these files in your browser to see that they appear to be working properly. If you have installed MathJax on a server, use the web diff --git a/docs/source/whats-new.rst b/docs/source/whats-new-1.1.rst similarity index 99% rename from docs/source/whats-new.rst rename to docs/source/whats-new-1.1.rst index 0a5419fc5..104d145f0 100644 --- a/docs/source/whats-new.rst +++ b/docs/source/whats-new-1.1.rst @@ -1,4 +1,4 @@ -.. _whats-new: +.. _whats-new-1.1: ************************** What's New in MathJax v1.1 diff --git a/docs/source/whats-new-2.0.rst b/docs/source/whats-new-2.0.rst new file mode 100644 index 000000000..bf6ab2f84 --- /dev/null +++ b/docs/source/whats-new-2.0.rst @@ -0,0 +1,719 @@ +.. _whats-new-2.0: + +************************** +What's New in MathJax v2.0 +************************** + +MathJax version 2.0 includes many new and improved features, including +much better speeds in Internet Explorer, a new AsciiMath input +processor, a new :term:`SVG` output processor, support for additional +LaTeX commands, and many bug fixes, to name just a few of the changes. + + +Major speed improvement for HTML-CSS output, particularly in IE +=============================================================== + +The HTML-CSS output processing was redesigned to avoid the page +reflows that were the main source of the speed problem in Internet +Explorer 8 and 9. For test pages having between 20 and 50 typeset +expressions, we see an 80% reduction in output processing time for +IE8, a 50% reduction for IE9, and between 15% and 25% reduction for +most other browsers over the corresponding v1.1a times. Since the +processing time in v1.1a grows non-linearly in IE, you should see even +larger savings for pages with more equations when using v2.0. Forcing +IE7 emulation mode is no longer necessary (and indeed is no longer +recommended). + + +Reduced flickering during typsetting +==================================== + +In the past, each expression was displayed as soon as it was typeset, +which caused a lot of visual flickering as MathJax processed the page. +In v2.0, the output is processed in blocks so that typeset expressions +are revealed in groups. This reduces the visual distraction, and also +speeds up the processing. The number of equations in a block can be +controlled through the ``EqnChunk`` parameter in the HTML-CSS or SVG +block of your configuration. See the :ref:`configuration options for +HTML-CSS ` and :ref:`configuration options for SVG +` pages for details. + +If the page URL includes a hash reference (a link to a particular +location within the page), MathJax v2.0 will jump to that location +after the page has finished typsetting. (Since the size of the page +may have changed due to the mathematical typsetting, that location may +no longer be visible on screen, so MathJax moves there when it is done +with the initial typesetting.) You can control this behavior with the +``positionToHash`` parameter in the main section of your +configuration. See the :ref:`core configuration options +` page for details. + + +Automatic equation numbering of TeX formulas +============================================ + +The TeX input jax now can be configured to add equation numbers +(though the default is not to number equations so that existing pages +will not change their appearance). This is controlled through the +``equationNumbers`` section of the ``TeX`` block of your configuration +(see the :ref:`TeX configuration options ` page for +details). You can request that the numbering follow the AMS-style +numbering of environments, or you can request that every displayed +equation be numbered. There are now ``\label``, ``\ref``, and +``\eqref`` commands to make it easier to link to particular equations +within the document. + + +Automatic line breaking of long displayed equations +=================================================== + +MathJax now implements the MathML3 specification for automatic line +breaking of displayed equations in its HTML-CSS output. This is +disabled by default, but can be enabled via the ``linebreaks`` section +of the ``HTML-CSS`` or ``SVG`` block of your configuration (see the +:ref:`HTML-CS configuration options ` or :ref:`SVG +configuration options ` page for details). Note that +automatic line breaking only applies to displayed equations, not +in-line equations, unless they are themselves longer than a line. The +algorithm uses the nesting depth, the type of operator, the size of +spaces, and other factors to decide on the breakpoints, but it does +not know the meaning of the mathematics, and may not choose the +optimal breakpoints. We will continue to work on the algorithm as we +gain information from its actual use in the field. + + +New AsciiMath input jax and SVG output jax +========================================== + +MathJax currently processes math in either :term:`TeX` and +:term:`LaTeX` format, or :term:`MathML` notation; version 2.0 augments +that to include :term:`AsciiMath` notation (see `the ASCIIMathML +home page `_ +for details on this format). This is a notation that is easier for +students to use than TeX, and has been requested by the user +community. See the :ref:`AsciiMath support ` page +for details. + +In addition to the HTML-CSS and Native MathML output available in +v1.1, MathJax v2.0 includes an :term:`SVG`-based output jax. This should +prove to be more reliable than the HTML-CSS output, as it avoids some +CSS, web-font, and printing issues that the HTML-CSS output suffers +from, and it currently has no browser-dependent code. The SVG mode +even works in some ebook readers (like Apple iBooks and Calibre). See +the :ref:`output formats ` documentation for details. + + +New combined configuration files +================================ + +Pre-defined configuration files that include the AsciiMath and SVG +processors are now available with MathJax v2.0. These include +``AM_HTMLorMML``, ``TeX-AMS-MML_SVG``, and ``TeX-MML-AM_HTMLorMML``. +See the :ref:`common configurations ` section for details. + + +MathJax contextual menu now available on mobile devices +======================================================= + +MathJax v2.0 provides access to its contextual menu in mobile devices +that are based on the WebKit (Safari) and Gecko (Firefox) engines. +For Mobile Firefox, the menu is accessed by a tap-and-hold on any +expression rendered by MathJax (this is Mobile Firefox's standard +method of triggering a contextual menu). In Mobile Safari, use a +double-tap-and-hold (you may need to zoom in a bit to be able to +accomplish this). This is the first step toward providing a better +interface for mobile devices. + + +Improved support for screen readers +=================================== + +Some issues surrounding the use of screen readers and their +interaction with MathPlayer have been resolved in MathJax v2.0. In +particular, there are additional menu items that allow the user finer +control over some aspects of MathJax's interface that were interfering +with some screen readers' ability to properly identify the +mathematics. Several stability issues with MathPlayer have also been +addressed. In Internet Explorer when MathPlayer is installed, there +is now a new contextual menu item to allow you to specify what events +are handled by MathJax and what should be handled by MathPlayer. This +gives you finer control over MathPlayer's interaction with some screen +readers. + + +Many new TeX additions and enhancements +======================================= + +* New `mhchem` chemistry extension (adds ``\ce``, ``\cf``, and ``\cee`` macros) + +* New `cancel` extension (adds ``\cancel``, ``\bcancel``, ``\xcancel``, and ``\cancelto`` macros) + +* New `extpfeil` extension (adds more stretchy arrows) + +* New `color` extension (makes ``\color`` work as a switch, as in LaTeX). + Adds ``\definecolor``, other color models, LaTeX named colors, + ``\colorbox``, ``\fcolorbox``, etc. + +* New `begingroup` extension to allow macro definitions to be + localized. Adds ``\begingroup`` and ``\endgroup`` for isolating macro + declarations, and defines ``\let``, ``\renewenvironment``, ``\global``, and + ``\gdef``. + +* New `enclose` extension to give TeX access to ```` elements. + Adds ``\enclose{type}[attributes]{math}`` macro. + +* New `action` extension to give TeX access to ```` elements. + Adds ``\mathtip{math}{tip}``, ``\texttip{math}{tip}``, and + ``\toggle{math1}{math2}...\endtoggle`` macros. + +* New ``\mmToken{type}[attributes]{text}`` macro for producing ````, + ````, ````, and other token MathML elements directly. + +* New ``\bbox[color;attributes]{math}`` macro to add background color, + padding, borders, etc. + +* New ``\middle`` macro for stretchy delimiters between ``\left`` and ``\right``. + +* New ``\label``, ``\ref``, and ``\eqref`` macros for numbered equations. + +* Better implementation of ``\not`` so it produces proper MathML when possible. + +* Better implementation of ``\dots`` that selects ``\ldots`` or ``\cdots`` + depending on the context. + +* Better implementation of ``\cases`` that automatically uses ``\text`` on + the second entry in each row. + +* Safer implementation of ``\require`` that only allows loading from + extensions directory. + +* Allow ``\newcomand`` to provide a default parameter. + +* Allow ``\\`` to take an optional argument that specifies additional + space between lines. + +* Allow ``\\`` to be used anywhere (to force a line break), not just in + arrays. + +* Allow optional alignment parameter for array, aligned, and gathered + environments. + +See the :ref:`TeX support ` page for details on these +extensions and macros. + + +Font enhancements +================= + +* Work around for the OS X Lion STIX font problem. + +* Support for STIX-1.1 fonts (detection of which version you have, + and use data appropriate for that). + +* New WOFF versions of the web fonts (smaller, so faster to + download). + +* Data for more stretchy characters in HTML-CSS output. + +* Add support for Unicode planes 1 through 10 (not just the Math + Alphabet block) in HTML-CSS output. + +* Increased timeout for web fonts (since it was switching to image + fonts too often, especially for mobile devices). + +* Only switch to image fonts if the first web font fails to load (if + we can access one, assume we can access them all). + +* Allow ```` elements to use the page font rather than MathJax + fonts (optionally). This is controlled by the ``mtextFontInerhit`` + configuration parameter for HTML-CSS and SVG output jax. + +* Provide better control over the font used for characters that are + not in the MathJax fonts. + +* Allow Firefox to use web-based fonts when a local URL uses MathJax + from the CDN (in the past it would force image fonts when that was + not necessary). + + +Interface improvements +====================== + +* The MathJax contextual menu has been reorganized to make it easier + to get the source view, and to control the parameters for + MathPlayer in IE. + +* The MathJax contextual menu is available in mobile devices (see + description above). + +* Warning messages are issued if you switch renderers to one that is + inappropriate for your browser. + +* MathJax now starts processing the page on the ``DOMContentLoaded`` + event rather than the page ``onload`` event (this allows the + mathematics to appear sooner). + +* Native MathML output is now scaled to better match the surrounding + font (like it is for HTML-CSS output). + +* Better CSS styling for NativeMML output in Firefox in order to + handle ``\cal`` and other fonts. + +* MathML output now (optionally) includes class names to help mark + special situations generated by the TeX input jax. (This lets the + MathML from the Show Source menu item better reproduce the original + TeX output.) + +* MathJax now loads the menu and zoom code (if they haven't been + loaded already) after the initial typesetting has occured so that + they will be available immediately when a user needs those + features, but do not delay the initial typesetting of the + mathematics. + +* For the `tex2jax` preprocessor, the ``processClass`` can now be + used to override the ``skipTags`` to force a tag that is usually + skipped to have its contents be processed. + +* The `noErrors` and `noUndefined` extensions can now be disabled via + a configuration option (since they are included in many of the + combined configuration files). See the `noErrors` and + `noUndefined` sections of the :ref:`TeX support + ` page for more information. + +* There is a new :meth:`MathJax.Hub.setRenderer()` function that can + be used to switch the current renderer. See the :ref:`MathJax Hub + API ` documentation for details. + +* A user-defined macros is no longer overridden if an extension is + loaded that redefines that macro. + +* Improved web-font detection reliability. + + +.. _important-changes-2.0: + +Important changes from previous versions +======================================== + +* The default renderer for Firefox has been changed from `NativeMML` to + `HTML-CSS` (in those configurations that choose between the two). + The only browser that defaults to `NativeMML` is now IE with + MathPlayer installed. You can configure this to your liking using + the :ref:`MMLorHTML configuration options `. + +* `NativeMML` output will now be selected in IE9 when MathPlayer is + present (since IE9 was released the same day as MathJax v1.1a, and + there had been problems with IE9 beta releases, we weren't sure if + MathPlayer would work with the official release, and so did not + select NativeMML by default.) + +* The performance improvements in IE8 and IE9 now make it unnecessary + to use a ```` tag to force IE7 emulation mode. In fact IE9 in + IE9 standards mode now runs faster than IE9 in IE7 standards mode, + and IE8 in IE8 standards mode is comparable to IE8 in IE7 standards + mode. We now recommend that you use + + .. code-block:: html + + + + to obtain the highest emulation mode available in IE, which + will be the fastest one for MathJax 2.0. + +* The `tex2jax` preprocessor now balances braces when looking for the + closing math delimiter. That allows expressions like + + .. code-block:: latex + + $y = x^2 \hbox{ when $x > 2$}$ + + to be properly parsed as a single math expression rather than two + separate ones with unbalanced braces. The old behavior can be + obtained by setting ``balanceBraces`` to false in the ``tex2jax`` + block of your configuration. (See the :ref:`tex2jax configuration + options ` for details.) + +* If you are hosting your own copy of MathJax on your server, and + that copy is being used from pages in a different domain, you will + have set up the access control paramters for the font directory to + allow Firefox to access the font files properly. Since MathJax 2.0 + includes fonts in WOFF format, you will need to include ``woff`` in + you access control declaration for the fonts. E.g., use + :: + + + + Header set Access-Control-Allow-Origin "*" + + + + in the ``.htaccess` file for the ``Mathjax/fonts`` directory if you + are using the Apache web server. See :ref:`Notes about shared + installations ` for details. + +* The ``\cases`` macro now properly places the second column in text + mode not math mode. In the past, one needed to use ``\text`` in + the second column to achieve the proper results; pages that did + this will still work properly in v2.0. Pages that took advantage + of the math mode in the second column will need to be adjusted. + +* The ``\dots`` macro now produces ``\ldots`` or ``\cdots`` depending + on the context (in the past, ``\dots`` always produced ``\ldots``). + +* A one pixel padding has been added above and below HTML-CSS and SVG + output so that math on successive lines of a paragraph won't bump + into each other. + +* There is a new `MathPlayer` submenu of the `Math Settings` menu in + the MathJax contextual menu that allows the user to control what + events are passed on to MathPlayer. This allows better control for + those using assistive devices like screen readers. When menu + events are being passed on to MathPlayer, the MathJax menu can be + obtained by ALT-clicking on a typeset expression (so the user can + still access MathJax's other features). + +* In order to improve stability with IE when MathPlayer is installed, + MathJax now adds the namespace and object bindings that are needed + for MathPlayer at the time that Mathjax is first loaded, rather + than waiting for the `NativeMML` output jax to be loaded. Since + this is before the configuration information has been obtained, + this will happen regardless of whether the `NativeMML` output jax + is requested. This means that IE may ask the user to allow + MathPlayer to be used, and may show the MathPlayer splash dialog + even when MathPlayer is not in the end used by MathJax. Note that + this setup can only be performed if MathJax is loaded explicitly as + part of the initial web page; if it is injected into the page later + by adding a `` + +to your page just before the `` + +to your page just before the `` + +to your page just before the `` + +to your page just before the ``