diff --git a/docs/html/_sources/api/ajax.txt b/docs/html/_sources/api/ajax.txt index 4a4caefb5..02cd883d4 100644 --- a/docs/html/_sources/api/ajax.txt +++ b/docs/html/_sources/api/ajax.txt @@ -63,7 +63,7 @@ Properties .. describe:: loadHooks An object containing the load hooks for the various files, set up by - the :meth:`loadHook()` method, or by the + the :meth:`LoadHook()` method, or by the :meth:`MathJax.Hub.Register.LoadHook()` method. @@ -142,7 +142,7 @@ Methods - **file** --- the name of the file that failed to load :Returns: ``null`` -.. method:: loadHook(file,callback) +.. method:: LoadHook(file,callback) Registers a callback to be executed when the given file is loaded. The file load operation needs to be started when this diff --git a/docs/html/_sources/api/callback.txt b/docs/html/_sources/api/callback.txt index b8f42613e..4eaeba196 100644 --- a/docs/html/_sources/api/callback.txt +++ b/docs/html/_sources/api/callback.txt @@ -83,10 +83,10 @@ A callback specification is any one of the following: .. code-block:: javascript - ["length",[1,2,3,4]] + ["toString",[1,2,3,4]] - would call the `length` method on the array ``[1,2,3,4]`` when - the callback is called, returning ``4``. + would call the `toString` method on the array ``[1,2,3,4]`` when + the callback is called, returning ``1,2,3,4``. .. describe:: ["method", object, data...] @@ -220,7 +220,7 @@ MathJax.Callback Methods - **callback** --- the callback specification :Returns: the callback object -.. method:: executeHooks(hooks[, data[,reset]]) +.. method:: ExecuteHooks(hooks[, data[,reset]]) Calls each callback in the `hooks` array (or the single hook if it is not an array), passing it the arguments stored in the data @@ -229,7 +229,7 @@ MathJax.Callback Methods executed. If any of the hooks returns a `Callback` object, then it collects those callbacks and returns a new callback that will execute when all the ones returned by the hooks have been - completed. Otherwise, :meth:`MathJax.Callback.executeHooks()` + completed. Otherwise, :meth:`MathJax.Callback.ExecuteHooks()` returns ``null``. :Parameters: diff --git a/docs/html/_sources/api/html.txt b/docs/html/_sources/api/html.txt index 43ce36bd4..764ca2bd4 100644 --- a/docs/html/_sources/api/html.txt +++ b/docs/html/_sources/api/html.txt @@ -39,7 +39,7 @@ Methods var div = MathJax.HTML.Element( "div", {id: "MathDiv", style:{border:"1px solid", padding:"5px"}}, - ["Here is math: $x+1$",["br"],"and a display $$x+1\\over x-1$$"] + ["Here is math: \\(x+1\\)",["br"],"and a display $$x+1\\over x-1$$"] ); :Parameters: @@ -81,7 +81,7 @@ Methods - **text** --- the text for the new node :Returns: the new text node -.. method:: setText(script,text) +.. method:: setScript(script,text) Sets the contents of the ``script`` element to be the given ``text``, properly taking into account the browser limitations and diff --git a/docs/html/_sources/api/object.txt b/docs/html/_sources/api/object.txt index 16f95230f..dfd39180d 100644 --- a/docs/html/_sources/api/object.txt +++ b/docs/html/_sources/api/object.txt @@ -16,7 +16,7 @@ For example: .. code-block:: javascript MathJax.Object.Foo = MathJax.Object.Subclass({ - Init: function (x) {this.SetX(x)}, + Init: function (x) {this.setX(x)}, getX: function () {return this.x}, setX: function (x) {this.x = x} }); diff --git a/docs/html/_sources/api/variable.txt b/docs/html/_sources/api/variable.txt index 0bd35cdb4..05495a2c7 100644 --- a/docs/html/_sources/api/variable.txt +++ b/docs/html/_sources/api/variable.txt @@ -37,11 +37,11 @@ Main MathJax Components Contains the code for managing MathJax callbacks, queues and signals. -.. describe:: MathJax.Extensions +.. describe:: MathJax.Extension Initially empty, this is where extensions can load their code. For example, the `tex2jax` preprocessor creates - ``MathJax.Extensions.tex2jax`` for its code and variables. + ``MathJax.Extension.tex2jax`` for its code and variables. .. describe:: MathJax.Object diff --git a/docs/html/_sources/options/hub.txt b/docs/html/_sources/options/hub.txt index 4c9e4d9c4..9d0481c78 100644 --- a/docs/html/_sources/options/hub.txt +++ b/docs/html/_sources/options/hub.txt @@ -151,7 +151,7 @@ behavior of MathJax. They are given with their default values. that act as the defaults for the user's settings in that menu. The possible values are: - .. describe:: zoom: "none" + .. describe:: zoom: "None" This indicates when typeset mathematics should be zoomed. It can be set to ``"None"``, ``"Hover"``, ``"Click"``, or diff --git a/docs/html/_sources/startup.txt b/docs/html/_sources/startup.txt index c157d0fd6..39722afc4 100644 --- a/docs/html/_sources/startup.txt +++ b/docs/html/_sources/startup.txt @@ -103,14 +103,14 @@ pushed into the queue: 6. Load the extension files: - - Post the ``Begin Extension`` startup signal + - Post the ``Begin Extensions`` startup signal - Load the files from the ``MathJax.Hub.config.extensions`` array - - Most extensions will post a ``Extension [name] Ready`` - startup message when they are loaded (where ``[name]`` is - the name of the extension) + - Most extensions will post a ``[name] Ready`` or ``Extension + [name] Ready`` startup message when they are loaded (where + ``[name]`` is the name of the extension) - - Post the ``End Extension`` startup signal + - Post the ``End Extensions`` startup signal .. diff --git a/docs/html/_sources/tex.txt b/docs/html/_sources/tex.txt index d70aaa760..5bf2e8324 100644 --- a/docs/html/_sources/tex.txt +++ b/docs/html/_sources/tex.txt @@ -371,6 +371,7 @@ Symbols { } ~ + ' \ (backslash-space) \! diff --git a/docs/html/_sources/typeset.txt b/docs/html/_sources/typeset.txt index 76951dcc2..96539b088 100644 --- a/docs/html/_sources/typeset.txt +++ b/docs/html/_sources/typeset.txt @@ -87,14 +87,14 @@ For example, suppose you have the following HTML in your document .. code-block:: html
- The answer you provided is: ${}$. + The answer you provided is: \({}\).
and MathJax has already preprocessed and typeset the mathematics -within dollar signs (it will be blank). A student has typed -something elsewhere on the page, and you want to typeset their answer -in the location of the mathematics that is already there. You could -replace the entire contents of the `MathDiv` element and call +within the div. A student has typed something elsewhere on the page, +and you want to typeset their answer in the location of the +mathematics that is already there. You could replace the entire +contents of the `MathDiv` element and call :meth:`MathJax.Hub.Typeset()` as described above, but there is a more efficient approach, which is to ask MathJax for the element jax for the mathematics, and call its method for replacing the formula shown diff --git a/docs/html/api/ajax.html b/docs/html/api/ajax.html index ec3ccbdca..cd1624856 100644 --- a/docs/html/api/ajax.html +++ b/docs/html/api/ajax.html @@ -118,7 +118,7 @@ additional internal data.

loadHooks

An object containing the load hooks for the various files, set up by -the loadHook() method, or by the +the LoadHook() method, or by the MathJax.Hub.Register.LoadHook() method.

@@ -257,8 +257,8 @@ puts a warning message into the MathJax message box on screen.

-
-loadHook(file, callback)
+
+LoadHook(file, callback)

Registers a callback to be executed when the given file is loaded. The file load operation needs to be started when this method is called, so it can be used to register a hook for a file diff --git a/docs/html/api/callback.html b/docs/html/api/callback.html index 497878dd7..05de0e371 100644 --- a/docs/html/api/callback.html +++ b/docs/html/api/callback.html @@ -128,11 +128,11 @@ the function as well.

Here, object is an object that has a method called method, and the callback will execute that method (with the object as this) when it is called. For example,

-
["length",[1,2,3,4]]
+
["toString",[1,2,3,4]]
 
-

would call the length method on the array [1,2,3,4] when -the callback is called, returning 4.

+

would call the toString method on the array [1,2,3,4] when +the callback is called, returning 1,2,3,4.

@@ -289,8 +289,8 @@ commands.

-
-executeHooks(hooks[, data[, reset]])
+
+ExecuteHooks(hooks[, data[, reset]])

Calls each callback in the hooks array (or the single hook if it is not an array), passing it the arguments stored in the data array. If reset is true, then the callback’s @@ -298,7 +298,7 @@ array. If reset is executed. If any of the hooks returns a Callback object, then it collects those callbacks and returns a new callback that will execute when all the ones returned by the hooks have been -completed. Otherwise, MathJax.Callback.executeHooks() +completed. Otherwise, MathJax.Callback.ExecuteHooks() returns null.

diff --git a/docs/html/api/html.html b/docs/html/api/html.html index 073f84c9a..4e26eb044 100644 --- a/docs/html/api/html.html +++ b/docs/html/api/html.html @@ -86,7 +86,7 @@ describes the contents to create for the element. For example

var div = MathJax.HTML.Element(
   "div",
   {id: "MathDiv", style:{border:"1px solid", padding:"5px"}},
-  ["Here is math: $x+1$",["br"],"and a display $$x+1\\over x-1$$"]
+  ["Here is math: \\(x+1\\)",["br"],"and a display $$x+1\\over x-1$$"]
 );
 
@@ -177,8 +177,8 @@ provided. It is equivalent to

-
-setText(script, text)
+
+setScript(script, text)

Sets the contents of the script element to be the given text, properly taking into account the browser limitations and bugs.

diff --git a/docs/html/api/object.html b/docs/html/api/object.html index bba2b6777..ce1f81a7a 100644 --- a/docs/html/api/object.html +++ b/docs/html/api/object.html @@ -61,7 +61,7 @@ subclasses of MathJax.Object or one of its subclasses, and are instantiated by calling the object class as you would a function.

For example:

MathJax.Object.Foo = MathJax.Object.Subclass({
-  Init: function (x) {this.SetX(x)},
+  Init: function (x) {this.setX(x)},
   getX: function () {return this.x},
   setX: function (x) {this.x = x}
 });
diff --git a/docs/html/api/variable.html b/docs/html/api/variable.html
index d058aaff9..75bbae9bb 100644
--- a/docs/html/api/variable.html
+++ b/docs/html/api/variable.html
@@ -97,10 +97,10 @@ signals.

-MathJax.Extensions
+MathJax.Extension

Initially empty, this is where extensions can load their code. For example, the tex2jax preprocessor creates -MathJax.Extensions.tex2jax for its code and variables.

+MathJax.Extension.tex2jax for its code and variables.

diff --git a/docs/html/genindex.html b/docs/html/genindex.html index 8ebe41c47..7f0c3ab5b 100644 --- a/docs/html/genindex.html +++ b/docs/html/genindex.html @@ -87,7 +87,7 @@
ExecuteHook()
-
executeHooks()
+
ExecuteHooks()
@@ -154,7 +154,7 @@
loadError()
-
loadHook()
+
LoadHook()
loadTimeout()
Log()
@@ -215,7 +215,7 @@
Set()
-
setText()
+
setScript()
Signal()
SourceElement()
Startup()
diff --git a/docs/html/index.html b/docs/html/index.html index 97b3ddd1a..eaef9c8de 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 March 29, 2011.

+

This version of the documentation was built June 02, 2011.

diff --git a/docs/html/options/hub.html b/docs/html/options/hub.html index 7a2e9e427..c0ba4a649 100644 --- a/docs/html/options/hub.html +++ b/docs/html/options/hub.html @@ -216,7 +216,7 @@ that act as the defaults for the user’s settings in that menu. The possible values are:

-zoom: "none"
+zoom: "None"

This indicates when typeset mathematics should be zoomed. It can be set to "None", "Hover", "Click", or "Double-Click" to set the zoom trigger.

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

  1. Load the extension files:
      -
    • Post the Begin Extension startup signal
    • +
    • Post the Begin Extensions startup signal
    • Load the files from the MathJax.Hub.config.extensions array
        -
      • Most extensions will post a Extension [name] Ready -startup message when they are loaded (where [name] is -the name of the extension)
      • +
      • Most extensions will post a [name] Ready or Extension +[name] Ready startup message when they are loaded (where +[name] is the name of the extension)
    • -
    • Post the End Extension startup signal
    • +
    • Post the End Extensions startup signal
diff --git a/docs/html/tex.html b/docs/html/tex.html index b369da695..c3ef77e3c 100644 --- a/docs/html/tex.html +++ b/docs/html/tex.html @@ -350,6 +350,7 @@ be loaded automatically when the macro or environment is first used.

{ } ~ +' \ (backslash-space) \! diff --git a/docs/html/typeset.html b/docs/html/typeset.html index 835ba715c..ebe59da67 100644 --- a/docs/html/typeset.html +++ b/docs/html/typeset.html @@ -115,15 +115,15 @@ find the element jax for the math element on the page, and use its methods to modify and update the mathematics that it displays.

For example, suppose you have the following HTML in your document

<div id="MathDiv">
-  The answer you provided is: ${}$.
+  The answer you provided is: \({}\).
 </div>
 

and MathJax has already preprocessed and typeset the mathematics -within dollar signs (it will be blank). A student has typed -something elsewhere on the page, and you want to typeset their answer -in the location of the mathematics that is already there. You could -replace the entire contents of the MathDiv element and call +within the div. A student has typed something elsewhere on the page, +and you want to typeset their answer in the location of the +mathematics that is already there. You could replace the entire +contents of the MathDiv element and call MathJax.Hub.Typeset() as described above, but there is a more efficient approach, which is to ask MathJax for the element jax for the mathematics, and call its method for replacing the formula shown diff --git a/docs/source/api/ajax.rst b/docs/source/api/ajax.rst index 4a4caefb5..02cd883d4 100644 --- a/docs/source/api/ajax.rst +++ b/docs/source/api/ajax.rst @@ -63,7 +63,7 @@ Properties .. describe:: loadHooks An object containing the load hooks for the various files, set up by - the :meth:`loadHook()` method, or by the + the :meth:`LoadHook()` method, or by the :meth:`MathJax.Hub.Register.LoadHook()` method. @@ -142,7 +142,7 @@ Methods - **file** --- the name of the file that failed to load :Returns: ``null`` -.. method:: loadHook(file,callback) +.. method:: LoadHook(file,callback) Registers a callback to be executed when the given file is loaded. The file load operation needs to be started when this diff --git a/docs/source/api/callback.rst b/docs/source/api/callback.rst index b8f42613e..4eaeba196 100644 --- a/docs/source/api/callback.rst +++ b/docs/source/api/callback.rst @@ -83,10 +83,10 @@ A callback specification is any one of the following: .. code-block:: javascript - ["length",[1,2,3,4]] + ["toString",[1,2,3,4]] - would call the `length` method on the array ``[1,2,3,4]`` when - the callback is called, returning ``4``. + would call the `toString` method on the array ``[1,2,3,4]`` when + the callback is called, returning ``1,2,3,4``. .. describe:: ["method", object, data...] @@ -220,7 +220,7 @@ MathJax.Callback Methods - **callback** --- the callback specification :Returns: the callback object -.. method:: executeHooks(hooks[, data[,reset]]) +.. method:: ExecuteHooks(hooks[, data[,reset]]) Calls each callback in the `hooks` array (or the single hook if it is not an array), passing it the arguments stored in the data @@ -229,7 +229,7 @@ MathJax.Callback Methods executed. If any of the hooks returns a `Callback` object, then it collects those callbacks and returns a new callback that will execute when all the ones returned by the hooks have been - completed. Otherwise, :meth:`MathJax.Callback.executeHooks()` + completed. Otherwise, :meth:`MathJax.Callback.ExecuteHooks()` returns ``null``. :Parameters: diff --git a/docs/source/api/html.rst b/docs/source/api/html.rst index 43ce36bd4..764ca2bd4 100644 --- a/docs/source/api/html.rst +++ b/docs/source/api/html.rst @@ -39,7 +39,7 @@ Methods var div = MathJax.HTML.Element( "div", {id: "MathDiv", style:{border:"1px solid", padding:"5px"}}, - ["Here is math: $x+1$",["br"],"and a display $$x+1\\over x-1$$"] + ["Here is math: \\(x+1\\)",["br"],"and a display $$x+1\\over x-1$$"] ); :Parameters: @@ -81,7 +81,7 @@ Methods - **text** --- the text for the new node :Returns: the new text node -.. method:: setText(script,text) +.. method:: setScript(script,text) Sets the contents of the ``script`` element to be the given ``text``, properly taking into account the browser limitations and diff --git a/docs/source/api/object.rst b/docs/source/api/object.rst index 16f95230f..dfd39180d 100644 --- a/docs/source/api/object.rst +++ b/docs/source/api/object.rst @@ -16,7 +16,7 @@ For example: .. code-block:: javascript MathJax.Object.Foo = MathJax.Object.Subclass({ - Init: function (x) {this.SetX(x)}, + Init: function (x) {this.setX(x)}, getX: function () {return this.x}, setX: function (x) {this.x = x} }); diff --git a/docs/source/api/variable.rst b/docs/source/api/variable.rst index 0bd35cdb4..05495a2c7 100644 --- a/docs/source/api/variable.rst +++ b/docs/source/api/variable.rst @@ -37,11 +37,11 @@ Main MathJax Components Contains the code for managing MathJax callbacks, queues and signals. -.. describe:: MathJax.Extensions +.. describe:: MathJax.Extension Initially empty, this is where extensions can load their code. For example, the `tex2jax` preprocessor creates - ``MathJax.Extensions.tex2jax`` for its code and variables. + ``MathJax.Extension.tex2jax`` for its code and variables. .. describe:: MathJax.Object diff --git a/docs/source/options/hub.rst b/docs/source/options/hub.rst index 4c9e4d9c4..9d0481c78 100644 --- a/docs/source/options/hub.rst +++ b/docs/source/options/hub.rst @@ -151,7 +151,7 @@ behavior of MathJax. They are given with their default values. that act as the defaults for the user's settings in that menu. The possible values are: - .. describe:: zoom: "none" + .. describe:: zoom: "None" This indicates when typeset mathematics should be zoomed. It can be set to ``"None"``, ``"Hover"``, ``"Click"``, or diff --git a/docs/source/startup.rst b/docs/source/startup.rst index c157d0fd6..39722afc4 100644 --- a/docs/source/startup.rst +++ b/docs/source/startup.rst @@ -103,14 +103,14 @@ pushed into the queue: 6. Load the extension files: - - Post the ``Begin Extension`` startup signal + - Post the ``Begin Extensions`` startup signal - Load the files from the ``MathJax.Hub.config.extensions`` array - - Most extensions will post a ``Extension [name] Ready`` - startup message when they are loaded (where ``[name]`` is - the name of the extension) + - Most extensions will post a ``[name] Ready`` or ``Extension + [name] Ready`` startup message when they are loaded (where + ``[name]`` is the name of the extension) - - Post the ``End Extension`` startup signal + - Post the ``End Extensions`` startup signal .. diff --git a/docs/source/tex.rst b/docs/source/tex.rst index d70aaa760..5bf2e8324 100644 --- a/docs/source/tex.rst +++ b/docs/source/tex.rst @@ -371,6 +371,7 @@ Symbols { } ~ + ' \ (backslash-space) \! diff --git a/docs/source/typeset.rst b/docs/source/typeset.rst index 76951dcc2..96539b088 100644 --- a/docs/source/typeset.rst +++ b/docs/source/typeset.rst @@ -87,14 +87,14 @@ For example, suppose you have the following HTML in your document .. code-block:: html

- The answer you provided is: ${}$. + The answer you provided is: \({}\).
and MathJax has already preprocessed and typeset the mathematics -within dollar signs (it will be blank). A student has typed -something elsewhere on the page, and you want to typeset their answer -in the location of the mathematics that is already there. You could -replace the entire contents of the `MathDiv` element and call +within the div. A student has typed something elsewhere on the page, +and you want to typeset their answer in the location of the +mathematics that is already there. You could replace the entire +contents of the `MathDiv` element and call :meth:`MathJax.Hub.Typeset()` as described above, but there is a more efficient approach, which is to ask MathJax for the element jax for the mathematics, and call its method for replacing the formula shown