Add packed versions of all js files (see unpacked directories for the change logs)
This commit is contained in:
parent
7fb07c80e0
commit
f564f5a1a0
43
mathjax/MathJax.js
Normal file
43
mathjax/MathJax.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/config/MMLorHTML.js
Normal file
18
mathjax/config/MMLorHTML.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/config/MMLorHTML.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(c){var a=','MathJax.Hub','.Insert({prefer:{MSIE:"MML",Firefox:"MML",Opera:"HTML",other:"HTML"}},(',1,'.config.MMLorHTML||{}));var f={Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4};var b=(c','.Browser','.version==="0.0"||','c.Browser.versionAtLeast','(f[c',5,']||0));var h;try{new ActiveXObject("MathPlayer.Factory.1");h=true}catch(g){h=false}var e=(c',5,'.isFirefox&&',7,'("1.5"))||(c',5,'.isMSIE&&h)||(c',5,'.isOpera&&',7,'("9.52"));var d=(a.prefer&&typeof(a.prefer)==="object"?a.prefer[',1,5,']||a.prefer.other||"HTML":a.prefer);if(b||e){if(e&&(d==="MML"||!b)){','c.config.jax.unshift("output/','NativeMML")}else{',24,'HTML-CSS")}}else{c.PreProcess','.disabled=true;','c.prepareScripts',28,'MathJax.Message.Set("Your browser does not support MathJax",null,4000);c.Startup.signal.Post("MathJax not supported")}})(',1,');MathJax.Ajax.loadComplete("[MathJax]/config/MMLorHTML.js");']
|
||||
]);
|
||||
|
594
mathjax/config/MathJax.js
Normal file
594
mathjax/config/MathJax.js
Normal file
|
@ -0,0 +1,594 @@
|
|||
/*************************************************************
|
||||
*
|
||||
* MathJax/config/MathJax.js
|
||||
*
|
||||
* This configuration file is loaded when there is no explicit
|
||||
* configuration script in the <script> tag that loads MathJax.js
|
||||
*
|
||||
* Use it to customize the MathJax settings. See comments below.
|
||||
*
|
||||
* ---------------------------------------------------------------------
|
||||
*
|
||||
* Copyright (c) 2009-10 Design Science, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
MathJax.Hub.Config({
|
||||
|
||||
//
|
||||
// A comma-separated list of configuration files to load
|
||||
// when MathJax starts up. E.g., to define local macros, etc.
|
||||
// The default directory is the MathJax/config directory.
|
||||
//
|
||||
// Example: config: ["local/local.js"],
|
||||
// Example: config: ["local/local.js","MMLtoHTML.js"],
|
||||
//
|
||||
config: [],
|
||||
|
||||
//
|
||||
// A comma-separated list of CSS stylesheet files to be loaded
|
||||
// when MathJax starts up. The default directory is the
|
||||
// MathJax/config directory.
|
||||
//
|
||||
// Example: styleSheets: ["MathJax.css"],
|
||||
//
|
||||
styleSheets: [],
|
||||
|
||||
//
|
||||
// Styles to be defined dynamically at startup time.
|
||||
//
|
||||
// Example:
|
||||
// styles: {
|
||||
// ".MathJax .merror": {
|
||||
// color: "blue",
|
||||
// "background-color": "green"
|
||||
// }
|
||||
// },
|
||||
//
|
||||
styles: {},
|
||||
|
||||
//
|
||||
// A comma-separated list of input and output jax to initialize at startup.
|
||||
// Their main code is loaded only when they are actually used, so it is not
|
||||
// inefficient to include jax that may not actually be used on the page. These
|
||||
// are found in the MathJax/jax directory.
|
||||
//
|
||||
jax: ["input/TeX","output/HTML-CSS"],
|
||||
|
||||
//
|
||||
// A comma-separated list of extensions to load at startup. The default
|
||||
// directory is MathJax/extensions.
|
||||
//
|
||||
// Example: extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
|
||||
//
|
||||
extensions: ["tex2jax.js"],
|
||||
|
||||
//
|
||||
// Patterns to remove from before and after math script tags. If you are not
|
||||
// using one of the preprocessors (e.g., tex2jax), you need to insert something
|
||||
// extra into your HTML file in order to avoid a bug in Internet Explorer. IE
|
||||
// removes spaces from the DOM that it thinks are redundent, and since a SCRIPT
|
||||
// tag usually doesn't add content to the page, if there is a space before and after
|
||||
// a MathJax SCRIPT tag, IE will remove the first space. When MathJax inserts
|
||||
// the typeset mathematics, this means there will be no space before it and the
|
||||
// preceeding text. In order to avoid this, you should include some "guard characters"
|
||||
// before or after the math SCRIPT tag; define the patterns you want to use below.
|
||||
// Note that these are used as regular expressions, so you will need to quote
|
||||
// special characters. Furthermore, since they are javascript strings, you must
|
||||
// quote javascript special characters as well. So to obtain a backslash, you must
|
||||
// use \\ (doubled for javascript). For example, "\\[" is the pattern \[ in the
|
||||
// regular expression. That means that if you want an actual backslash in your
|
||||
// guard characters, you need to use "\\\\" in order to get \\ in the regular
|
||||
// expression, and \ in the actual text. If both preJax and postJax are defined,
|
||||
// both must be present in order to be removed.
|
||||
//
|
||||
// See also the preRemoveClass comments below.
|
||||
//
|
||||
// Example:
|
||||
// preJax: "\\\\\\\\", // makes a double backslash the preJax text
|
||||
// or
|
||||
// preJax: "\\[\\[", // jax scripts must be enclosed in double brackets
|
||||
// postJax: "\\]\\]",
|
||||
//
|
||||
preJax: null,
|
||||
postJax: null,
|
||||
|
||||
//
|
||||
// The CSS class for a math preview to be removed preceeding a MathJax
|
||||
// SCRIPT tag. If the tag just before the MathJax SCRIPT tag is of this
|
||||
// class, its contents are removed when MathJax processes the SCRIPT
|
||||
// tag. This allows you to include a math preview in a form that will
|
||||
// be displayed prior to MathJax performing its typesetting. It also
|
||||
// avoids the Internet Explorer space-removal bug, and can be used in
|
||||
// place of preJax and postJax if that is more convenient.
|
||||
//
|
||||
// For example
|
||||
//
|
||||
// <span class="MathJax_Preview">[math]</span><script type="math/tex">...</script>
|
||||
//
|
||||
// would display "[math]" in place of the math until MathJax is able to typeset it.
|
||||
//
|
||||
preRemoveClass: "MathJax_Preview",
|
||||
|
||||
//
|
||||
// This value controls whether the "Processing Math: nn%" message are displayed
|
||||
// in the lower left-hand corner. Set to "false" to prevent those messages (though
|
||||
// file loading and other messages will still be shown).
|
||||
//
|
||||
showProcessingMessages: true,
|
||||
|
||||
//
|
||||
// This value controls the verbosity of the messages in the lower left-hand corner.
|
||||
// Set it to "none" to eliminate all messages, or set it to "simple" to show
|
||||
// "Loading..." and "Processing..." rather than showing the full file name and the
|
||||
// percentage of the mathematics processed.
|
||||
//
|
||||
messageStyle: "normal",
|
||||
|
||||
//
|
||||
// These two parameters control the alignment and shifting of displayed equations.
|
||||
// The first can be "left", "center", or "right", and determines the alignment of
|
||||
// displayed equations. When the alignment is not "center", the second determines
|
||||
// an indentation from the left or right side for the displayed equations.
|
||||
//
|
||||
displayAlign: "center",
|
||||
displayIndent: "0em",
|
||||
|
||||
//
|
||||
// Normally MathJax will perform its starup commands (loading of
|
||||
// configuration, styles, jax, and so on) as soon as it can. If you
|
||||
// expect to be doing additional configuration on the page, however, you
|
||||
// may want to have it wait until the page's onload hander is called. If so,
|
||||
// set this to "onload".
|
||||
//
|
||||
delayStartupUntil: "none",
|
||||
|
||||
//
|
||||
// Normally MathJax will typeset the mathematics on the page as soon as
|
||||
// the page is loaded. If you want to delay that process, in which case
|
||||
// you will need to call MathJax.Hub.Typeset() yourself by hand, set
|
||||
// this value to true.
|
||||
//
|
||||
skipStartupTypeset: false,
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the tex2jax preprocessor (when you have included
|
||||
// "tex2jax.js" in the extensions list above).
|
||||
//
|
||||
tex2jax: {
|
||||
|
||||
//
|
||||
// The Id of the element to be processed (defaults to full document)
|
||||
//
|
||||
element: null,
|
||||
|
||||
//
|
||||
// The delimiters that surround in-line math expressions. The first in each
|
||||
// pair is the initial delimiter and the second is the terminal delimiter.
|
||||
// Comment out any that you don't want, but be sure there is no extra
|
||||
// comma at the end of the last item in the list -- some browsers won't
|
||||
// be able to handle that.
|
||||
//
|
||||
inlineMath: [
|
||||
// ['$','$'], // uncomment this for standard TeX math delimiters
|
||||
['\\(','\\)']
|
||||
],
|
||||
|
||||
//
|
||||
// The delimiters that surround displayed math expressions. The first in each
|
||||
// pair is the initial delimiter and the second is the terminal delimiter.
|
||||
// Comment out any that you don't want, but be sure there is no extra
|
||||
// comma at the end of the last item in the list -- some browsers won't
|
||||
// be able to handle that.
|
||||
//
|
||||
displayMath: [
|
||||
['$$','$$'],
|
||||
['\\[','\\]']
|
||||
],
|
||||
|
||||
//
|
||||
// This array lists the names of the tags whose contents should not be
|
||||
// processed by tex2jax (other than to look for ignore/process classes
|
||||
// as listed below). You can add to (or remove from) this list to prevent
|
||||
// MathJax from processing mathematics in specific contexts.
|
||||
//
|
||||
skipTags: ["script","noscript","style","textarea","pre","code"],
|
||||
|
||||
//
|
||||
// This is the class name used to mark elements whose contents should
|
||||
// not be processed by tex2jax (other than to look for the
|
||||
// processClass pattern below). Note that this is a regular
|
||||
// expression, and so you need to be sure to quote any regexp special
|
||||
// characters. The pattern is automatically preceeded by '(^| )(' and
|
||||
// followed by ')( |$)', so your pattern will have to match full words
|
||||
// in the class name. Assigning an element this class name will
|
||||
// prevent `tex2jax` from processing its contents.
|
||||
//
|
||||
ignoreClass: "tex2jax_ignore",
|
||||
|
||||
//
|
||||
// This is the class name used to mark elements whose contents SHOULD
|
||||
// be processed by tex2jax. This is used to turn on processing within
|
||||
// tags that have been marked as ignored or skipped above. Note that
|
||||
// this is a regular expression, and so you need to be sure to quote
|
||||
// any regexp special characters. The pattern is automatically
|
||||
// preceeded by '(^| )(' and followed by ')( |$)', so your pattern
|
||||
// will have to match full words in the class name. Use this to
|
||||
// restart processing within an element that has been marked as
|
||||
// ignored above.
|
||||
//
|
||||
processClass: "tex2jax_process",
|
||||
|
||||
//
|
||||
// Set to "true" to allow \$ to produce a dollar without starting in-line
|
||||
// math mode. If you uncomment the ['$','$'] line above, you should change
|
||||
// this to true so that you can insert plain dollar signs into your documents
|
||||
//
|
||||
processEscapes: false,
|
||||
|
||||
//
|
||||
// Controls whether tex2jax processes LaTeX environments outside of math
|
||||
// mode. Set to "false" to prevent processing of environments except within
|
||||
// math mode.
|
||||
//
|
||||
processEnvironments: true,
|
||||
|
||||
//
|
||||
// Controls whether tex2jax inserts MathJax_Preview spans to make a
|
||||
// preview available, and what preview to use, when it locates in-line
|
||||
// and display mathetics on the page. The default is "TeX", which
|
||||
// means use the TeX code as the preview (until it is processed by
|
||||
// MathJax). Set to "none" to prevent the previews from being
|
||||
// inserted (the math will simply disappear until it is typeset). Set
|
||||
// to an array containing the description of an HTML snippet in order
|
||||
// to use the same preview for all equations on the page (e.g., you
|
||||
// could have it say "[math]" or load an image).
|
||||
//
|
||||
// E.g., preview: ["[math]"],
|
||||
// or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]]
|
||||
//
|
||||
preview: "TeX"
|
||||
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the mml2jax preprocessor (when you have included
|
||||
// "mml2jax.js" in the extensions list above).
|
||||
//
|
||||
mml2jax: {
|
||||
|
||||
//
|
||||
// The Id of the element to be processed (defaults to full document)
|
||||
//
|
||||
element: null,
|
||||
|
||||
//
|
||||
// Controls whether mml2jax inserts MathJax_Preview spans to make a
|
||||
// preview available, and what preview to use, whrn it locates
|
||||
// mathematics on the page. The default is "alttext", which means use
|
||||
// the <math> tag's alttext attribute as the preview (until it is
|
||||
// processed by MathJax), if the tag has one. Set to "none" to
|
||||
// prevent the previews from being inserted (the math will simply
|
||||
// disappear until it is typeset). Set to an array containing the
|
||||
// description of an HTML snippet in order to use the same preview for
|
||||
// all equations on the page (e.g., you could have it say "[math]" or
|
||||
// load an image).
|
||||
//
|
||||
// E.g., preview: ["[math]"],
|
||||
// or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]]
|
||||
//
|
||||
preview: "alttext"
|
||||
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the jsMath2jax preprocessor (when you have included
|
||||
// "jsMath2jax.js" in the extensions list above).
|
||||
//
|
||||
jsMath2jax: {
|
||||
|
||||
//
|
||||
// The Id of the element to be processed (defaults to full document)
|
||||
//
|
||||
element: null,
|
||||
|
||||
//
|
||||
// Controls whether jsMath2jax inserts MathJax_Preview spans to make a
|
||||
// preview available, and what preview to use, when it locates
|
||||
// mathematics on the page. The default is "TeX", which means use the
|
||||
// TeX code as the preview (until it is processed by MathJax). Set to
|
||||
// "none" to prevent the previews from being inserted (the math will
|
||||
// simply disappear until it is typeset). Set to an array containing
|
||||
// the description of an HTML snippet in order to use the same preview
|
||||
// for all equations on the page (e.g., you could have it say "[math]"
|
||||
// or load an image).
|
||||
//
|
||||
// E.g., preview: ["[math]"],
|
||||
// or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]]
|
||||
//
|
||||
preview: "TeX"
|
||||
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the TeX input jax.
|
||||
//
|
||||
TeX: {
|
||||
|
||||
//
|
||||
// This specifies the side on which \tag{} macros will place the tags.
|
||||
// Set to "left" to place on the left-hand side.
|
||||
//
|
||||
TagSide: "right",
|
||||
|
||||
//
|
||||
// This is the amound of indentation (from right or left) for the tags.
|
||||
//
|
||||
TagIndent: ".8em",
|
||||
|
||||
//
|
||||
// This is the width to use for the multline environment
|
||||
//
|
||||
MultLineWidth: "85%",
|
||||
|
||||
//
|
||||
// List of macros to define. These are of the form
|
||||
// name: value
|
||||
// where 'value' is the replacement text for the macro \name.
|
||||
// The 'value' can also be [value,n] where 'value' is the replacement
|
||||
// text and 'n' is the number of parameters for the macro.
|
||||
// Note that backslashes must be doubled in the replacement string.
|
||||
//
|
||||
// E.g.,
|
||||
//
|
||||
// Macros: {
|
||||
// RR: '{\\bf R}',
|
||||
// bold: ['{\\bf #1}', 1]
|
||||
// }
|
||||
//
|
||||
Macros: {}
|
||||
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the MathML inupt jax.
|
||||
//
|
||||
MathML: {
|
||||
//
|
||||
// This specifies whether to use TeX spacing or MathML spacing when the
|
||||
// HTML-CSS output jax is used.
|
||||
//
|
||||
useMathMLspacing: false
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the HTML-CSS output jax.
|
||||
//
|
||||
"HTML-CSS": {
|
||||
|
||||
//
|
||||
// This controls the global scaling of mathematics as compared to the
|
||||
// surrounding text. Values between 100 and 133 are usually good choices.
|
||||
//
|
||||
scale: 100,
|
||||
|
||||
//
|
||||
// This is a list of the fonts to look for on a user's computer in
|
||||
// preference to using MathJax's web-based fonts. These must
|
||||
// correspond to directories available in the jax/output/HTML-CSS/fonts
|
||||
// directory, where MathJax stores data about the characters available
|
||||
// in the fonts. Set this to ["TeX"], for example, to prevent the
|
||||
// use of the STIX fonts, or set it to an empty list, [], if
|
||||
// you want to force MathJax to use web-based or image fonts.
|
||||
//
|
||||
availableFonts: ["STIX","TeX"],
|
||||
|
||||
//
|
||||
// This is the preferred font to use when more than one of those
|
||||
// listed above is available.
|
||||
//
|
||||
preferredFont: "TeX",
|
||||
|
||||
//
|
||||
// This is the web-based font to use when none of the fonts listed
|
||||
// above are available on the user's computer. Note that currently
|
||||
// only the TeX font is available in a web-based form. Set this to
|
||||
//
|
||||
// webFont: null,
|
||||
//
|
||||
// if you want to prevent the use of web-based fonts.
|
||||
//
|
||||
webFont: "TeX",
|
||||
|
||||
//
|
||||
// This is the font to use for image fallback mode (when none of the
|
||||
// fonts listed above are available and the browser doesn't support
|
||||
// web-fonts via the @font-face CSS directive). Note that currently
|
||||
// only the TeX font is available as an image font. Set this to
|
||||
//
|
||||
// imageFont: null,
|
||||
//
|
||||
// if you want to prevent the use of image fonts (e.g., you have not
|
||||
// installed the image fonts on your server). In this case, only
|
||||
// browsers that support web-based fonts will be able to view your pages
|
||||
// without having the fonts installed on the client computer. The browsers
|
||||
// that support web-based fonts include: IE6 and later, Chrome, Safari3.1
|
||||
// and above, Firefox3.5 and later, and Opera10 and later. Note that
|
||||
// Firefox3.0 is NOT on this list, so without image fonts, FF3.0 users
|
||||
// will be required to to download and install either the STIX fonts or the
|
||||
// MathJax TeX fonts.
|
||||
//
|
||||
imageFont: "TeX",
|
||||
|
||||
//
|
||||
// This controls whether the MathJax contextual menu will be available
|
||||
// on the mathematics in the page. If true, then right-clicking (on
|
||||
// the PC) or control-clicking (on the Mac) will produce a MathJax
|
||||
// menu that allows you to get the source of the mathematics in
|
||||
// various formats, change the size of the mathematics relative to the
|
||||
// surrounding text, and get information about MathJax.
|
||||
//
|
||||
// Set this to false to disable the menu. When true, the MathMenu
|
||||
// items below configure the actions of the menu.
|
||||
//
|
||||
showMathMenu: true,
|
||||
|
||||
//
|
||||
// This allows you to define or modify the styles used to display
|
||||
// various math elements created by MathJax.
|
||||
//
|
||||
// Example:
|
||||
// styles: {
|
||||
// ".MathJax_Display": {
|
||||
// "text-align": "left", // left aligned displayed math
|
||||
// "margin-left": "3em", // with 3em indentation
|
||||
// },
|
||||
// ".MathJax_Preview": {
|
||||
// "font-size": "80%", // preview uses a smaller font
|
||||
// color: "red" // and is in red
|
||||
// }
|
||||
// }
|
||||
//
|
||||
styles: {},
|
||||
|
||||
//
|
||||
// Configuration for <maction> tooltips
|
||||
// (see also the #MathJax_Tooltip CSS in MathJax/jax/output/HTML-CSS/config.js,
|
||||
// which can be overriden using the styles values above).
|
||||
//
|
||||
tooltip: {
|
||||
delayPost: 600, // milliseconds delay before tooltip is posted after mouseover
|
||||
delayClear: 600, // milliseconds delay before tooltip is cleared after mouseout
|
||||
offsetX: 10, offsetY: 5 // pixels to offset tooltip from mouse position
|
||||
}
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the NativeMML output jax.
|
||||
//
|
||||
NativeMML: {
|
||||
|
||||
//
|
||||
// This controls the global scaling of mathematics as compared to the
|
||||
// surrounding text. Values between 100 and 133 are usually good choices.
|
||||
//
|
||||
scale: 100,
|
||||
|
||||
//
|
||||
// This controls whether the MathJax contextual menu will be available
|
||||
// on the mathematics in the page. If true, then right-clicking (on
|
||||
// the PC) or control-clicking (on the Mac) will produce a MathJax
|
||||
// menu that allows you to get the source of the mathematics in
|
||||
// various formats, change the size of the mathematics relative to the
|
||||
// surrounding text, and get information about MathJax.
|
||||
//
|
||||
// Set this to false to disable the menu. When true, the MathMenu
|
||||
// items below configure the actions of the menu.
|
||||
//
|
||||
// There is a separate setting for MSIE, since the code to handle that
|
||||
// is a bit delicate; if it turns out to have unexpected consequences,
|
||||
// you can turn it off without turing off other browser support.
|
||||
//
|
||||
showMathMenu: true,
|
||||
showMathMenuMSIE: true,
|
||||
|
||||
//
|
||||
// This allows you to define or modify the styles used to display
|
||||
// various math elements created by MathJax.
|
||||
//
|
||||
// Example:
|
||||
// styles: {
|
||||
// ".MathJax_MathML": {
|
||||
// color: "red" // MathML is in red
|
||||
// }
|
||||
// }
|
||||
//
|
||||
styles: {}
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the contextual menus that are available on the
|
||||
// mathematics within the page (provided the showMathMenu value is true above).
|
||||
//
|
||||
MathMenu: {
|
||||
//
|
||||
// This is the hover delay for the display of submenus in the
|
||||
// contextual menu. When the mouse is still over a submenu label for
|
||||
// this long, the menu will appear. (The menu also will appear if you
|
||||
// click on the label.) It is in milliseconds.
|
||||
//
|
||||
delay: 400,
|
||||
|
||||
//
|
||||
// This is the URL for the MathJax Help menu item.
|
||||
//
|
||||
helpURL: "http://www.mathjax.org/Help-User/",
|
||||
|
||||
//
|
||||
// These control whether the "Math Renderer", "Font Preferences",
|
||||
// and "Contextual Menu" submenus will be displayed or not.
|
||||
//
|
||||
showRenderer: true,
|
||||
showFontMenu: false,
|
||||
showContext: false,
|
||||
|
||||
//
|
||||
// These are the settings for the Show Source window. The initial
|
||||
// width and height will be reset after the source is shown in an
|
||||
// attempt to make the window fit the output better.
|
||||
//
|
||||
windowSettings: {
|
||||
status: "no", toolbar: "no", locationbar: "no", menubar: "no",
|
||||
directories: "no", personalbar: "no", resizable: "yes", scrollbars: "yes",
|
||||
width: 100, height: 50
|
||||
},
|
||||
|
||||
//
|
||||
// This allows you to change the CSS that controls the menu
|
||||
// appearance. See the extensions/MathMenu.js file for details
|
||||
// of the default settings.
|
||||
//
|
||||
styles: {}
|
||||
|
||||
},
|
||||
|
||||
//============================================================================
|
||||
//
|
||||
// These parameters control the MMLorHTML configuration file.
|
||||
// NOTE: if you add MMLorHTML.js to the config array above,
|
||||
// you must REMOVE the output jax from the jax array.
|
||||
//
|
||||
MMLorHTML: {
|
||||
//
|
||||
// The output jax that is to be preferred when both are possible
|
||||
// (set to "MML" for native MathML, "HTML" for MathJax's HTML-CSS output jax).
|
||||
//
|
||||
prefer: {
|
||||
MSIE: "MML",
|
||||
Firefox: "MML",
|
||||
Opera: "HTML",
|
||||
other: "HTML"
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
MathJax.Ajax.loadComplete("[MathJax]/config/MathJax.js");
|
37
mathjax/config/local/local.js
Normal file
37
mathjax/config/local/local.js
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*************************************************************
|
||||
*
|
||||
* MathJax/config/local/local.js
|
||||
*
|
||||
* Include changes and configuration local to your installation
|
||||
* in this file. For example, common macros can be defined here
|
||||
* (see below). To use this file, add "local/local.js" to the
|
||||
* config array in MathJax.js or your MathJax.Hub.Config() call.
|
||||
*
|
||||
* ---------------------------------------------------------------------
|
||||
*
|
||||
* Copyright (c) 2009 Design Science, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
|
||||
MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
|
||||
var TEX = MathJax.InputJax.TeX;
|
||||
|
||||
// place macros here. E.g.:
|
||||
// TEX.Macro("R","{\\bf R}");
|
||||
// TEX.Macro("op","\\mathop{\\rm #1}",1); // a macro with 1 parameter
|
||||
|
||||
});
|
||||
|
||||
MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js");
|
18
mathjax/extensions/FontWarnings.js
Normal file
18
mathjax/extensions/FontWarnings.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/FontWarnings.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(','function','(d,f){var b=d.Insert({','messageStyle',':{position:"','fixed",bottom:"4em",left:"3em",width:"40em",border:"3px solid #880000','","background-color":"#','E0E0E0",padding:"1em","font-size":"small","','border-radius":".','75em','","-webkit-',8,9,'","-moz-',8,9,'","-khtml-',8,9,'","','box-shadow":"4px 4px 10px #AAAAAA',10,20,13,20,16,20,'",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=3, OffY=3, Color=\'gray\', Positive=\'true\')"},Message:{webFont',':[["closeBox"],"MathJax is ','using',' web-based fonts',' to display',' the mathematics',' ","on this page. These take time to download, so the page would","render faster if you installed math fonts directly in your ","system\'s font folder.",["fonts"]],imageFonts',28,'using its',' image fonts',' rather than local or',30,'. ","This will render slower than usual, and',32,' may not print ","at the full resolution of your printer','.",["fonts"],["webfonts','"]],noFonts',28,'unable to locate a font to use',31,' ","its mathematics, and',36,' are not available, so it ","is falling back on generic unicode characters in hopes that ","your browser will be able',31,' them. Some characters ","may not show up properly, or possibly not at all',42,'"]]},HTML:{closeBox:[["div",{style',4,'absolute",overflow:"hidden",top:".1em",right:".1em",border:"1px outset",width:"1em",height:"1em","text-align":"center",cursor:"pointer',6,'EEEEEE",color:"#606060","',8,'5em',10,8,'5em',13,8,'5em',16,8,'5em"},onclick:',1,'(){if(c.div&&c.fade===0){if(c.timer){clearTimeout(c.timer)}','c.div.style.display="none','"}}},[["span",{style',4,'relative",bottom:".2em"}},["x"]]]]],webfonts:[["p"],"Most modern browsers allow for fonts to be downloaded over the web. ","Updating to a more recent version of your browser (or changing browsers) ","could improve the quality of',32,' on this page."],fonts:[["p"],"MathJax can use either',' the ",["a",{href:"http://www.stixfonts.org/",target:"_blank"},"STIX fonts','"]," or',' the ",["a",{href:"http://www.mathjax.org/Help-Fonts/",target:"_blank"},["MathJax TeX fonts"]],". Download and install ','either one',' to improve your MathJax experience','."],STIXfonts:[["p"],"This page is designed to use',77,'"],". Download and install those fonts',81,'."],TeXfonts:[["p"],"This page is designed to use',79,'those fonts',81,'."]},','removeAfter',':12*1000,','fadeoutSteps',':10,','fadeoutTime',':1.5*1000},(d.config.FontWarnings||{}));var c={div:null,fade:0};var a=',1,'(j){if(c.div){return}','var g=MathJax.OutputJax["HTML-CSS"],k=','document.body',';if(d.Browser.isMSIE){if(b.',3,'.position','==="fixed"){MathJax.Message.Init();k=document.getElementById("MathJax_MSIE_frame");b.',3,103,'="absolute"}}else{delete b.',3,'.filter}b.',3,'.maxWidth=(',100,'.clientWidth-5*g.em)+"px";var h=0;while(h<j.length){if(j[h] instanceof Array&&b.HTML[j[h][0]]){j.splice.apply(j,[h,1].concat(b.HTML[j[h][0]]))}else{h++}}c.div=g.addElement(k,"div",{id:"MathJax_FontWarning",style:b.',3,'},j);if(b.',91,'){d.Register.StartupHook("End",',1,'(){c.timer=','setTimeout(e,b.',91,')})}f.Cookie.Set("fontWarn",{warned:true})};var e=',1,'(){c.fade++;if(c.timer){delete c.timer}if(c.fade<b.',93,'){var g=1-c.fade/b.',93,';c.div.style.','opacity=g',128,'filter="alpha(opacity="+Math.floor(100*g)+")";',120,95,'/b.',93,')}else{',71,'"}};if(!f.Cookie.Get("fontWarn").warned){d.Startup.signal.Interest(',1,'(j){if(j.match(/HTML-CSS Jax - /)&&!c.div){',99,'g.config.availableFonts,i;var h=(k&&k.length);if(!h){b.HTML.fonts=[""]}else{if(k.length===1){b.HTML.fonts=b.HTML[k[0]+"fonts"]}}if(g.allowWebFonts){b.HTML.webfonts=[""]}','if(j.match(/- ','Web-Font/)){if(h){i="webFont"}}else{',143,'using',36,'/)){i="imageFonts"}else{',143,'no valid font/)){i="noFonts"}}}if(i&&b.Message[i]){a(b.Message[i])}}})}})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/FontWarnings.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/MathMenu.js
Normal file
18
mathjax/extensions/MathMenu.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/extensions/MathZoom.js
Normal file
18
mathjax/extensions/MathZoom.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/extensions/TeX/AMSmath.js
Normal file
18
mathjax/extensions/TeX/AMSmath.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/extensions/TeX/AMSsymbols.js
Normal file
18
mathjax/extensions/TeX/AMSsymbols.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/extensions/TeX/autobold.js
Normal file
18
mathjax/extensions/TeX/autobold.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/autobold.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.','Hub.Register.StartupHook("TeX Jax Ready",function(){var b=',0,'InputJax.TeX;var a=','b.prefilterMath',';',4,'=function(f,g,d){var e=d.parentNode.insertBefore(document.createElement("span"),d);e.visibility="hidden";e.style.fontFamily="Times, serif";e.appendChild(document.createTextNode("ABCXYZabcxyz"));var c=','e.offsetWidth',';e.style.fontWeight="bold";if(',8,'==c){f="\\\\bf {"+f+"}"}e.parentNode.removeChild(e);return a.call(b,f,g,d)};',0,'Hub.Startup.signal.Post("TeX autobold Ready")});',0,'Ajax.loadComplete("[MathJax]/extensions/TeX/autobold.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/TeX/boldsymbol.js
Normal file
18
mathjax/extensions/TeX/boldsymbol.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/boldsymbol.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Register.StartupHook("','TeX',' Jax Ready",function(){var a=MathJax.','ElementJax.mml;var d=MathJax.InputJax.TeX;var b=d.Definitions;var c={};c[','a.VARIANT.','NORMAL]=',4,'BOLD;c[',4,'ITALIC]=',4,'BOLDITALIC;c[',4,'FRAKTUR]=',4,'BOLDFRAKTUR;c[',4,'SCRIPT]=',4,'BOLDSCRIPT;c[',4,'SANSSERIF]=',4,'BOLDSANSSERIF;c','["-tex-caligraphic','"]="-tex-','caligraphic-bold";c','["-tex-oldstyle',25,'oldstyle-bold";b.macros.boldsymbol="Boldsymbol";d.Parse.Augment({mmlToken:function(f){if(','this.stack.env.boldsymbol','){var e=','f.Get("','mathvariant','");if(e==null){f.',33,'=',4,'BOLD}else{f.',33,'=(c[e]||e)}}return f},Boldsymbol:function(h',31,30,',f=','this.stack.env.font',';',30,'=true;',44,'=null;var g=this.ParseArg(h);',44,'=f;',30,'=e;this.Push(g)}})});',0,'HTML-CSS',2,'OutputJax["',55,'"];var c=a.FONTDATA.FONTS;var b=a.FONTDATA.VARIANT;','if(a.fontInUse==="','TeX"){c["MathJax_Caligraphic-bold"]="Caligraphic/Bold/Main.js";b',24,'-bold"]={fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1','"],offsetA:65,variantA:"','bold-italic','"};b',27,63,'"]};if(','a.msieCheckGreek','&&a.Font.testFont({family:"','MathJax_Greek','",weight:"bold",style:"italic",testString:',70,'})){b["',65,'"].offsetG=913;b["',65,'"].variantG="-','Greek-Bold-Italic','";b["-',80,'"]={fonts:["',72,'-',65,'"]};c["',72,'-',65,'"]="Greek/BoldItalic/Main.js"}if(','MathJax.Hub.Browser.','isChrome&&!',92,'versionAtLeast("5.0")){b',24,'-bold"].remap={84:[58096,"-WinChrome"]}}}else{',60,'STIX"){b',24,'-bold"]={fonts:["STIXGeneral-bold','-italic','","STIXNonUnicode','-',65,103,'","STIXGeneral","STIXSizeOneSym"],','offsetA:57927,noLowerCase:1};b',27,101,103,'-bold',107,'offsetN:57955,remap:{57956:57959,57957:57963,57958:57967,57959:57971,57960:57975,57961:57979,57962:57983,57963:57987,57964:57991}}}}MathJax.Hub.Startup.signal.Post("TeX boldsymbol Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/boldsymbol.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/TeX/mathchoice.js
Normal file
18
mathjax/extensions/TeX/mathchoice.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/mathchoice.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.','Hub.Register.StartupHook("TeX Jax Ready",function(){var a=',0,'ElementJax.mml;var c=',0,'InputJax.TeX;var b=c.Definitions;b.macros.','mathchoice','="','MathChoice','";c.Parse.Augment({',8,':function','(e){var h','=this.ParseArg(e','),d',13,'),f',13,'),g',13,');this.Push(a.','TeXmathchoice','(h,d,f,g))}});a.',21,'=a.mbase.Subclass({type:"',21,'",choice',11,'(){var d=this.getValues("displaystyle","','scriptlevel','");if(d.',29,'>0){return Math.min(3,d.',29,'+1)}return(d.displaystyle?0:1)},','setTeXclass',11,'(d){return this.','Core().',35,'(d)},','isSpacelike',':function(){return this.',38,41,'()},','isEmbellished',42,38,46,'()},Core',42,'data[this.choice()]},toHTML',11,'(d){d=this.HTMLcreateSpan(d);d.bbox=this.',38,'toHTML(d).bbox;return d}});',0,'Hub.Startup.signal.Post("TeX ',6,' Ready")});',0,'Ajax.loadComplete("[MathJax]/extensions/TeX/',6,'.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/TeX/newcommand.js
Normal file
18
mathjax/extensions/TeX/newcommand.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/newcommand.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.','Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.InputJax.TeX;var a=b.Definitions;',0,'Insert(a,{macros:{','newcommand',':"','NewCommand','",renewcommand:"',6,'",newenvironment:"','NewEnvironment','",def:"MacroDef"}});b.Parse.Augment({',6,':function(','c){','var d=this.','trimSpaces(','this.GetArgument','(c)),f','=this.trimSpaces(this.GetBrackets(','c)),e=',17,'(c);if(f===""){f=null}if(d.charAt(0)==="\\\\"){d=d.substr(1)}if(!d.match(/^(.|[a-z]+)$/i)){','b.Error("Illegal ','control sequence',' name for "+c)}if(f!=null&&!f','.match(/^[0-9]+$/)){b.Error("Illegal number of parameters specified in "+','c)}','a.macros[d]=["Macro",e,f',']},',10,13,'d){var e=this.trimSpaces(',17,'(d)),g',19,'d)),f=',17,'(d),c=',17,'(d);if(g===""){g=null}if(g!=null&&!g',26,'d)}','a.environment[','e',']=["BeginEnv","EndEnv','",f,c,g]},MacroDef',13,'c){',15,'GetCSname','(c),f=this.','GetTemplate','(c,"\\\\"+d),e=',17,'(c);if(!(f instanceof Array)){',28,']}else{a.macros[d]=["','MacroWithTemplate','",e,f[0],f[1]]}},',50,13,'e){var f=','this.GetNext();','if(f!=="\\\\"){b.Error("\\\\ must be followed by a ',24,'")}',15,'trimSpaces(',17,'(e));return d.substr(1)},',52,13,'f,e){var j,g=[],h=0;j=',63,15,'i',';while(this.i<this.string.length){','j=',63,'if(j==="#"){','if(d!==this.i){g[h]=this.string.substr(d,this.i-d)}','j=','this.string.','charAt(++this.i);if(!j.match(/^[1-9]$/)){',23,'use of # in template for "+e)}if(parseInt(j)!=++h){b.Error("Parameters for "+e+" must be numbered sequentially")}d=this.i+1}else{if(j==="{"){',81,'if(g.length>0){return[h,g]}else{return h}}}this.i++}b.Error("Missing replacement string for definition of "+f)},',58,13,'d,g,h,f){if(h){var c=[];',63,'if(f[0]&&!this.','MatchParam','(f[0])){b.Error("Use of "+d+" doesn\'t match its definition")}','for(var e=0;e<','h;e++){c.push(this.','GetParameter','(d,f[e+1]))}g','=this.SubstituteArgs(','c,g)}','this.string=this.AddArgs(','g',',this.string.slice(this.i));this.i=0','},BeginEnv',13,'f,h,c,g){if(g){var d=[];',96,'g;e++){d.push(',17,'("\\\\begin{"+name+"}"))}h',100,'d,h);c',100,'d,c)}f.edef=c;',102,'h',104,';return ','f},EndEnv',13,'c,d){',102,'c.edef',104,119,'d},',98,13,'d,g){if(g==null){return ',17,'(d)}var f=this.i,c=0,e=0',77,'if(',83,'charAt(this.i)==="{"){if(this.i===f){e=1}',17,'(d);c=this.i-f}else{if(this.',94,'(g)){if(e){f++;c-=2}return ',83,'substr(f,c)}else{this.i++;c++;e=0}}}b.Error("Runaway argument for "+d+"?")},',94,13,'c){if(',83,'substr(this.i,c.length)!==c){return 0}this.i+=c.length',119,'1}});b.Environment=function(c){',43,'c',45,'"].concat([].slice.call(arguments,1))};',0,'Startup.signal.Post("TeX ',4,' Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/',4,'.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/TeX/noErrors.js
Normal file
18
mathjax/extensions/TeX/noErrors.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/noErrors.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(){','MathJax.Extension["TeX/noErrors','"]={config:','MathJax.Hub.','Insert({','multiLine',':true,','inlineDelimiters',':["",""],style:{"font-family":"serif","font-size":"80%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}},((',3,'config.TeX||{}).noErrors||{}))};var a=',1,'"].config;var ','b=String.fromCharCode(160);',3,'Config({TeX:{Augment:{formatError:function(e,d,f,c){var h=a.',7,';var g=(f||a.',5,');if(!f){d=h[0]+d+h[1]}if(g){d=d.replace(/ /g,b)}else{d=d.replace(/\\n/g," ")}return ','MathJax.ElementJax.mml','.merror','(d).With({isError',6,5,':g})}}},"','HTML-CSS','":{styles:{".','MathJax .merror','":',3,'Insert({"font-style":null,"background-color":null,"vertical-align":(',3,'Browser.isMSIE&&a.',5,'?"-2px":"")},a.style)}}})})();',3,'Register.StartupHook("',26,' Jax Ready",function(){var ','a=',20,';var b=MathJax.OutputJax["',26,'"];var c=a.math','.prototype.toHTML',';a.math','.Augment({toHTML:function(','d,e','){if(this.data[0]&&this.data[0].data[0]&&this.data[0].data[0].isError){return this.data[0].data[0].','toHTML','(d)}return c.call(this,d',',e)}});a',21,47,'j','){if(!this.isError){return ','a.mbase',45,'.call(this,','j)}j=this.HTMLcreateSpan(j);','if(this.',5,'){j','.style.display="inline-block','"}var l','=this.data[0].data[0].data.join("").split(/\\n/);for(var ','g=0,e=l.length;g<e;g++){b.addText(j,l[g]);if(g!==e-1){b.addElement(j,"br")}}var n=b.getHD(','j.parentNode','),d=b.getW(',68,');if(e>1){var k=(n.h+n.d)/2,h=b.TeX.x_height/2;var f=b.config.styles[".',28,'"]["font-size"];if(f&&f.match(/%/)){h*=parseInt(f)/100}',68,'.style.verticalAlign','=b.Em(n.d+(h-k));n.h=h+k;n.d=k-h}j.bbox={h:n.h,d:n.d,w:d,lw:0,rw:d};return j','}});MathJax.Hub.Startup.signal.Post("TeX noErrors Ready")});MathJax.','Hub.',37,'NativeMML',39,'b=',20,';var a=',1,12,'c=b.math','.prototype.toNativeMML',';b.math','.Augment({toNativeMML:function(','d',49,'toNativeMML',51,')}});b',21,90,'g',56,'b.mbase',88,59,'g)}g=','g.appendChild(document.','createElement("','span"));var h',66,'f=0,e=h.length;f<e;f++){',104,'createTextNode(h[f]));if(f!==e-1){',104,105,'br"))}}',61,5,'){g',64,'";if(e>1){g',75,'="middle"}}for(var j in a.style){if(a.style.hasOwnProperty(j)){var d=j.replace(/-./g,function(i){return i.charAt(1).toUpperCase()});g.style[d]=a.style[j]}}return g',77,'Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/TeX/noUndefined.js
Normal file
18
mathjax/extensions/TeX/noUndefined.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/noUndefined.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Extension["TeX/noUndefined','"]={config:','MathJax.Hub.','Insert({attributes:{mathcolor:"red"}},((',2,'config.TeX||{}).','noUndefined','||{}))};',2,'Register.StartupHook("TeX Jax Ready",function(){var b=',0,'"].config;var a=MathJax.ElementJax.mml;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(c){this.Push(a.mtext(c).With(b.attributes))}});',2,'Startup.signal.Post("TeX ',6,' Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/',6,'.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/TeX/unicode.js
Normal file
18
mathjax/extensions/TeX/unicode.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/unicode.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Extension["TeX/unicode','"]={','unicode',':{},config:','MathJax.Hub.','Insert({fonts:"STIXGeneral,\'Arial Unicode MS\'"},((',4,'config.TeX||{}).',2,'||{}))};','MathJax.Hub.Register.StartupHook("','TeX',' Jax Ready",function(){var ','d=MathJax.InputJax.TeX;var ','a=MathJax.','ElementJax.mml;var c=',0,'"].config.fonts',';var b=',0,'"].',2,';d.Definitions.macros.',2,'="Unicode";d.Parse.Augment({Unicode:function(f){var j','=this.GetBrackets(f','),e;if(j){j=j.replace(/ /g,"");if(j.match(/^(\\','d+(\\.\\d*)?|\\.\\d','+),(\\',27,'+)$/)){j=j.split(/,/);e',25,')}else{e=j;j=null}}var k=this.trimSpaces(this.GetArgument(f)),i=parseInt(k.match(/^x/)?"0"+k:k);b[i]=[800,200,500,0,500,{isUnknown:true,isUnicode:true,font:c}];if(j){b[i][0',']=Math.floor(j[','0]*1000);b[i][1',33,'1]*1000)}var g=this.stack.env.font,h={};if(e){h.fontfamily=e;if(g){if(g.match(/bold/)){h.fontweight="bold"}if(g.match(/italic/)){h.fontstyle="italic"}}b[i][5].font=e+","+c}else{if(g){h.mathvariant=g}}this.Push(a.mtext(a.entity("#"+k)).With(h))}})});',10,'HTML-CSS',12,14,'OutputJax["',38,'"];var c=',0,'"].',2,18,'a.lookupChar;a.Augment({lookupChar:function(e,f){var d=b.call(this,e,f);if(d[f][5]&&d[f][5].isUnknown&&c[f]){d[f]=c[f]}return d}});',4,'Startup.signal.Post("TeX ',2,' Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/',2,'.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/TeX/verb.js
Normal file
18
mathjax/extensions/TeX/verb.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/TeX/verb.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.','Hub.Register.StartupHook("TeX Jax Ready",function(){var a=',0,'ElementJax.mml;var c=',0,'InputJax.TeX;var b=c.Definitions;b.macros.verb="Verb";c.Parse.Augment({Verb:function(d){var g=this.GetNext();var f=++this.i;if(g==""){c.Error(d+" requires an argument")}while(this.i<','this.string.','length&&',6,'charAt(this.i)!=g){this.i++}if(this.i==',6,'length){c.Error("Can\'t find closing delimiter for "+d)}var e=',6,'slice(f,this.i);this.i++;this.Push(a.mtext(e).With({mathvariant:a.VARIANT.MONOSPACE}))}});',0,'Hub.Startup.signal.Post("TeX verb Ready")});',0,'Ajax.loadComplete("[MathJax]/extensions/TeX/verb.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/jsMath2jax.js
Normal file
18
mathjax/extensions/jsMath2jax.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/jsMath2jax.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Extension.jsMath2jax','={config:{element:null,','preview',':"TeX"},','PreProcess',':function(','b){if(!','this.configured','){','MathJax.Hub.','Insert(this','.config,(',9,'config.jsMath2jax||{}));if(','this.config.','Augment','){',9,10,',',14,15,')}','if(typeof(',14,'previewTeX',')!=="undefined"&&!',14,25,'){',14,2,'="none"}this.previewClass=',9,'config.preRemoveClass',';',7,'=true}',23,'b)==="string"){b=document.getElementById(b)}if(!b){b=',14,'element||document.body}var c','=b.getElementsByTagName("','span"),a;for(a=c','.length-1;a>=0;a--){if(String(','c','[a].className).match(/\\bmath\\b/)){this.ConvertMath(','c[a],"")}}var d',42,'div");for(a=d',44,'d',46,'d[a],"; mode=display")}}},ConvertMath',5,'c,d){var b=c','.parentNode',',a=this.','createMathTag','(d,c.innerHTML);if(c.nextSibling){b','.insertBefore(','a,c.nextSibling)}else{b.appendChild(a)}if(',14,2,'!=="none"){this.','createPreview','(c)}b.removeChild(c)},',65,5,'a){var b;if(',14,2,'==="TeX"){b=[this.filterTeX(a.innerHTML)]}else{if(',14,2,' instanceof Array){b=',14,2,'}}if(b){b=MathJax.HTML.Element("span",{className:',9,34,'},b);a',56,60,'b,a)}},',58,5,'c,b){var a=document.createElement("script");a.type="math/tex"+c;if(',9,'Browser.isMSIE){a.text=b}else{a.appendChild(document.createTextNode(b))}return a},filterTeX',5,'a){return a}};',9,'Register.PreProcessor(["',4,'",',0,']);MathJax.Ajax.loadComplete("[MathJax]/extensions/jsMath2jax.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/mml2jax.js
Normal file
18
mathjax/extensions/mml2jax.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/mml2jax.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Extension.mml2jax','={','config',':{element:null,preview:"alttext"},MMLnamespace:"http://www.w3.org/1998/Math/MathML",','PreProcess',':function(','b){if(!','this.configured','){','MathJax.Hub.','Insert(','this.config',',(',9,2,'.mml2jax||{}));if(',11,'.Augment','){',9,10,'this,',11,17,')}',7,'=true}if(typeof(b)==="string"){b=document.getElementById(b)}if(!b){b=',11,'.element||document.body}var c=b.getElementsByTagName("math"),a;if(c.length===0&&','b.getElementsByTagNameNS','){c=',29,'(this.MMLnamespace,"math")}if(this.','msieMathTagBug','){','for(a=c.length-1;a>=0;a--){','if(c[a].nodeName==="MATH"){this.','msieProcessMath','(c[a])}else{','this.ProcessMath(c[a','])}}}else{',35,39,'])}}},ProcessMath',5,'d){var c=d','.parentNode;var a=document.createElement("script");a.type="math/mml";c.insertBefore(a,','d);if(this.msieScriptBug){var b=d.outerHTML;b=b.replace(/<\\?import .*?>/,"").replace(/<\\?xml:namespace .*?\\/>/,"");b=b.replace(/<(\\/?)m:/g,"<$1").replace(/ /g," ");a.text=b;c.removeChild(d)}else{a.appendChild(d)}if(','this.config.preview','!=="none"){this.createPreview(','d,a)}},',37,5,'e){var c=e',46,'e);var b="";while(e&&','e.nodeName','!=="/MATH"){if(',56,'==="#text"||',56,'==="#comment"){b+=e.nodeValue.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}else{b+=this.','toLowerCase','(e.outerHTML)}var d=e;e=e.nextSibling;d','.parentNode.removeChild(','d)}if(e&&',56,'==="/MATH"){e',64,'e)}a.text=b+"</math>";if(',48,49,'e,a)}},',62,5,'b){var d=b.split(/"/);for(var c=0,a=d.length;c<a;c+=2){d[c]=d[c].',62,'()}return d.join(\'"\')},createPreview',5,'b,a){var c;if(',48,'==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterText(d)]}}else{if(',48,' instanceof Array){c=',48,'}}if(c){c=MathJax.HTML.Element("span",{className:',9,2,'.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterText',5,'a){return a}};',9,'Browser.Select({MSIE',5,'a){',9,10,0,',{msieScriptBug:true,',33,':true})}});',9,'Register.PreProcessor(["',4,'",',0,']);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/tex2jax.js
Normal file
18
mathjax/extensions/tex2jax.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/tex2jax.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Extension.tex2jax','={','config',':{element:null,','inlineMath',':[["$","$"],["\\\\(","\\\\)"]],','displayMath',':[["$$","$$"],["\\\\[","\\\\]"]],skipTags:["script","noscript","style","textarea","pre","code"],','ignoreClass',':"tex2jax_ignore",','processClass',':"tex2jax_process",','processEscapes',':false,','processEnvironments',':true,preview:"TeX"},','PreProcess',':function(','a){if(!','this.configured','){','MathJax.Hub.','Insert(','this.config',',(',21,2,'.tex2jax||{}));if(',23,'.Augment','){',21,'Insert(this,',23,29,')}','if(typeof(',23,'.previewTeX',')!=="undefined"&&!',23,38,'){',23,'.preview','="none"}',19,'=true}',36,'a)==="','string"){a=','document.','getElementById(a)}if(!a){a=',23,'.element||',51,'body}this.','createPatterns','();this.','scanElement','(a,a','.nextSibling',')},',57,':function(){var d=[],c,a,b=',23,';this.match={};','for(c=0,a=b.',4,'.length;c<a;c++){d.push(this.patternQuote(b.',4,'[c][0]));this.match[b.',4,'[c][0]]={mode:"",','end:b.',4,'[c][1],pattern:this.endPattern(b.',4,'[c][1])}}',67,6,69,6,71,6,'[c][0]]={','mode:"; mode=display",',74,6,76,6,78,'this.start','=','new RegExp','(d.sort(this.sortLength).join("|")+(b.',14,'?"|\\\\\\\\begin\\\\{([^}]*)\\\\}":"")+(b.',12,'?"|\\\\\\\\*\\\\\\\\\\\\$":""),"g");this.skipTags=',94,'("^("+b.skipTags.join("|")+")$","i");this.',8,'=new RegExp("(^| )("+b.',8,'+")( |$)");this.',10,103,10,'+")( |$)")},','patternQuote',17,'a){return ','a','.replace','(/([\\^$(){}+*?\\-|\\[\\]\\:\\\\])/g,"\\\\$1")},endPattern',17,112,94,'(this.',110,'(a)+"|\\\\\\\\.","g")},sortLength',17,'d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d<c?-1:1))},',59,17,'c,b,e){var a,d;while(c&&c!=b){if(c','.nodeName.toLowerCase()==="#','text"){if(!e){c=this.scanText(c)}}else{a','=(typeof(c.','className',')==="undefined"?"":c.',130,');d',129,'tagName',131,135,');',36,'a)!=="',50,'String(a)}if','(c.firstChild','&&!a.match(/(^| )MathJax/)&&!this.skipTags.exec(d)){e=(e||this.',8,'.exec(a))&&!this.',10,'.exec(a);this.',59,143,',b,e)}}if(c){c=c',61,'}}},scanText',17,'b){if(b','.nodeValue',114,'(/\\s+/,"")==""){return b}var a,c;','this.search','={start:true};','this.pattern','=',92,';while(b){','this.pattern.lastIndex','=0;while(b&&b',127,'text"&&(a=',161,'.exec(b',156,'))){if(',159,'.start){b=this.startMatch(a,b)}else{b=this.endMatch(a,b)}}if(',159,'.matched','){','b=this.encloseMath(b',')}if(b){do{c=b;b=b',61,'}while(b&&(b','.nodeName','.toLowerCase()==="br"||b',127,'comment"));if(!b||b',182,'!=="#text"){return c}}}return b},startMatch',17,'b,c){var d=this.match[b[0]];if(d!=null){',159,'={end:d.end,mode:d.mode,','open:c,olen:','b[0].length',',opos:',165,'-',193,'};','this.switchPattern(','d.pattern)}else{if(b[0].substr(0,6)==="\\\\begin"){',159,'={end:"\\\\end{"+b[1]+"}",',86,192,'0,opos:',165,'-',193,',isBeginEnd:true};',199,'this.endPattern(',159,'.end))}else{var a=b[0].replace(/\\\\(.)/g,"$1");c',156,'=c',156,'.substr(','0,b.index)+a+c',156,217,'b.index+',193,');',165,'-=',193,'-a.length}}return c},endMatch',17,'a,b){if(a[0]==',159,'.end){',159,'.close=b;',159,'.cpos=',165,';',159,'.clen=(',159,'.isBeginEnd?0:a[0].length);',159,176,'=true;',178,');',199,92,')}return b},switchPattern',17,'a){a.lastIndex=',165,';',161,'=a;',159,'.start=(a===',92,')},encloseMath',17,'b){var a=',159,',f=a.close,e;if(a.cpos===f.length){f=f',61,'}else{f=f.splitText(a.cpos)}if(!f){e=f=','a.close.parentNode','.appendChild(document.createTextNode','(""))}if(b===a.close){b=f}a.close=f;var c=a.open.splitText(a.opos);while(c',61,'&&c',61,'!==f){if(c',61,156,'!==null){if(c',61,182,'==="#comment"){c',156,'+=c',61,156,114,'(/^\\[CDATA\\[(.*)\\]\\]$/,"$1")}else{c',156,'+=c',61,156,'}}else{c',156,'+=" "}c','.parentNode.removeChild(','c',61,')}var d=c',156,217,'a.olen,c',156,'.length-a.olen-a.clen);c',292,'c);if(',23,44,'!=="none"){this.','createPreview','(a.mode,d',')}c=this.','createMathTag',307,');',159,'={};',165,'=0;if(e){e',292,'e)}return c},insertNode',17,261,159,';if(a.close&&',266,'){',266,'.insertBefore(b,a.','close)}else{if(a.open',61,'){a.open.parentNode',325,'open',61,')}else{a.open.parentNode.appendChild(b)}}},',306,17,'c,a){var b;if(',23,44,'==="TeX"){b=[this.filterTeX(a)]}else{if(',23,44,' instanceof Array){b=',23,44,'}}if(b){b=MathJax.HTML.Element("span",{',130,':',21,2,'.preRemoveClass},b);','this.insertNode(','b)}},',309,17,'c,',261,51,'createElement("script");a.type="math/tex"+c;if(',21,'Browser.isMSIE){a.text=b}else{a',267,'(b))}',350,'a);return a},filterTeX',17,112,'a}};',21,'Register.PreProcessor(["',16,'",',0,']);MathJax.Ajax.loadComplete("[MathJax]/extensions/tex2jax.js");']
|
||||
]);
|
||||
|
18
mathjax/extensions/toMathML.js
Normal file
18
mathjax/extensions/toMathML.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/extensions/toMathML.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Register.','LoadHook("[','MathJax',']/jax/element/mml/jax.js",','function(){','var a=',2,'.ElementJax.mml;a.mbase','.Augment({toMathML:function(','j){var f=(this.inferred&&this.parent.inferRow);if(j==null){j=""}var d','=this.','type,c',10,'MathMLattributes','();if(d==="mspace"){','return j+"<"+d+c','+" />"}','var h=[];var g=(','this.isToken','?"":j+(f?"":" "));for(var e=0,b',10,'data','.length;e<b;e++){','if(','this.data[','e]){h.push(',24,'e].toMathML(g))}else{if(!',18,'){h.push(','g+"<mrow />")}}}if(',18,'){',15,'+">"+h.join("")+"</"+d+">"}if(f){return h.join("\\n")}if(h.length===0||(h.length===1&&h[0]==="")){',15,16,15,'+">\\n"+h.join("\\n")+"\\n"+j+"</"+d+">"},',13,':',4,'var h=[],f',10,'defaults;var b',10,'copyAttributes',',k',10,'skipAttributes',';','if(this.type==="','math"){h.push(\'xmlns="http://www.w3.org/1998/Math/MathML"\')}',51,'mstyle"){f=a.math.prototype.defaults}for(var c in f){if(!k[c]&&f.hasOwnProperty(c)){var d=(c==="open"||c==="close");if(this[c]!=null&&(d||this[c]!==f[c])){var j=this[c];delete this[c];if(d||this.Get(c)!==j',29,'c+\'="\'+','this.quoteHTML(','j)+\'"\')}this[c]=j}}}for(var g=0,e=b.length;g<e;g++){if(this[b[g]]!=null',29,'b[g]+\'="\'+',57,'this[b[g]])+\'"\')}}if(h.length){return" "+h.join(" ")}else{return""}},',46,':["fontfamily","fontsize","fontweight","fontstyle","color","background","id","class","href","style"],',49,':{texClass:1,useHeight:1,texprimestyle:1},quoteHTML:function(d){d=String(d).split("");for(var e=0,b=d',22,'var g=d[e].charCodeAt(0);if(g<32||g>126){d[e]="&#x"+g.toString(16).toUpperCase()+";"}else{var f={"&":"&","<":"<",">":">",\'"\':"""}[d[e]];if(f){d[e]=f}}}return d.join("")}});a.msubsup',8,'g){var d=this.type;if(this.data[this.','sup',']==null){d="','msub"}if(',24,'this.sub',72,'msup','"}var c=this.MathMLattributes();delete this.data[0].inferred;var f=[];for(var e=0,b=this.data.length;e<b;e++){if(this.data[e]){f.push(this.data[e].toMathML(g+" "))}}return g+"<"+d+c+">\\n"+f.join("\\n")+"\\n"+g+"</"+d+">"}});a.','munderover',8,70,'under',72,'mover"}if(',24,'this.over',72,'munder',78,'TeXAtom',8,'b){return',' b+"<mrow>\\n"+',24,'0].toMathML(b+" ")+"\\n"+b+"</mrow>"}});a.chars',8,92,'(b||"")+',57,'this.toString','())}});a.entity',8,92,'(b||"")+"&"+',24,'0]+";<!-- "+',100,'()+" -->"}});',0,'StartupHook("TeX mathchoice Ready",',4,'a.TeXmathchoice',8,92,' this.Core().toMathML(b)}})});',2,'.Hub.Startup.signal.Post("toMathML Ready")});',2,'.Ajax.loadComplete("[',2,']/extensions/toMathML.js");']
|
||||
]);
|
||||
|
19
mathjax/jax/element/mml/jax.js
Normal file
19
mathjax/jax/element/mml/jax.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/jax/element/mml/optable/Arrows.js
Normal file
18
mathjax/jax/element/mml/optable/Arrows.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/Arrows.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\\u219A','":c.REL,"\\','u219B',1,'u219C','":c.WIDEREL,"\\','u219D',5,'u219E',5,'u219F',5,'u21A0',5,'u21A1',5,'u21A2',5,'u21A3',5,'u21A4',5,'u21A5',5,'u21A7',5,'u21A8',5,'u21AB',5,'u21AC',5,'u21AD',5,'u21AE',1,'u21AF',5,'u21B0',5,'u21B1',5,'u21B2',5,'u21B3',5,'u21B4',5,'u21B5',5,'u21B6',1,'u21B7',1,'u21B8',1,'u21B9',5,'u21BA',1,'u21BB',1,'u21BE',5,'u21BF',5,'u21C2',5,'u21C3',5,'u21C4',5,'u21C5',5,'u21C6',5,'u21C7',5,'u21C8',5,'u21C9',5,'u21CA',5,'u21CB',5,'u21CD',1,'u21CE',1,'u21CF',1,'u21D6',5,'u21D7',5,'u21D8',5,'u21D9',5,'u21DA',5,'u21DB',5,'u21DC',5,'u21DD',5,'u21DE',1,'u21DF',1,'u21E0',5,'u21E1',5,'u21E2',5,'u21E3',5,'u21E4',5,'u21E5',5,'u21E6',5,'u21E7',5,'u21E8',5,'u21E9',5,'u21EA',5,'u21EB',5,'u21EC',5,'u21ED',5,'u21EE',5,'u21EF',5,'u21F0',5,'u21F1',1,'u21F2',1,'u21F3',5,'u21F4',1,'u21F5',5,'u21F6',5,'u21F7',1,'u21F8',1,'u21F9',1,'u21FA',1,'u21FB',1,'u21FC',1,'u21FD',5,'u21FE',5,'u21FF":c.WIDEREL}}});MathJax.Ajax.loadComplete(a.optableDir+"/Arrows.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/BasicLatin.js
Normal file
18
mathjax/jax/element/mml/optable/BasicLatin.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/BasicLatin.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"!!":[1,0,b.BIN],"\'":c.ACCENT,"++":[0,0,b.BIN],"--":[0,0,b.BIN],"..":[0,0,b.BIN],"...":c.ORD},infix:{"!=":c.BIN4,"&&":c.BIN4,"**":[1,1,b.BIN],"*=":c.BIN4,"+=":c.BIN4,"-=":c.BIN4,"->":c.BIN4,"//":c.BIN4,"/=":c.BIN4,":=":c.BIN4,"<=":c.BIN4,"<>":[1,1,b.BIN],"==":c.BIN4,">=":c.BIN4,"@":c.ORD11,"||":c.BIN3}}});MathJax.Ajax.loadComplete(a.optableDir+"/BasicLatin.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/CombDiacritMarks.js
Normal file
18
mathjax/jax/element/mml/optable/CombDiacritMarks.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/CombDiacritMarks.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\\u0311":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiacritMarks.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/CombDiactForSymbols.js
Normal file
18
mathjax/jax/element/mml/optable/CombDiactForSymbols.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/CombDiactForSymbols.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\\u20DB":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiactForSymbols.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/Dingbats.js
Normal file
18
mathjax/jax/element/mml/optable/Dingbats.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/Dingbats.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\\u2713":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/Dingbats.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/GeneralPunctuation.js
Normal file
18
mathjax/jax/element/mml/optable/GeneralPunctuation.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/GeneralPunctuation.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\\u2018','":[0,0,b.OPEN,{fence:true','}],"\\u201C',1,'}]},postfix:{"\\u2019','":[0,0,b.CLOSE,{fence:true','}],"\\u201D',5,'}]}}});MathJax.Ajax.loadComplete(a.optableDir+"/GeneralPunctuation.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/GeometricShapes.js
Normal file
18
mathjax/jax/element/mml/optable/GeometricShapes.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/GeometricShapes.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\\u25A0','":c.BIN3,"\\','u25A1',1,'u25AA',1,'u25AB',1,'u25AD',1,'u25AE',1,'u25AF',1,'u25B0',1,'u25B1',1,'u25B2','":c.BIN4,"\\','u25B4',19,'u25B6',19,'u25B7',19,'u25B8',19,'u25BC',19,'u25BE',19,'u25C0',19,'u25C1',19,'u25C2',19,'u25C4',19,'u25C5',19,'u25C6',19,'u25C7',19,'u25C8',19,'u25C9',19,'u25CC',19,'u25CD',19,'u25CE',19,'u25CF',19,'u25D6',19,'u25D7',19,'u25E6":c.BIN4}}});MathJax.Ajax.loadComplete(a.optableDir+"/GeometricShapes.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/GreekAndCoptic.js
Normal file
18
mathjax/jax/element/mml/optable/GreekAndCoptic.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/GreekAndCoptic.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\\u03C3":c.ORD11}}});MathJax.Ajax.loadComplete(a.optableDir+"/GreekAndCoptic.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/Latin1Supplement.js
Normal file
18
mathjax/jax/element/mml/optable/Latin1Supplement.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/Latin1Supplement.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\\u00B0":c.ORD,"\\u00B4":c.ACCENT,"\\u00B8":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/Latin1Supplement.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/LetterlikeSymbols.js
Normal file
18
mathjax/jax/element/mml/optable/LetterlikeSymbols.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/LetterlikeSymbols.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\\u2145":c.ORD21,"\\u2146":[2,0,b.ORD],"\\u2147":c.ORD,"\\u2148":c.ORD,"\\u2149":c.ORD}}});MathJax.Ajax.loadComplete(a.optableDir+"/LetterlikeSymbols.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/MathOperators.js
Normal file
18
mathjax/jax/element/mml/optable/MathOperators.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/MathOperators.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\\u2204":c.ORD21,"\\u221B":c.ORD11,"\\u221C":c.ORD11,"\\u2221":c.ORD,"\\u2222":c.ORD,"\\u222C','":c.INTEGRAL,"\\','u222D',1,'u222F',1,'u2230',1,'u2231',1,'u2232',1,'u2233":c.INTEGRAL},infix:{"\\u2201":[1,2,b.ORD],"\\u2206','":c.BIN3,"\\','u220A','":c.REL,"\\','u220C',15,'u220D',15,'u220E',13,'u2214','":c.BIN4,"\\','u221F',15,'u2224',15,'u2226',15,'u2234',15,'u2235',15,'u2236',15,'u2237',15,'u2238',23,'u2239',15,'u223A',23,'u223B',15,'u223D',15,46,'\\u0331',13,'u223E',15,'u223F',13,'u2241',15,'u2242',15,57,'\\u0338',23,'u2244',15,'u2246',15,'u2247',15,'u2249',15,'u224A',15,'u224B',15,'u224C',15,'u224E',15,76,'\\u0338',23,'u224F',15,81,'\\u0338',23,'u2251',15,'u2252',15,'u2253',15,'u2254',15,'u2255',15,'u2256',15,'u2257',15,'u2258',15,'u2259',15,'u225A',15,'u225C',15,'u225D',15,'u225E',15,'u225F',15,'u2262',15,'u2263',15,'u2266',15,118,'\\u0338',23,'u2267',15,'u2268',15,'u2269',15,'u226A\\u0338',23,'u226B\\u0338',23,'u226C',15,'u226D',15,'u226E',15,'u226F',15,'u2270',15,'u2271',15,'u2272',15,'u2273',15,'u2274',15,'u2275',15,'u2276',15,'u2277',15,'u2278',15,'u2279',15,'u227C',15,'u227D',15,'u227E',15,'u227F',15,167,'\\u0338',23,'u2280',15,'u2281',15,'u2282\\u20D2',23,'u2283\\u20D2',23,'u2284',15,'u2285',15,'u2288',15,'u2289',15,'u228A',15,'u228B',15,'u228C',23,'u228D',23,'u228F',15,196,'\\u0338',23,'u2290',15,201,'\\u0338',23,'u229A',23,'u229B',23,'u229C',23,'u229D',23,'u229E',23,'u229F',23,'u22A0',23,'u22A1',23,'u22A6',15,'u22A7',15,'u22A9',15,'u22AA',15,'u22AB',15,'u22AC',15,'u22AD',15,'u22AE',15,'u22AF',15,'u22B0',15,'u22B1',15,'u22B2',15,'u22B3',15,'u22B4',15,'u22B5',15,'u22B6',15,'u22B7',15,'u22B8',15,'u22B9',15,'u22BA',23,'u22BB',23,'u22BC',23,'u22BD',23,'u22BE',13,'u22BF',13,'u22C7',23,'u22C9',23,'u22CA',23,'u22CB',23,'u22CC',23,'u22CD',15,'u22CE',23,'u22CF',23,'u22D0',15,'u22D1',15,'u22D2',23,'u22D3',23,'u22D4',15,'u22D5',15,'u22D6',15,'u22D7',15,'u22D8',15,'u22D9',15,'u22DA',15,'u22DB',15,'u22DC',15,'u22DD',15,'u22DE',15,'u22DF',15,'u22E0',15,'u22E1',15,'u22E2',15,'u22E3',15,'u22E4',15,'u22E5',15,'u22E6',15,'u22E7',15,'u22E8',15,'u22E9',15,'u22EA',15,'u22EB',15,'u22EC',15,'u22ED',15,'u22F0',15,'u22F2',15,'u22F3',15,'u22F4',15,'u22F5',15,'u22F6',15,'u22F7',15,'u22F8',15,'u22F9',15,'u22FA',15,'u22FB',15,'u22FC',15,'u22FD',15,'u22FE',15,'u22FF":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/MathOperators.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/MiscMathSymbolsA.js
Normal file
18
mathjax/jax/element/mml/optable/MiscMathSymbolsA.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\\u27E6":c.OPEN},postfix:{"\\u27E7":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscMathSymbolsA.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/MiscMathSymbolsB.js
Normal file
18
mathjax/jax/element/mml/optable/MiscMathSymbolsB.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\\u2983','":c.OPEN,"\\','u2985',1,'u2987',1,'u2989',1,'u298B',1,'u298D',1,'u298F',1,'u2991',1,'u2993',1,'u2995',1,'u2997',1,'u29FC":c.OPEN},postfix:{"\\u2984','":c.CLOSE,"\\','u2986',23,'u2988',23,'u298A',23,'u298C',23,'u298E',23,'u2990',23,'u2992',23,'u2994',23,'u2996',23,'u2998',23,'u29FD":c.CLOSE},infix:{"\\u2980":c.ORD,"\\u2981','":c.BIN3,"\\','u2982',45,'u2999',45,'u299A',45,'u299B',45,'u299C',45,'u299D',45,'u299E',45,'u299F',45,'u29A0',45,'u29A1',45,'u29A2',45,'u29A3',45,'u29A4',45,'u29A5',45,'u29A6',45,'u29A7',45,'u29A8',45,'u29A9',45,'u29AA',45,'u29AB',45,'u29AC',45,'u29AD',45,'u29AE',45,'u29AF',45,'u29B0',45,'u29B1',45,'u29B2',45,'u29B3',45,'u29B4',45,'u29B5',45,'u29B6','":c.BIN4,"\\','u29B7',107,'u29B8',107,'u29B9',107,'u29BA',107,'u29BB',107,'u29BC',107,'u29BD',107,'u29BE',107,'u29BF',107,'u29C0','":c.REL,"\\','u29C1',127,'u29C2',45,'u29C3',45,'u29C4',107,'u29C5',107,'u29C6',107,'u29C7',107,'u29C8',107,'u29C9',45,'u29CA',45,'u29CB',45,'u29CC',45,'u29CD',45,'u29CE',127,'u29CF',127,156,'\\u0338',107,'u29D0',127,161,'\\u0338',107,'u29D1',127,'u29D2',127,'u29D3',127,'u29D4',127,'u29D5',127,'u29D6',107,'u29D7',107,'u29D8',45,'u29D9',45,'u29DB',45,'u29DC',45,'u29DD',45,'u29DE',127,'u29DF',45,'u29E0',45,'u29E1',127,'u29E2',107,'u29E3',127,'u29E4',127,'u29E5',127,'u29E6',127,'u29E7',45,'u29E8',45,'u29E9',45,'u29EA',45,'u29EB',45,'u29EC',45,'u29ED',45,'u29EE',45,'u29EF',45,'u29F0',45,'u29F1',45,'u29F2',45,'u29F3',45,'u29F4',127,'u29F5',107,'u29F6',107,'u29F7',107,'u29F8',45,'u29F9',45,'u29FA',45,'u29FB',45,'u29FE',107,'u29FF":c.BIN4}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscMathSymbolsB.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/MiscTechnical.js
Normal file
18
mathjax/jax/element/mml/optable/MiscTechnical.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/MiscTechnical.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\\u23B4','":c.WIDEACCENT',',"\\u23B5',1,',"\\u23DC',1,',"\\u23DD',1,'}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscTechnical.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/SpacingModLetters.js
Normal file
18
mathjax/jax/element/mml/optable/SpacingModLetters.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/SpacingModLetters.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\\u02DA":c.ACCENT,"\\u02DD":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/SpacingModLetters.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/SuppMathOperators.js
Normal file
18
mathjax/jax/element/mml/optable/SuppMathOperators.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/SuppMathOperators.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\\u2A03','":c.OP,"\\','u2A05',1,'u2A07',1,'u2A08',1,'u2A09',1,'u2A0A',1,'u2A0B','":c.INTEGRAL2,"\\','u2A0C":c.INTEGRAL,"\\u2A0D',13,'u2A0E',13,'u2A0F',13,'u2A10',1,'u2A11',1,'u2A12',1,'u2A13',1,'u2A14',1,'u2A15',13,'u2A16',13,'u2A17',13,'u2A18',13,'u2A19',13,'u2A1A',13,'u2A1B',13,'u2A1C',13,'u2AFC',1,'u2AFF":c.OP},infix:{"\\u2A1D','":c.BIN3,"\\','u2A1E',49,'u2A1F',49,'u2A20',49,'u2A21',49,'u2A22','":c.BIN4,"\\','u2A23',59,'u2A24',59,'u2A25',59,'u2A26',59,'u2A27',59,'u2A28',59,'u2A29',59,'u2A2A',59,'u2A2B',59,'u2A2C',59,'u2A2D',59,'u2A2E',59,'u2A30',59,'u2A31',59,'u2A32',59,'u2A33',59,'u2A34',59,'u2A35',59,'u2A36',59,'u2A37',59,'u2A38',59,'u2A39',59,'u2A3A',59,'u2A3B',59,'u2A3C',59,'u2A3D',59,'u2A3E',59,'u2A40',59,'u2A41',59,'u2A42',59,'u2A43',59,'u2A44',59,'u2A45',59,'u2A46',59,'u2A47',59,'u2A48',59,'u2A49',59,'u2A4A',59,'u2A4B',59,'u2A4C',59,'u2A4D',59,'u2A4E',59,'u2A4F',59,'u2A50',59,'u2A51',59,'u2A52',59,'u2A53',59,'u2A54',59,'u2A55',59,'u2A56',59,'u2A57',59,'u2A58',59,'u2A59','":c.REL,"\\','u2A5A',59,'u2A5B',59,'u2A5C',59,'u2A5D',59,'u2A5E',59,'u2A5F',59,'u2A60',59,'u2A61',59,'u2A62',59,'u2A63',59,'u2A64',59,'u2A65',59,'u2A66',165,'u2A67',165,'u2A68',165,'u2A69',165,'u2A6A',165,'u2A6B',165,'u2A6C',165,'u2A6D',165,'u2A6E',165,'u2A6F',165,'u2A70',165,'u2A71',59,'u2A72',59,'u2A73',165,'u2A74',165,'u2A75',165,'u2A76',165,'u2A77',165,'u2A78',165,'u2A79',165,'u2A7A',165,'u2A7B',165,'u2A7C',165,'u2A7D',165,236,'\\u0338',59,'u2A7E',165,241,'\\u0338',59,'u2A7F',165,'u2A80',165,'u2A81',165,'u2A82',165,'u2A83',165,'u2A84',165,'u2A85',165,'u2A86',165,'u2A87',165,'u2A88',165,'u2A89',165,'u2A8A',165,'u2A8B',165,'u2A8C',165,'u2A8D',165,'u2A8E',165,'u2A8F',165,'u2A90',165,'u2A91',165,'u2A92',165,'u2A93',165,'u2A94',165,'u2A95',165,'u2A96',165,'u2A97',165,'u2A98',165,'u2A99',165,'u2A9A',165,'u2A9B',165,'u2A9C',165,'u2A9D',165,'u2A9E',165,'u2A9F',165,'u2AA0',165,'u2AA1',165,314,'\\u0338',59,'u2AA2',165,'u2AA2\\u0338',59,'u2AA3',165,'u2AA4',165,'u2AA5',165,'u2AA6',165,'u2AA7',165,'u2AA8',165,'u2AA9',165,'u2AAA',165,'u2AAB',165,'u2AAC',165,'u2AAD',165,'u2AAE',165,'u2AAF\\u0338',59,'u2AB0\\u0338',59,'u2AB1',165,'u2AB2',165,'u2AB3',165,'u2AB4',165,'u2AB5',165,'u2AB6',165,'u2AB7',165,'u2AB8',165,'u2AB9',165,'u2ABA',165,'u2ABB',165,'u2ABC',165,'u2ABD',165,'u2ABE',165,'u2ABF',165,'u2AC0',165,'u2AC1',165,'u2AC2',165,'u2AC3',165,'u2AC4',165,'u2AC5',165,'u2AC6',165,'u2AC7',165,'u2AC8',165,'u2AC9',165,'u2ACA',165,'u2ACB',165,'u2ACC',165,'u2ACD',165,'u2ACE',165,'u2ACF',165,'u2AD0',165,'u2AD1',165,'u2AD2',165,'u2AD3',165,'u2AD4',165,'u2AD5',165,'u2AD6',165,'u2AD7',165,'u2AD8',165,'u2AD9',165,'u2ADA',165,'u2ADB',165,'u2ADC',165,'u2ADD',165,'u2ADE',165,'u2ADF',165,'u2AE0',165,'u2AE1',165,'u2AE2',165,'u2AE3',165,'u2AE4',165,'u2AE5',165,'u2AE6',165,'u2AE7',165,'u2AE8',165,'u2AE9',165,'u2AEA',165,'u2AEB',165,'u2AEC',165,'u2AED',165,'u2AEE',165,'u2AEF',165,'u2AF0',165,'u2AF1',165,'u2AF2',165,'u2AF3',165,'u2AF4',59,'u2AF5',59,'u2AF6',59,'u2AF7',165,'u2AF8',165,'u2AF9',165,'u2AFA',165,'u2AFB',59,'u2AFD',59,'u2AFE":c.BIN3}}});MathJax.Ajax.loadComplete(a.optableDir+"/SuppMathOperators.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/element/mml/optable/SupplementalArrowsB.js
Normal file
18
mathjax/jax/element/mml/optable/SupplementalArrowsB.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/element/mml/optable/SupplementalArrowsB.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\\u2900','":c.REL,"\\','u2901',1,'u2902',1,'u2903',1,'u2904',1,'u2905',1,'u2906',1,'u2907',1,'u2908',1,'u2909',1,'u290A','":c.WIDEREL,"\\','u290B',21,'u290C',21,'u290D',21,'u290E',21,'u290F',21,'u2910',21,'u2911',1,'u2912',21,'u2913',21,'u2914',1,'u2915',1,'u2916',1,'u2917',1,'u2918',1,'u2919',1,'u291A',1,'u291B',1,'u291C',1,'u291D',1,'u291E',1,'u291F',1,'u2920',1,'u2921',21,'u2922',21,'u2923',1,'u2924',1,'u2925',1,'u2926',1,'u2927',1,'u2928',1,'u2929',1,'u292A',1,'u292B',1,'u292C',1,'u292D',1,'u292E',1,'u292F',1,'u2930',1,'u2931',1,'u2932',1,'u2933',1,'u2934',1,'u2935',1,'u2936',1,'u2937',1,'u2938',1,'u2939',1,'u293A',1,'u293B',1,'u293C',1,'u293D',1,'u293E',1,'u293F',1,'u2940',1,'u2941',1,'u2942',1,'u2943',1,'u2944',1,'u2945',1,'u2946',1,'u2947',1,'u2948',1,'u2949',1,'u294A',1,'u294B',1,'u294C',1,'u294D',1,'u294E":c.RELACCENT,"\\u294F',21,'u2950',21,'u2951',21,'u2952',21,'u2953',21,'u2954',21,'u2955',21,'u2956',21,'u2957',21,'u2958',21,'u2959',21,'u295A',21,'u295B',21,'u295C',21,'u295D',21,'u295E',21,'u295F',21,'u2960',21,'u2961',21,'u2962',1,'u2963',1,'u2964',1,'u2965',1,'u2966',1,'u2967',1,'u2968',1,'u2969',1,'u296A',1,'u296B',1,'u296C',1,'u296D',1,'u296E',21,'u296F',21,'u2970',1,'u2971',1,'u2972',1,'u2973',1,'u2974',1,'u2975',1,'u2976',1,'u2977',1,'u2978',1,'u2979',1,'u297A',1,'u297B',1,'u297C',1,'u297D',1,'u297E',1,'u297F":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/SupplementalArrowsB.js")})(MathJax.ElementJax.mml);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/config.js
Normal file
18
mathjax/jax/input/MathML/config.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/config.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.InputJax','.MathML','=',0,'({name:"','MathML",','version:"1.0",directory:',0,'.directory+"/',5,'extensionDir',':',0,'.',10,'+"/',5,'entityDir:',0,8,'MathML/entities",require:[MathJax.ElementJax',8,'mml/jax.js"],config:{useMathMLspacing:false}});',0,1,'.Register("math/mml");',0,1,'.loadComplete("config.js");']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/a.js
Normal file
18
mathjax/jax/input/MathML/entities/a.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/a.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{AElig:"\\u00C6",Aacute:"\\u00C1",Abreve:"\\u0102",Acirc:"\\u00C2",Acy:"\\u0410",Agrave:"\\u00C0",Amacr:"\\u0100",And:"\\u2A53",Aogon:"\\u0104",Aring:"\\u00C5",Assign:"\\u2254",Atilde:"\\u00C3",Auml:"\\u00C4",aacute:"\\u00E1",abreve:"\\u0103",ac:"\\u223E",acE:"\\u223E\\u0333",acd:"\\u223F",acirc:"\\u00E2",acy:"\\u0430",aelig:"\\u00E6",af:"\\u2061",agrave:"\\u00E0",amacr:"\\u0101",amp:"\\u0026",andand:"\\u2A55",andd:"\\u2A5C",andslope:"\\u2A58",andv:"\\u2A5A",ange:"\\u29A4",angle:"\\u2220",angmsdaa:"\\u29A8",angmsdab:"\\u29A9",angmsdac:"\\u29AA",angmsdad:"\\u29AB",angmsdae:"\\u29AC",angmsdaf:"\\u29AD",angmsdag:"\\u29AE",angmsdah:"\\u29AF",angrt:"\\u221F",angrtvb:"\\u22BE",angrtvbd:"\\u299D",angst:"\\u212B",angzarr:"\\u237C",aogon:"\\u0105",ap:"\\u2248",apE:"\\u2A70",apacir:"\\u2A6F",apid:"\\u224B",apos:"\\u0027",approx:"\\u2248",approxeq:"\\u224A",aring:"\\u00E5",ast:"\\u002A",asymp:"\\u2248",asympeq:"\\u224D",atilde:"\\u00E3",auml:"\\u00E4",awconint:"\\u2233",awint:"\\u2A11"});MathJax.Ajax.loadComplete(a.entityDir+"/a.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/b.js
Normal file
18
mathjax/jax/input/MathML/entities/b.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/b.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Barv:"\\u2AE7",Barwed:"\\u2306",Bcy:"\\u0411",Bernoullis:"\\u212C",Bumpeq:"\\u224E",bNot:"\\u2AED",backcong:"\\u224C",backepsilon:"\\u03F6",barvee:"\\u22BD",barwed:"\\u2305",barwedge:"\\u2305",bbrk:"\\u23B5",bbrktbrk:"\\u23B6",bcong:"\\u224C",bcy:"\\u0431",becaus:"\\u2235",because:"\\u2235",bemptyv:"\\u29B0",bepsi:"\\u03F6",bernou:"\\u212C",bigcap:"\\u22C2",bigcup:"\\u22C3",bigvee:"\\u22C1",bigwedge:"\\u22C0",bkarow:"\\u290D",blacksquare:"\\u25AA",blacktriangleright:"\\u25B8",blank:"\\u2423",blk12:"\\u2592",blk14:"\\u2591",blk34:"\\u2593",block:"\\u2588",bne:"\\u003D\\u20E5",bnequiv:"\\u2261\\u20E5",bnot:"\\u2310",bot:"\\u22A5",bottom:"\\u22A5",boxDL:"\\u2557",boxDR:"\\u2554",boxDl:"\\u2556",boxDr:"\\u2553",boxH:"\\u2550",boxHD:"\\u2566",boxHU:"\\u2569",boxHd:"\\u2564",boxHu:"\\u2567",boxUL:"\\u255D",boxUR:"\\u255A",boxUl:"\\u255C",boxUr:"\\u2559",boxV:"\\u2551",boxVH:"\\u256C",boxVL:"\\u2563",boxVR:"\\u2560",boxVh:"\\u256B",boxVl:"\\u2562",boxVr:"\\u255F",boxbox:"\\u29C9",boxdL:"\\u2555",boxdR:"\\u2552",boxh:"\\u2500",boxhD:"\\u2565",boxhU:"\\u2568",boxhd:"\\u252C",boxhu:"\\u2534",boxuL:"\\u255B",boxuR:"\\u2558",boxv:"\\u2502",boxvH:"\\u256A",boxvL:"\\u2561",boxvR:"\\u255E",boxvh:"\\u253C",boxvl:"\\u2524",boxvr:"\\u251C",bprime:"\\u2035",breve:"\\u02D8",brvbar:"\\u00A6",bsemi:"\\u204F",bsim:"\\u223D",bsime:"\\u22CD",bsolb:"\\u29C5",bsolhsub:"\\u005C\\u2282",bullet:"\\u2022",bump:"\\u224E",bumpE:"\\u2AAE",bumpe:"\\u224F",bumpeq:"\\u224F"});MathJax.Ajax.loadComplete(a.entityDir+"/b.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/c.js
Normal file
18
mathjax/jax/input/MathML/entities/c.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/c.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{CHcy:"\\u0427",Cacute:"\\u0106",CapitalDifferentialD:"\\u2145",Cayleys:"\\u212D",Ccaron:"\\u010C",Ccedil:"\\u00C7",Ccirc:"\\u0108",Cconint:"\\u2230",Cdot:"\\u010A",Cedilla:"\\u00B8",ClockwiseContourIntegral:"\\u2232",CloseCurlyDoubleQuote:"\\u201D",CloseCurlyQuote:"\\u2019",Colon:"\\u2237",Colone:"\\u2A74",Conint:"\\u222F",CounterClockwiseContourIntegral:"\\u2233",cacute:"\\u0107",capand:"\\u2A44",capbrcup:"\\u2A49",capcap:"\\u2A4B",capcup:"\\u2A47",capdot:"\\u2A40",caps:"\\u2229\\uFE00",caret:"\\u2041",caron:"\\u02C7",ccaps:"\\u2A4D",ccaron:"\\u010D",ccedil:"\\u00E7",ccirc:"\\u0109",ccups:"\\u2A4C",ccupssm:"\\u2A50",cdot:"\\u010B",cedil:"\\u00B8",cemptyv:"\\u29B2",cent:"\\u00A2",centerdot:"\\u00B7",chcy:"\\u0447",checkmark:"\\u2713",cir:"\\u25CB",cirE:"\\u29C3",cire:"\\u2257",cirfnint:"\\u2A10",cirmid:"\\u2AEF",cirscir:"\\u29C2",clubsuit:"\\u2663",colone:"\\u2254",coloneq:"\\u2254",comma:"\\u002C",commat:"\\u0040",compfn:"\\u2218",complement:"\\u2201",complexes:"\\u2102",cong:"\\u2245",congdot:"\\u2A6D",conint:"\\u222E",coprod:"\\u2210",copy:"\\u00A9",copysr:"\\u2117",cross:"\\u2717",csub:"\\u2ACF",csube:"\\u2AD1",csup:"\\u2AD0",csupe:"\\u2AD2",cudarrl:"\\u2938",cudarrr:"\\u2935",cularrp:"\\u293D",cupbrcap:"\\u2A48",cupcap:"\\u2A46",cupcup:"\\u2A4A",cupdot:"\\u228D",cupor:"\\u2A45",cups:"\\u222A\\uFE00",curarrm:"\\u293C",curlyeqprec:"\\u22DE",curlyeqsucc:"\\u22DF",curren:"\\u00A4",curvearrowleft:"\\u21B6",curvearrowright:"\\u21B7",cuvee:"\\u22CE",cuwed:"\\u22CF",cwconint:"\\u2232",cwint:"\\u2231",cylcty:"\\u232D"});MathJax.Ajax.loadComplete(a.entityDir+"/c.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/d.js
Normal file
18
mathjax/jax/input/MathML/entities/d.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/d.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{DD:"\\u2145",DDotrahd:"\\u2911",DJcy:"\\u0402",DScy:"\\u0405",DZcy:"\\u040F",Darr:"\\u21A1",Dashv:"\\u2AE4",Dcaron:"\\u010E",Dcy:"\\u0414",DiacriticalAcute:"\\u00B4",DiacriticalDot:"\\u02D9",DiacriticalDoubleAcute:"\\u02DD",DiacriticalGrave:"\\u0060",DiacriticalTilde:"\\u02DC",Dot:"\\u00A8",DotDot:"\\u20DC",DoubleContourIntegral:"\\u222F",DoubleDownArrow:"\\u21D3",DoubleLeftArrow:"\\u21D0",DoubleLeftRightArrow:"\\u21D4",DoubleLeftTee:"\\u2AE4",DoubleLongLeftArrow:"\\u27F8",DoubleLongLeftRightArrow:"\\u27FA",DoubleLongRightArrow:"\\u27F9",DoubleRightArrow:"\\u21D2",DoubleUpArrow:"\\u21D1",DoubleUpDownArrow:"\\u21D5",DownArrowBar:"\\u2913",DownArrowUpArrow:"\\u21F5",DownBreve:"\\u0311",DownLeftRightVector:"\\u2950",DownLeftTeeVector:"\\u295E",DownLeftVectorBar:"\\u2956",DownRightTeeVector:"\\u295F",DownRightVectorBar:"\\u2957",DownTeeArrow:"\\u21A7",Dstrok:"\\u0110",dArr:"\\u21D3",dHar:"\\u2965",darr:"\\u2193",dash:"\\u2010",dashv:"\\u22A3",dbkarow:"\\u290F",dblac:"\\u02DD",dcaron:"\\u010F",dcy:"\\u0434",dd:"\\u2146",ddagger:"\\u2021",ddotseq:"\\u2A77",demptyv:"\\u29B1",dfisht:"\\u297F",dharl:"\\u21C3",dharr:"\\u21C2",diam:"\\u22C4",diamond:"\\u22C4",diamondsuit:"\\u2666",diams:"\\u2666",die:"\\u00A8",disin:"\\u22F2",divide:"\\u00F7",divonx:"\\u22C7",djcy:"\\u0452",dlcorn:"\\u231E",dlcrop:"\\u230D",dollar:"\\u0024",doteq:"\\u2250",dotminus:"\\u2238",doublebarwedge:"\\u2306",downarrow:"\\u2193",downdownarrows:"\\u21CA",downharpoonleft:"\\u21C3",downharpoonright:"\\u21C2",drbkarow:"\\u2910",drcorn:"\\u231F",drcrop:"\\u230C",dscy:"\\u0455",dsol:"\\u29F6",dstrok:"\\u0111",dtri:"\\u25BF",dtrif:"\\u25BE",duarr:"\\u21F5",duhar:"\\u296F",dwangle:"\\u29A6",dzcy:"\\u045F",dzigrarr:"\\u27FF"});MathJax.Ajax.loadComplete(a.entityDir+"/d.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/e.js
Normal file
18
mathjax/jax/input/MathML/entities/e.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/e.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{ENG:"\\u014A",ETH:"\\u00D0",Eacute:"\\u00C9",Ecaron:"\\u011A",Ecirc:"\\u00CA",Ecy:"\\u042D",Edot:"\\u0116",Egrave:"\\u00C8",Emacr:"\\u0112",EmptySmallSquare:"\\u25FB",EmptyVerySmallSquare:"\\u25AB",Eogon:"\\u0118",Equal:"\\u2A75",Esim:"\\u2A73",Euml:"\\u00CB",eDDot:"\\u2A77",eDot:"\\u2251",eacute:"\\u00E9",easter:"\\u2A6E",ecaron:"\\u011B",ecirc:"\\u00EA",ecolon:"\\u2255",ecy:"\\u044D",edot:"\\u0117",ee:"\\u2147",eg:"\\u2A9A",egrave:"\\u00E8",egsdot:"\\u2A98",el:"\\u2A99",elinters:"\\uFFFD",elsdot:"\\u2A97",emacr:"\\u0113",emptyset:"\\u2205",emptyv:"\\u2205",emsp:"\\u2003",emsp13:"\\u2004",emsp14:"\\u2005",eng:"\\u014B",ensp:"\\u2002",eogon:"\\u0119",epar:"\\u22D5",eparsl:"\\u29E3",eplus:"\\u2A71",eqcirc:"\\u2256",eqcolon:"\\u2255",eqsim:"\\u2242",eqslantgtr:"\\u2A96",eqslantless:"\\u2A95",equals:"\\u003D",equest:"\\u225F",equiv:"\\u2261",equivDD:"\\u2A78",eqvparsl:"\\u29E5",erarr:"\\u2971",esdot:"\\u2250",esim:"\\u2242",euml:"\\u00EB",excl:"\\u0021",exist:"\\u2203",expectation:"\\u2130",exponentiale:"\\u2147"});MathJax.Ajax.loadComplete(a.entityDir+"/e.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/f.js
Normal file
18
mathjax/jax/input/MathML/entities/f.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/f.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Fcy:"\\u0424",FilledSmallSquare:"\\u25FC",Fouriertrf:"\\u2131",fallingdotseq:"\\u2252",fcy:"\\u0444",female:"\\u2640",ffilig:"\\uFB03",fflig:"\\uFB00",ffllig:"\\uFB04",filig:"\\uFB01",fllig:"\\uFB02",fltns:"\\u25B1",fnof:"\\u0192",forall:"\\u2200",forkv:"\\u2AD9",fpartint:"\\u2A0D",frac12:"\\u00BD",frac13:"\\u2153",frac14:"\\u00BC",frac15:"\\u2155",frac16:"\\u2159",frac18:"\\u215B",frac23:"\\u2154",frac25:"\\u2156",frac34:"\\u00BE",frac35:"\\u2157",frac38:"\\u215C",frac45:"\\u2158",frac56:"\\u215A",frac58:"\\u215D",frac78:"\\u215E"});MathJax.Ajax.loadComplete(a.entityDir+"/f.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/fr.js
Normal file
18
mathjax/jax/input/MathML/entities/fr.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/fr.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Afr',':"\\uD835\\','uDD04",Bfr',1,'uDD05",Cfr:"\\u212D",Dfr',1,'uDD07",Efr',1,'uDD08",Ffr',1,'uDD09",Gfr',1,'uDD0A",Hfr:"\\u210C",Ifr:"\\u2111",Jfr',1,'uDD0D",Kfr',1,'uDD0E",Lfr',1,'uDD0F",Mfr',1,'uDD10",Nfr',1,'uDD11",Ofr',1,'uDD12",Pfr',1,'uDD13",Qfr',1,'uDD14",Rfr:"\\u211C",Sfr',1,'uDD16",Tfr',1,'uDD17",Ufr',1,'uDD18",Vfr',1,'uDD19",Wfr',1,'uDD1A",Xfr',1,'uDD1B",Yfr',1,'uDD1C",Zfr:"\\u2128",afr',1,'uDD1E",bfr',1,'uDD1F",cfr',1,'uDD20",dfr',1,'uDD21",efr',1,'uDD22",ffr',1,'uDD23",gfr',1,'uDD24",hfr',1,'uDD25",ifr',1,'uDD26",jfr',1,'uDD27",kfr',1,'uDD28",lfr',1,'uDD29",mfr',1,'uDD2A",nfr',1,'uDD2B",ofr',1,'uDD2C",pfr',1,'uDD2D",qfr',1,'uDD2E",rfr',1,'uDD2F",sfr',1,'uDD30",tfr',1,'uDD31",ufr',1,'uDD32",vfr',1,'uDD33",wfr',1,'uDD34",xfr',1,'uDD35",yfr',1,'uDD36",zfr',1,'uDD37"});MathJax.Ajax.loadComplete(a.entityDir+"/fr.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/g.js
Normal file
18
mathjax/jax/input/MathML/entities/g.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/g.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{GJcy:"\\u0403",Gammad:"\\u03DC",Gbreve:"\\u011E",Gcedil:"\\u0122",Gcirc:"\\u011C",Gcy:"\\u0413",Gdot:"\\u0120",GreaterGreater:"\\u2AA2",Gt:"\\u226B",gE:"\\u2267",gacute:"\\u01F5",gammad:"\\u03DD",gbreve:"\\u011F",gcirc:"\\u011D",gcy:"\\u0433",gdot:"\\u0121",ge:"\\u2265",gel:"\\u22DB",geq:"\\u2265",geqq:"\\u2267",geqslant:"\\u2A7E",ges:"\\u2A7E",gescc:"\\u2AA9",gesdot:"\\u2A80",gesdoto:"\\u2A82",gesdotol:"\\u2A84",gesl:"\\u22DB\\uFE00",gesles:"\\u2A94",gg:"\\u226B",ggg:"\\u22D9",gjcy:"\\u0453",gl:"\\u2277",glE:"\\u2A92",gla:"\\u2AA5",glj:"\\u2AA4",gnapprox:"\\u2A8A",gneq:"\\u2A88",gneqq:"\\u2269",grave:"\\u0060",gsim:"\\u2273",gsime:"\\u2A8E",gsiml:"\\u2A90",gtcc:"\\u2AA7",gtcir:"\\u2A7A",gtlPar:"\\u2995",gtquest:"\\u2A7C",gtrapprox:"\\u2A86",gtrarr:"\\u2978",gtrdot:"\\u22D7",gtreqless:"\\u22DB",gtreqqless:"\\u2A8C",gtrless:"\\u2277",gtrsim:"\\u2273",gvertneqq',':"\\u2269\\uFE00','",gvnE',1,'"});MathJax.Ajax.loadComplete(a.entityDir+"/g.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/h.js
Normal file
18
mathjax/jax/input/MathML/entities/h.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/h.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{HARDcy:"\\u042A",Hcirc:"\\u0124",HilbertSpace:"\\u210B",HorizontalLine:"\\u2500",Hstrok:"\\u0126",hArr:"\\u21D4",hairsp:"\\u200A",half:"\\u00BD",hamilt:"\\u210B",hardcy:"\\u044A",harr:"\\u2194",harrcir:"\\u2948",hcirc:"\\u0125",hearts:"\\u2665",heartsuit:"\\u2665",hercon:"\\u22B9",hksearow:"\\u2925",hkswarow:"\\u2926",hoarr:"\\u21FF",homtht:"\\u223B",horbar:"\\u2015",hslash:"\\u210F",hstrok:"\\u0127",hybull:"\\u2043",hyphen:"\\u2010"});MathJax.Ajax.loadComplete(a.entityDir+"/h.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/i.js
Normal file
18
mathjax/jax/input/MathML/entities/i.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/i.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{IEcy:"\\u0415",IJlig:"\\u0132",IOcy:"\\u0401",Iacute:"\\u00CD",Icirc:"\\u00CE",Icy:"\\u0418",Idot:"\\u0130",Igrave:"\\u00CC",Imacr:"\\u012A",Implies:"\\u21D2",Int:"\\u222C",Iogon:"\\u012E",Itilde:"\\u0128",Iukcy:"\\u0406",Iuml:"\\u00CF",iacute:"\\u00ED",ic:"\\u2063",icirc:"\\u00EE",icy:"\\u0438",iecy:"\\u0435",iexcl:"\\u00A1",iff:"\\u21D4",igrave:"\\u00EC",ii:"\\u2148",iiiint:"\\u2A0C",iiint:"\\u222D",iinfin:"\\u29DC",iiota:"\\u2129",ijlig:"\\u0133",imacr:"\\u012B",image:"\\u2111",imagline:"\\u2110",imagpart:"\\u2111",imof:"\\u22B7",imped:"\\u01B5","in":"\\u2208",incare:"\\u2105",infintie:"\\u29DD",inodot:"\\u0131","int":"\\u222B",integers:"\\u2124",intercal:"\\u22BA",intlarhk:"\\u2A17",intprod:"\\u2A3C",iocy:"\\u0451",iogon:"\\u012F",iprod:"\\u2A3C",iquest:"\\u00BF",isin:"\\u2208",isinE:"\\u22F9",isindot:"\\u22F5",isins:"\\u22F4",isinsv:"\\u22F3",isinv:"\\u2208",it:"\\u2062",itilde:"\\u0129",iukcy:"\\u0456",iuml:"\\u00EF"});MathJax.Ajax.loadComplete(a.entityDir+"/i.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/j.js
Normal file
18
mathjax/jax/input/MathML/entities/j.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/j.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Jcirc:"\\u0134",Jcy:"\\u0419",Jsercy:"\\u0408",Jukcy:"\\u0404",jcirc:"\\u0135",jcy:"\\u0439",jmath:"\\u006A",jsercy:"\\u0458",jukcy:"\\u0454"});MathJax.Ajax.loadComplete(a.entityDir+"/j.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/k.js
Normal file
18
mathjax/jax/input/MathML/entities/k.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/k.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{KHcy:"\\u0425",KJcy:"\\u040C",Kcedil:"\\u0136",Kcy:"\\u041A",kcedil:"\\u0137",kcy:"\\u043A",kgreen:"\\u0138",khcy:"\\u0445",kjcy:"\\u045C"});MathJax.Ajax.loadComplete(a.entityDir+"/k.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/l.js
Normal file
18
mathjax/jax/input/MathML/entities/l.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/l.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{LJcy:"\\u0409",Lacute:"\\u0139",Lang:"\\u300A",Laplacetrf:"\\u2112",Lcaron:"\\u013D",Lcedil:"\\u013B",Lcy:"\\u041B",LeftArrowBar:"\\u21E4",LeftDoubleBracket:"\\u301A",LeftDownTeeVector:"\\u2961",LeftDownVectorBar:"\\u2959",LeftRightVector:"\\u294E",LeftTeeArrow:"\\u21A4",LeftTeeVector:"\\u295A",LeftTriangleBar:"\\u29CF",LeftUpDownVector:"\\u2951",LeftUpTeeVector:"\\u2960",LeftUpVectorBar:"\\u2958",LeftVectorBar:"\\u2952",LessLess:"\\u2AA1",Lmidot:"\\u013F",LowerLeftArrow:"\\u2199",LowerRightArrow:"\\u2198",Lstrok:"\\u0141",Lt:"\\u226A",lAarr:"\\u21DA",lArr:"\\u21D0",lAtail:"\\u291B",lBarr:"\\u290E",lE:"\\u2266",lHar:"\\u2962",lacute:"\\u013A",laemptyv:"\\u29B4",lagran:"\\u2112",lang:"\\u2329",langd:"\\u2991",langle:"\\u2329",laquo:"\\u00AB",larr:"\\u2190",larrb:"\\u21E4",larrbfs:"\\u291F",larrfs:"\\u291D",larrhk:"\\u21A9",larrpl:"\\u2939",larrsim:"\\u2973",lat:"\\u2AAB",latail:"\\u2919",late:"\\u2AAD",lates:"\\u2AAD\\uFE00",lbarr:"\\u290C",lbbrk:"\\u3014",lbrke:"\\u298B",lbrksld:"\\u298F",lbrkslu:"\\u298D",lcaron:"\\u013E",lcedil:"\\u013C",lceil:"\\u2308",lcub:"\\u007B",lcy:"\\u043B",ldca:"\\u2936",ldquo:"\\u201C",ldquor:"\\u201E",ldrdhar:"\\u2967",ldrushar:"\\u294B",ldsh:"\\u21B2",leftarrow:"\\u2190",leftarrowtail:"\\u21A2",leftharpoondown:"\\u21BD",leftharpoonup:"\\u21BC",leftrightarrow:"\\u2194",leftrightarrows:"\\u21C6",leftrightharpoons:"\\u21CB",leftrightsquigarrow:"\\u21AD",leg:"\\u22DA",leq:"\\u2264",leqq:"\\u2266",leqslant:"\\u2A7D",les:"\\u2A7D",lescc:"\\u2AA8",lesdot:"\\u2A7F",lesdoto:"\\u2A81",lesdotor:"\\u2A83",lesg:"\\u22DA\\uFE00",lesges:"\\u2A93",lessapprox:"\\u2A85",lesseqgtr:"\\u22DA",lesseqqgtr:"\\u2A8B",lessgtr:"\\u2276",lesssim:"\\u2272",lfisht:"\\u297C",lfloor:"\\u230A",lg:"\\u2276",lgE:"\\u2A91",lhard:"\\u21BD",lharu:"\\u21BC",lharul:"\\u296A",lhblk:"\\u2584",ljcy:"\\u0459",ll:"\\u226A",llarr:"\\u21C7",llcorner:"\\u231E",llhard:"\\u296B",lltri:"\\u25FA",lmidot:"\\u0140",lmoustache:"\\u23B0",lnapprox:"\\u2A89",lneq:"\\u2A87",lneqq:"\\u2268",loang:"\\u3018",loarr:"\\u21FD",lobrk:"\\u301A",longleftarrow:"\\u27F5",longleftrightarrow:"\\u27F7",longrightarrow:"\\u27F6",looparrowleft:"\\u21AB",lopar:"\\u2985",loplus:"\\u2A2D",lotimes:"\\u2A34",lozenge:"\\u25CA",lozf:"\\u29EB",lpar:"\\u0028",lparlt:"\\u2993",lrarr:"\\u21C6",lrcorner:"\\u231F",lrhar:"\\u21CB",lrhard:"\\u296D",lrtri:"\\u22BF",lsh:"\\u21B0",lsim:"\\u2272",lsime:"\\u2A8D",lsimg:"\\u2A8F",lsqb:"\\u005B",lsquo:"\\u2018",lsquor:"\\u201A",lstrok:"\\u0142",ltcc:"\\u2AA6",ltcir:"\\u2A79",ltdot:"\\u22D6",lthree:"\\u22CB",ltlarr:"\\u2976",ltquest:"\\u2A7B",ltrPar:"\\u2996",ltrie:"\\u22B4",ltrif:"\\u25C2",lurdshar:"\\u294A",luruhar:"\\u2966",lvertneqq',':"\\u2268\\uFE00','",lvnE',1,'"});MathJax.Ajax.loadComplete(a.entityDir+"/l.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/m.js
Normal file
18
mathjax/jax/input/MathML/entities/m.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/m.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Map:"\\u2905",Mcy:"\\u041C",MediumSpace:"\\u205F",Mellintrf:"\\u2133",mDDot:"\\u223A",macr:"\\u00AF",male:"\\u2642",maltese:"\\u2720",map:"\\u21A6",mapsto:"\\u21A6",mapstodown:"\\u21A7",mapstoleft:"\\u21A4",mapstoup:"\\u21A5",marker:"\\u25AE",mcomma:"\\u2A29",mcy:"\\u043C",mdash:"\\u2014",measuredangle:"\\u2221",micro:"\\u00B5",mid:"\\u2223",midast:"\\u002A",midcir:"\\u2AF0",middot:"\\u00B7",minus:"\\u2212",minusb:"\\u229F",minusd:"\\u2238",minusdu:"\\u2A2A",mlcp:"\\u2ADB",mldr:"\\u2026",mnplus:"\\u2213",models:"\\u22A7",mp:"\\u2213",mstpos:"\\u223E",mumap:"\\u22B8"});MathJax.Ajax.loadComplete(a.entityDir+"/m.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/n.js
Normal file
18
mathjax/jax/input/MathML/entities/n.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/n.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{NJcy:"\\u040A",Nacute:"\\u0143",Ncaron:"\\u0147",Ncedil:"\\u0145",Ncy:"\\u041D",NegativeMediumSpace',':"\\u200B",','NegativeThickSpace',1,'NegativeThinSpace',1,'NegativeVeryThinSpace',1,'NewLine:"\\u000A",NoBreak:"\\u2060",NonBreakingSpace:"\\u00A0",Not:"\\u2AEC",NotCongruent:"\\u2262",NotCupCap:"\\u226D",NotEqualTilde:"\\u2242','\\u0338",','NotGreaterFullEqual:"\\u2266',9,'NotGreaterGreater:"\\u226B',9,'NotGreaterLess:"\\u2279",NotGreaterSlantEqual:"\\u2A7E',9,'NotGreaterTilde:"\\u2275",NotHumpDownHump:"\\u224E',9,'NotHumpEqual:"\\u224F',9,'NotLeftTriangleBar:"\\u29CF',9,'NotLessGreater:"\\u2278",NotLessLess:"\\u226A',9,'NotLessSlantEqual:"\\u2A7D',9,'NotLessTilde:"\\u2274",NotNestedGreaterGreater:"\\u2AA2',9,'NotNestedLessLess:"\\u2AA1',9,'NotPrecedesEqual:"\\u2AAF',9,'NotReverseElement:"\\u220C",NotRightTriangleBar:"\\u29D0',9,'NotSquareSubset:"\\u228F',9,'NotSquareSubsetEqual:"\\u22E2",NotSquareSuperset:"\\u2290',9,'NotSquareSupersetEqual:"\\u22E3",NotSubset:"\\u2282','\\u20D2",','NotSucceedsEqual:"\\u2AB0',9,'NotSucceedsTilde:"\\u227F',9,'NotSuperset:"\\u2283',39,'NotTildeEqual:"\\u2244",NotTildeFullEqual:"\\u2247",NotTildeTilde:"\\u2249",Ntilde:"\\u00D1",nGg:"\\u22D9',9,'nGt:"\\u226B',39,'nGtv:"\\u226B',9,'nLeftarrow:"\\u21CD",nLeftrightarrow:"\\u21CE",nLl:"\\u22D8',9,'nLt:"\\u226A',39,'nLtv:"\\u226A',9,'nRightarrow:"\\u21CF",nabla:"\\u2207",nacute:"\\u0144",nang:"\\u2220',39,'nap:"\\u2249",napE:"\\u2A70',9,'napid:"\\u224B',9,'napos:"\\u0149",napprox:"\\u2249",natural:"\\u266E",naturals:"\\u2115",nbsp:"\\u00A0",nbump:"\\u224E',9,'nbumpe:"\\u224F',9,'ncap:"\\u2A43",ncaron:"\\u0148",ncedil:"\\u0146",ncong:"\\u2247",ncongdot:"\\u2A6D',9,'ncup:"\\u2A42",ncy:"\\u043D",ndash:"\\u2013",ne:"\\u2260",neArr:"\\u21D7",nearhk:"\\u2924",nearrow:"\\u2197",nedot:"\\u2250',9,'nequiv:"\\u2262",nesear:"\\u2928",nesim:"\\u2242',9,'nexist:"\\u2204",nexists:"\\u2204",ngE:"\\u2267',9,'nge:"\\u2271",ngeq:"\\u2271",ngeqq:"\\u2267',9,'ngeqslant:"\\u2A7E',9,'nges:"\\u2A7E',9,'ngsim:"\\u2275",ngt:"\\u226F",ngtr:"\\u226F",nhpar:"\\u2AF2",ni:"\\u220B",nis:"\\u22FC",nisd:"\\u22FA",niv:"\\u220B",njcy:"\\u045A",nlE:"\\u2266',9,'nldr:"\\u2025",nle:"\\u2270",nleftarrow:"\\u219A",nleftrightarrow:"\\u21AE",nleq:"\\u2270",nleqq:"\\u2266',9,'nleqslant:"\\u2A7D',9,'nles:"\\u2A7D',9,'nless:"\\u226E",nlsim:"\\u2274",nlt:"\\u226E",nltri:"\\u22EA",nltrie:"\\u22EC",nmid:"\\u2224",notin:"\\u2209",notinE:"\\u22F9',9,'notindot:"\\u22F5',9,'notinva:"\\u2209",notinvb:"\\u22F7",notinvc:"\\u22F6",notni:"\\u220C",notniva:"\\u220C",notnivb:"\\u22FE",notnivc:"\\u22FD",npar',':"\\u2226",','nparallel',95,'nparsl:"\\u2AFD\\u20E5",npart:"\\u2202',9,'npolint:"\\u2A14",npr:"\\u2280",nprcue:"\\u22E0",npre:"\\u2AAF',9,'nprec:"\\u2280",npreceq:"\\u2AAF',9,'nrarrc:"\\u2933',9,'nrarrw:"\\u219D',9,'nrightarrow:"\\u219B",nrtri:"\\u22EB",nrtrie:"\\u22ED",nsc:"\\u2281",nsccue:"\\u22E1",nsce:"\\u2AB0',9,'nshortmid:"\\u2224",nshortparallel',95,'nsim:"\\u2241",nsime:"\\u2244",nsimeq:"\\u2244",nsmid:"\\u2224",nspar',95,'nsqsube:"\\u22E2",nsqsupe:"\\u22E3",nsub:"\\u2284",nsubE:"\\u2AC5',9,'nsube:"\\u2288",nsubset:"\\u2282',39,'nsubseteq:"\\u2288",nsubseteqq:"\\u2AC5',9,'nsucc:"\\u2281",nsucceq:"\\u2AB0',9,'nsup:"\\u2285",nsupE:"\\u2AC6',9,'nsupe:"\\u2289",nsupset:"\\u2283',39,'nsupseteq:"\\u2289",nsupseteqq:"\\u2AC6',9,'ntgl:"\\u2279",ntilde:"\\u00F1",ntlg:"\\u2278",ntriangleleft:"\\u22EA",ntrianglelefteq:"\\u22EC",ntriangleright:"\\u22EB",ntrianglerighteq:"\\u22ED",num:"\\u0023",numero:"\\u2116",numsp:"\\u2007",nvHarr:"\\u2904",nvap:"\\u224D',39,'nvge:"\\u2265',39,'nvgt:"\\u003E',39,'nvinfin:"\\u29DE",nvlArr:"\\u2902",nvle:"\\u2264',39,'nvlt:"\\u003C',39,'nvltrie:"\\u22B4',39,'nvrArr:"\\u2903",nvrtrie:"\\u22B5',39,'nvsim:"\\u223C',39,'nwArr:"\\u21D6",nwarhk:"\\u2923",nwarrow:"\\u2196",nwnear:"\\u2927"});MathJax.Ajax.loadComplete(a.entityDir+"/n.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/o.js
Normal file
18
mathjax/jax/input/MathML/entities/o.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/o.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{OElig:"\\u0152",Oacute:"\\u00D3",Ocirc:"\\u00D4",Ocy:"\\u041E",Odblac:"\\u0150",Ograve:"\\u00D2",Omacr:"\\u014C",OpenCurlyDoubleQuote:"\\u201C",OpenCurlyQuote:"\\u2018",Or:"\\u2A54",Oslash:"\\u00D8",Otilde:"\\u00D5",Otimes:"\\u2A37",Ouml:"\\u00D6",OverBracket:"\\u23B4",OverParenthesis:"\\uFE35",oS:"\\u24C8",oacute:"\\u00F3",oast:"\\u229B",ocir:"\\u229A",ocirc:"\\u00F4",ocy:"\\u043E",odash:"\\u229D",odblac:"\\u0151",odiv:"\\u2A38",odot:"\\u2299",odsold:"\\u29BC",oelig:"\\u0153",ofcir:"\\u29BF",ogon:"\\u02DB",ograve:"\\u00F2",ogt:"\\u29C1",ohbar:"\\u29B5",ohm:"\\u2126",oint:"\\u222E",olarr:"\\u21BA",olcir:"\\u29BE",olcross:"\\u29BB",olt:"\\u29C0",omacr:"\\u014D",omid:"\\u29B6",ominus:"\\u2296",opar:"\\u29B7",operp:"\\u29B9",oplus:"\\u2295",orarr:"\\u21BB",ord:"\\u2A5D",order:"\\u2134",orderof:"\\u2134",ordf:"\\u00AA",ordm:"\\u00BA",origof:"\\u22B6",oror:"\\u2A56",orslope:"\\u2A57",orv:"\\u2A5B",oslash:"\\u00F8",otilde:"\\u00F5",otimes:"\\u2297",otimesas:"\\u2A36",ouml:"\\u00F6",ovbar:"\\u233D"});MathJax.Ajax.loadComplete(a.entityDir+"/o.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/opf.js
Normal file
18
mathjax/jax/input/MathML/entities/opf.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/opf.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Aopf',':"\\uD835\\','uDD38",Bopf',1,'uDD39",Copf:"\\u2102",Dopf',1,'uDD3B",Eopf',1,'uDD3C",Fopf',1,'uDD3D",Gopf',1,'uDD3E",Hopf:"\\u210D",Iopf',1,'uDD40",Jopf',1,'uDD41",Kopf',1,'uDD42",Lopf',1,'uDD43",Mopf',1,'uDD44",Nopf:"\\u2115",Oopf',1,'uDD46",Popf:"\\u2119",Qopf:"\\u211A",Ropf:"\\u211D",Sopf',1,'uDD4A",Topf',1,'uDD4B",Uopf',1,'uDD4C",Vopf',1,'uDD4D",Wopf',1,'uDD4E",Xopf',1,'uDD4F",Yopf',1,'uDD50",Zopf:"\\u2124",aopf',1,'uDD52",bopf',1,'uDD53",copf',1,'uDD54",dopf',1,'uDD55",eopf',1,'uDD56",fopf',1,'uDD57",gopf',1,'uDD58",hopf',1,'uDD59",iopf',1,'uDD5A",jopf',1,'uDD5B",kopf',1,'uDD5C",lopf',1,'uDD5D",mopf',1,'uDD5E",nopf',1,'uDD5F",oopf',1,'uDD60",popf',1,'uDD61",qopf',1,'uDD62",ropf',1,'uDD63",sopf',1,'uDD64",topf',1,'uDD65",uopf',1,'uDD66",vopf',1,'uDD67",wopf',1,'uDD68",xopf',1,'uDD69",yopf',1,'uDD6A",zopf',1,'uDD6B"});MathJax.Ajax.loadComplete(a.entityDir+"/opf.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/p.js
Normal file
18
mathjax/jax/input/MathML/entities/p.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/p.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Pcy:"\\u041F",Poincareplane:"\\u210C",Pr:"\\u2ABB",Prime:"\\u2033",Proportion:"\\u2237",par:"\\u2225",para:"\\u00B6",parallel:"\\u2225",parsim:"\\u2AF3",parsl:"\\u2AFD",part:"\\u2202",pcy:"\\u043F",percnt:"\\u0025",permil:"\\u2030",perp:"\\u22A5",pertenk:"\\u2031",phmmat:"\\u2133",phone:"\\u260E",pitchfork:"\\u22D4",planck:"\\u210F",planckh:"\\u210E",plankv:"\\u210F",plus:"\\u002B",plusacir:"\\u2A23",plusb:"\\u229E",pluscir:"\\u2A22",plusdo:"\\u2214",plusdu:"\\u2A25",pluse:"\\u2A72",plusmn:"\\u00B1",plussim:"\\u2A26",plustwo:"\\u2A27",pm:"\\u00B1",pointint:"\\u2A15",pound:"\\u00A3",pr:"\\u227A",prE:"\\u2AB3",prcue:"\\u227C",pre:"\\u2AAF",prec:"\\u227A",precapprox:"\\u2AB7",preccurlyeq:"\\u227C",preceq:"\\u2AAF",precsim:"\\u227E",primes:"\\u2119",prnE:"\\u2AB5",prnap:"\\u2AB9",prnsim:"\\u22E8",prod:"\\u220F",profalar:"\\u232E",profline:"\\u2312",profsurf:"\\u2313",prop:"\\u221D",propto:"\\u221D",prsim:"\\u227E",prurel:"\\u22B0",puncsp:"\\u2008"});MathJax.Ajax.loadComplete(a.entityDir+"/p.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/q.js
Normal file
18
mathjax/jax/input/MathML/entities/q.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/q.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{qint:"\\u2A0C",qprime:"\\u2057",quaternions:"\\u210D",quatint:"\\u2A16",quest:"\\u003F",questeq:"\\u225F",quot:"\\u0022"});MathJax.Ajax.loadComplete(a.entityDir+"/q.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/r.js
Normal file
18
mathjax/jax/input/MathML/entities/r.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/r.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{RBarr:"\\u2910",Racute:"\\u0154",Rang:"\\u300B",Rarrtl:"\\u2916",Rcaron:"\\u0158",Rcedil:"\\u0156",Rcy:"\\u0420",ReverseElement:"\\u220B",ReverseUpEquilibrium:"\\u296F",RightArrowBar:"\\u21E5",RightDoubleBracket:"\\u301B",RightDownTeeVector:"\\u295D",RightDownVectorBar:"\\u2955",RightTeeVector:"\\u295B",RightTriangleBar:"\\u29D0",RightUpDownVector:"\\u294F",RightUpTeeVector:"\\u295C",RightUpVectorBar:"\\u2954",RightVectorBar:"\\u2953",RoundImplies:"\\u2970",RuleDelayed:"\\u29F4",rAarr:"\\u21DB",rArr:"\\u21D2",rAtail:"\\u291C",rBarr:"\\u290F",rHar:"\\u2964",race:"\\u29DA",racute:"\\u0155",radic:"\\u221A",raemptyv:"\\u29B3",rang:"\\u232A",rangd:"\\u2992",range:"\\u29A5",rangle:"\\u232A",raquo:"\\u00BB",rarr:"\\u2192",rarrap:"\\u2975",rarrb:"\\u21E5",rarrbfs:"\\u2920",rarrc:"\\u2933",rarrfs:"\\u291E",rarrhk:"\\u21AA",rarrlp:"\\u21AC",rarrpl:"\\u2945",rarrsim:"\\u2974",rarrw:"\\u219D",ratail:"\\u291A",ratio:"\\u2236",rationals:"\\u211A",rbarr:"\\u290D",rbbrk:"\\u3015",rbrke:"\\u298C",rbrksld:"\\u298E",rbrkslu:"\\u2990",rcaron:"\\u0159",rcedil:"\\u0157",rceil:"\\u2309",rcub:"\\u007D",rcy:"\\u0440",rdca:"\\u2937",rdldhar:"\\u2969",rdquo:"\\u201D",rdquor:"\\u201D",rdsh:"\\u21B3",real:"\\u211C",realine:"\\u211B",realpart:"\\u211C",reals:"\\u211D",rect:"\\u25AD",reg:"\\u00AE",rfisht:"\\u297D",rfloor:"\\u230B",rhard:"\\u21C1",rharu:"\\u21C0",rharul:"\\u296C",rightarrow:"\\u2192",rightarrowtail:"\\u21A3",rightharpoondown:"\\u21C1",rightharpoonup:"\\u21C0",rightleftarrows:"\\u21C4",rightleftharpoons:"\\u21CC",rightsquigarrow:"\\u219D",risingdotseq:"\\u2253",rlarr:"\\u21C4",rlhar:"\\u21CC",rmoustache:"\\u23B1",rnmid:"\\u2AEE",roang:"\\u3019",roarr:"\\u21FE",robrk:"\\u301B",ropar:"\\u2986",roplus:"\\u2A2E",rotimes:"\\u2A35",rpar:"\\u0029",rpargt:"\\u2994",rppolint:"\\u2A12",rrarr:"\\u21C9",rsh:"\\u21B1",rsqb:"\\u005D",rsquo:"\\u2019",rsquor:"\\u2019",rthree:"\\u22CC",rtrie:"\\u22B5",rtrif:"\\u25B8",rtriltri:"\\u29CE",ruluhar:"\\u2968",rx:"\\u211E"});MathJax.Ajax.loadComplete(a.entityDir+"/r.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/s.js
Normal file
18
mathjax/jax/input/MathML/entities/s.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/s.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{SHCHcy:"\\u0429",SHcy:"\\u0428",SOFTcy:"\\u042C",Sacute:"\\u015A",Sc:"\\u2ABC",Scaron:"\\u0160",Scedil:"\\u015E",Scirc:"\\u015C",Scy:"\\u0421",ShortDownArrow:"\\u2193",ShortLeftArrow:"\\u2190",ShortRightArrow:"\\u2192",ShortUpArrow:"\\u2191",Sub:"\\u22D0",Sup:"\\u22D1",sacute:"\\u015B",sc:"\\u227B",scE:"\\u2AB4",scaron:"\\u0161",sccue:"\\u227D",sce:"\\u2AB0",scedil:"\\u015F",scirc:"\\u015D",scpolint:"\\u2A13",scsim:"\\u227F",scy:"\\u0441",sdotb:"\\u22A1",sdote:"\\u2A66",seArr:"\\u21D8",searhk:"\\u2925",searrow:"\\u2198",semi:"\\u003B",seswar:"\\u2929",setminus',':"\\u2216",','setmn',1,'sext:"\\u2736",sfrown:"\\u2322",shchcy:"\\u0449",shcy:"\\u0448",shortmid:"\\u2223",shortparallel:"\\u2225",shy:"\\u00AD",sim:"\\u223C",simdot:"\\u2A6A",sime:"\\u2243",simeq:"\\u2243",simg:"\\u2A9E",simgE:"\\u2AA0",siml:"\\u2A9D",simlE:"\\u2A9F",simplus:"\\u2A24",simrarr:"\\u2972",slarr:"\\u2190",smallsetminus',1,'smashp:"\\u2A33",smeparsl:"\\u29E4",smid:"\\u2223",smt:"\\u2AAA",smte:"\\u2AAC",smtes:"\\u2AAC\\uFE00",softcy:"\\u044C",sol:"\\u002F",solb:"\\u29C4",solbar:"\\u233F",spadesuit:"\\u2660",spar:"\\u2225",sqcap:"\\u2293",sqcaps:"\\u2293\\uFE00",sqcup:"\\u2294",sqcups:"\\u2294\\uFE00",sqsub:"\\u228F",sqsube:"\\u2291",sqsubset:"\\u228F",sqsubseteq:"\\u2291",sqsup:"\\u2290",sqsupe:"\\u2292",sqsupset:"\\u2290",sqsupseteq:"\\u2292",squ:"\\u25A1",square:"\\u25A1",squarf:"\\u25AA",squf:"\\u25AA",srarr:"\\u2192",ssetmn',1,'ssmile:"\\u2323",sstarf:"\\u22C6",star:"\\u2606",starf:"\\u2605",straightepsilon:"\\u03F5",straightphi:"\\u03D5",strns:"\\u00AF",subdot:"\\u2ABD",sube:"\\u2286",subedot:"\\u2AC3",submult:"\\u2AC1",subplus:"\\u2ABF",subrarr:"\\u2979",subset:"\\u2282",subseteq:"\\u2286",subseteqq:"\\u2AC5",subsetneq:"\\u228A",subsetneqq:"\\u2ACB",subsim:"\\u2AC7",subsub:"\\u2AD5",subsup:"\\u2AD3",succ:"\\u227B",succapprox:"\\u2AB8",succcurlyeq:"\\u227D",succeq:"\\u2AB0",succnapprox:"\\u2ABA",succneqq:"\\u2AB6",succnsim:"\\u22E9",succsim:"\\u227F",sum:"\\u2211",sung:"\\u266A",sup:"\\u2283",sup1:"\\u00B9",sup2:"\\u00B2",sup3:"\\u00B3",supdot:"\\u2ABE",supdsub:"\\u2AD8",supe:"\\u2287",supedot:"\\u2AC4",suphsol:"\\u2283\\u002F",suphsub:"\\u2AD7",suplarr:"\\u297B",supmult:"\\u2AC2",supplus:"\\u2AC0",supset:"\\u2283",supseteq:"\\u2287",supseteqq:"\\u2AC6",supsetneq:"\\u228B",supsetneqq:"\\u2ACC",supsim:"\\u2AC8",supsub:"\\u2AD4",supsup:"\\u2AD6",swArr:"\\u21D9",swarhk:"\\u2926",swarrow:"\\u2199",swnwar:"\\u292A",szlig:"\\u00DF"});MathJax.Ajax.loadComplete(a.entityDir+"/s.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/scr.js
Normal file
18
mathjax/jax/input/MathML/entities/scr.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/scr.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Ascr',':"\\uD835\\','uDC9C",Bscr:"\\u212C",Cscr',1,'uDC9E",Dscr',1,'uDC9F",Escr:"\\u2130",Fscr:"\\u2131",Gscr',1,'uDCA2",Hscr:"\\u210B",Iscr:"\\u2110",Jscr',1,'uDCA5",Kscr',1,'uDCA6",Lscr:"\\u2112",Mscr:"\\u2133",Nscr',1,'uDCA9",Oscr',1,'uDCAA",Pscr',1,'uDCAB",Qscr',1,'uDCAC",Rscr:"\\u211B",Sscr',1,'uDCAE",Tscr',1,'uDCAF",Uscr',1,'uDCB0",Vscr',1,'uDCB1",Wscr',1,'uDCB2",Xscr',1,'uDCB3",Yscr',1,'uDCB4",Zscr',1,'uDCB5",ascr',1,'uDCB6",bscr',1,'uDCB7",cscr',1,'uDCB8",dscr',1,'uDCB9",escr:"\\u212F",fscr',1,'uDCBB",gscr:"\\u210A",hscr',1,'uDCBD",iscr',1,'uDCBE",jscr',1,'uDCBF",kscr',1,'uDCC0",lscr',1,'uDCC1",mscr',1,'uDCC2",nscr',1,'uDCC3",oscr:"\\u2134",pscr',1,'uDCC5",qscr',1,'uDCC6",rscr',1,'uDCC7",sscr',1,'uDCC8",tscr',1,'uDCC9",uscr',1,'uDCCA",vscr',1,'uDCCB",wscr',1,'uDCCC",xscr',1,'uDCCD",yscr',1,'uDCCE",zscr',1,'uDCCF"});MathJax.Ajax.loadComplete(a.entityDir+"/scr.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/t.js
Normal file
18
mathjax/jax/input/MathML/entities/t.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/t.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{THORN:"\\u00DE",TSHcy:"\\u040B",TScy:"\\u0426",Tab:"\\u0009",Tcaron:"\\u0164",Tcedil:"\\u0162",Tcy:"\\u0422",ThinSpace:"\\u2009",TripleDot:"\\u20DB",Tstrok:"\\u0166",target:"\\u2316",tbrk:"\\u23B4",tcaron:"\\u0165",tcedil:"\\u0163",tcy:"\\u0442",tdot:"\\u20DB",telrec:"\\u2315",there4:"\\u2234",therefore:"\\u2234",thickapprox:"\\u2248",thicksim:"\\u223C",thinsp:"\\u2009",thkap:"\\u2248",thksim:"\\u223C",thorn:"\\u00FE",timesb:"\\u22A0",timesbar:"\\u2A31",timesd:"\\u2A30",tint:"\\u222D",toea:"\\u2928",top:"\\u22A4",topbot:"\\u2336",topcir:"\\u2AF1",topfork:"\\u2ADA",tosa:"\\u2929",tprime:"\\u2034",trade:"\\u2122",triangledown:"\\u25BF",triangleleft:"\\u25C3",trianglelefteq:"\\u22B4",triangleright:"\\u25B9",trianglerighteq:"\\u22B5",tridot:"\\u25EC",trie:"\\u225C",triminus:"\\u2A3A",triplus:"\\u2A39",trisb:"\\u29CD",tritime:"\\u2A3B",trpezium:"\\uFFFD",tscy:"\\u0446",tshcy:"\\u045B",tstrok:"\\u0167",twixt:"\\u226C",twoheadleftarrow:"\\u219E",twoheadrightarrow:"\\u21A0"});MathJax.Ajax.loadComplete(a.entityDir+"/t.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/u.js
Normal file
18
mathjax/jax/input/MathML/entities/u.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/u.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Uacute:"\\u00DA",Uarr:"\\u219F",Uarrocir:"\\u2949",Ubrcy:"\\u040E",Ubreve:"\\u016C",Ucirc:"\\u00DB",Ucy:"\\u0423",Udblac:"\\u0170",Ugrave:"\\u00D9",Umacr:"\\u016A",UnderBracket:"\\u23B5",UnderParenthesis:"\\uFE36",Uogon:"\\u0172",UpArrowBar:"\\u2912",UpArrowDownArrow:"\\u21C5",UpEquilibrium:"\\u296E",UpTeeArrow:"\\u21A5",UpperLeftArrow:"\\u2196",UpperRightArrow:"\\u2197",Upsi:"\\u03D2",Uring:"\\u016E",Utilde:"\\u0168",Uuml:"\\u00DC",uArr:"\\u21D1",uHar:"\\u2963",uacute:"\\u00FA",uarr:"\\u2191",ubrcy:"\\u045E",ubreve:"\\u016D",ucirc:"\\u00FB",ucy:"\\u0443",udarr:"\\u21C5",udblac:"\\u0171",udhar:"\\u296E",ufisht:"\\u297E",ugrave:"\\u00F9",uharl:"\\u21BF",uharr:"\\u21BE",uhblk:"\\u2580",ulcorn:"\\u231C",ulcorner:"\\u231C",ulcrop:"\\u230F",ultri:"\\u25F8",umacr:"\\u016B",uml:"\\u00A8",uogon:"\\u0173",uparrow:"\\u2191",updownarrow:"\\u2195",upharpoonleft:"\\u21BF",upharpoonright:"\\u21BE",uplus:"\\u228E",upsilon:"\\u03C5",urcorn:"\\u231D",urcorner:"\\u231D",urcrop:"\\u230E",uring:"\\u016F",urtri:"\\u25F9",utdot:"\\u22F0",utilde:"\\u0169",utri:"\\u25B5",utrif:"\\u25B4",uuarr:"\\u21C8",uuml:"\\u00FC",uwangle:"\\u29A7"});MathJax.Ajax.loadComplete(a.entityDir+"/u.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/v.js
Normal file
18
mathjax/jax/input/MathML/entities/v.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/v.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{VDash:"\\u22AB",Vbar:"\\u2AEB",Vcy:"\\u0412",Vdashl:"\\u2AE6",Verbar:"\\u2016",Vert:"\\u2016",VerticalLine',':"\\u007C",','VerticalSeparator:"\\u2758",VeryThinSpace:"\\u200A",vArr:"\\u21D5",vBar:"\\u2AE8",vBarv:"\\u2AE9",vDash:"\\u22A8",vangrt:"\\u299C",varepsilon:"\\u03B5",varkappa:"\\u03F0",varnothing:"\\u2205",varphi:"\\u03C6",varpi:"\\u03D6",varpropto:"\\u221D",varr:"\\u2195",varrho:"\\u03F1",varsigma:"\\u03C2",varsubsetneq',':"\\u228A\\uFE00",','varsubsetneqq',':"\\u2ACB\\uFE00",','varsupsetneq',':"\\u228B\\uFE00",','varsupsetneqq',':"\\u2ACC\\uFE00",','vartheta:"\\u03D1",vartriangleleft:"\\u22B2",vartriangleright:"\\u22B3",vcy:"\\u0432",vdash:"\\u22A2",vee:"\\u2228",veeeq:"\\u225A",verbar',1,'vert',1,'vltri:"\\u22B2",vnsub:"\\u2282\\u20D2",vnsup:"\\u2283\\u20D2",vprop:"\\u221D",vrtri:"\\u22B3",vsubnE',5,'vsubne',3,'vsupnE',9,'vsupne',7,'vzigzag:"\\u299A"});MathJax.Ajax.loadComplete(a.entityDir+"/v.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/w.js
Normal file
18
mathjax/jax/input/MathML/entities/w.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/w.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Wcirc:"\\u0174",wcirc:"\\u0175",wedbar:"\\u2A5F",wedge:"\\u2227",wedgeq:"\\u2259",wp:"\\u2118",wr:"\\u2240",wreath:"\\u2240"});MathJax.Ajax.loadComplete(a.entityDir+"/w.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/x.js
Normal file
18
mathjax/jax/input/MathML/entities/x.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/x.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{xcap:"\\u22C2",xcirc:"\\u25EF",xcup:"\\u22C3",xdtri:"\\u25BD",xhArr:"\\u27FA",xharr:"\\u27F7",xlArr:"\\u27F8",xlarr:"\\u27F5",xmap:"\\u27FC",xnis:"\\u22FB",xodot:"\\u2A00",xoplus:"\\u2A01",xotime:"\\u2A02",xrArr:"\\u27F9",xrarr:"\\u27F6",xsqcup:"\\u2A06",xuplus:"\\u2A04",xutri:"\\u25B3",xvee:"\\u22C1",xwedge:"\\u22C0"});MathJax.Ajax.loadComplete(a.entityDir+"/x.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/y.js
Normal file
18
mathjax/jax/input/MathML/entities/y.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/y.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{YAcy:"\\u042F",YIcy:"\\u0407",YUcy:"\\u042E",Yacute:"\\u00DD",Ycirc:"\\u0176",Ycy:"\\u042B",Yuml:"\\u0178",yacute:"\\u00FD",yacy:"\\u044F",ycirc:"\\u0177",ycy:"\\u044B",yicy:"\\u0457",yucy:"\\u044E",yuml:"\\u00FF"});MathJax.Ajax.loadComplete(a.entityDir+"/y.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/entities/z.js
Normal file
18
mathjax/jax/input/MathML/entities/z.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/MathML/entities/z.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a){MathJax.Hub.Insert(a.Parse.Entity,{ZHcy:"\\u0416",Zacute:"\\u0179",Zcaron:"\\u017D",Zcy:"\\u0417",Zdot:"\\u017B",ZeroWidthSpace:"\\u200B",zacute:"\\u017A",zcaron:"\\u017E",zcy:"\\u0437",zdot:"\\u017C",zeetrf:"\\u2128",zhcy:"\\u0436"});MathJax.Ajax.loadComplete(a.entityDir+"/z.js")})(MathJax.InputJax.MathML);']
|
||||
]);
|
||||
|
18
mathjax/jax/input/MathML/jax.js
Normal file
18
mathjax/jax/input/MathML/jax.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/jax/input/TeX/config.js
Normal file
18
mathjax/jax/input/TeX/config.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/input/TeX/config.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.InputJax','.TeX','=',0,'({name:"TeX",version:"1.0",directory:',0,'.directory+"/','TeX",extensionDir:',0,'.extensionDir+"/TeX",require:[MathJax.ElementJax',6,'mml/jax.js"],config:{TagSide:"right",TagIndent:"0.8em",MultLineWidth:"85%"}});',0,1,'.Register("math/tex");',0,1,'.loadComplete("config.js");']
|
||||
]);
|
||||
|
19
mathjax/jax/input/TeX/jax.js
Normal file
19
mathjax/jax/input/TeX/jax.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/jax/output/HTML-CSS/autoload/maction.js
Normal file
18
mathjax/jax/output/HTML-CSS/autoload/maction.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/autoload/maction.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(','function(','c,e){var d,f,b;var a=','e.config.tooltip','=','MathJax.Hub.','Insert({delayPost:600,delayClear:600,offsetX:10,offsetY:5},',3,'||{});c.maction.Augment({HTMLtooltip:','e.addElement(','document.body,"div",{id:"','MathJax_Tooltip','"}),toHTML:',1,'h){h=this.HTMLhandleSize(this.HTMLcreateSpan(h));h.bbox=null;var g=this.getValues("actiontype","selection"),j;if','(this.data[g.selection-1',']){e.Measured',15,'].toHTML(h),h);if(','e.msieHitBoxBug','){var i=',9,'h,"span");','j=e.createFrame(','i',',h.bbox.h,h.bbox.d,h.bbox.w,0,"none");h.insertBefore(','i,h','.firstChild',');i','.style.marginRight=e.Em(-h.bbox.w',');if(e.msieInlineBlockAlignBug){j.style.verticalAlign=e.Em(e.getHD(h).d-h.bbox.d)}}else{',23,'h',25,'j,h',27,');j',29,')}j.className="MathJax_HitBox";j.id="MathJax-HitBox-"+this.spanID;if(','this.HTMLaction[g.actiontype',']){',39,'].call(this,h,j,g.selection)}}this.HTMLhandleSpace(h);this.HTMLhandleColor(h);return h},HTMLaction:{toggle:',1,'h,i,g){','this.selection','=g;i.onclick','=h.childNodes[1].','onclick=','MathJax.Callback(["','HTMLclick','",this]);i.','style.cursor',47,52,'="pointer"},statusline:',1,44,'i.','onmouseover',47,59,'=',49,'HTMLsetStatus',51,'onmouseout',47,66,'=',49,'HTMLclearStatus','",this]);i.onmouseover.autoReset=i.onmouseout.autoReset=true','},tooltip:',1,44,'if(this.data[1]&&','this.data[1].','isToken){i.title=i.alt',47,'title',47,'alt=',77,'data.join','("")}else{i.',59,47,59,'=',49,'HTMLtooltipOver',51,66,47,66,'=',49,'HTMLtooltipOut',72,'}}},',50,':',1,'i){',45,'++;if(',45,'>this.data.length){',45,'=1}var j=this;while(j.type!=="math"){j=j.inherit}var g=j.HTMLspanElement();while(g.nodeName.toLowerCase()!=="nobr"){g=g','.parentNode','}var h=g',111,';h.removeChild(g);var k=h;if(h',111,'.className==="MathJax_Display"){k=h',111,'}j.toHTML(h,k);if(!i){i','=window.event}if(','i.preventDefault','){',120,'()}if(','i.stopPropagation','){',124,'()}i.cancelBubble=true;i.returnValue=false;return false},',64,':',1,'g){window.status','=((this.data[1]&&',77,'isToken)?',77,84,'(""):',77,'toString())},',71,':',1,131,'=""},',91,':',1,'h){if(!h){h',119,'b','){clearTimeout(','b);b=null}','if(f',151,'f)}var g=h.clientX;var j=h.clientY;var i=',49,'HTMLtooltipPost','",this,','g+a.offsetX,j+a.offsetY]);f','=setTimeout(','i,a.delayPost)},',98,':',1,'g){if(f',151,'f);f=null}if(b',151,'b)}var h=',49,'HTMLtooltipClear',158,'80]);b',160,'h,a.delayClear)},',157,':',1,'h,l){f=null;if(b',151,152,'var k','=this.HTMLtooltip;','k','.style.display="','block";k','.style.opacity','="";k','.style.filter','=e.config.styles["#',11,'"].filter;if(this===d){return}k.style.left=h+"px";k.style.top=l+"px";k.innerHTML=\'<span class="MathJax"><nobr></nobr></span>\';e.getScales(k',27,',k',27,');var g=e.createStack(k',27,27,');var j=e.createBox(g);try{e.Measured(',77,'toHTML(j),j)}catch(i){if(!i.restart){throw i}k',185,'none";MathJax.Callback.After(["',157,158,'h,l],i.restart)}e.placeBox(j,0,0);e.createRule(k',27,27,',j.bbox.h,j.bbox.d,0);d=this},',171,':',1,'h){var g',183,'if(h<=0){g',185,'none";g',187,'=g',189,'="";b=null}else{g',187,'=h/100;g',189,'="alpha(opacity="+h+")";b',160,49,171,158,'h-20]),50)}}});',5,'Browser.Select({MSIE:',1,'g){',19,'=true}});',5,'Startup.signal.Post("HTML-CSS maction Ready");MathJax.Ajax.loadComplete(e.autoloadDir+"/maction.js")})(MathJax.ElementJax.mml,MathJax.OutputJax["HTML-CSS"]);']
|
||||
]);
|
||||
|
18
mathjax/jax/output/HTML-CSS/autoload/menclose.js
Normal file
18
mathjax/jax/output/HTML-CSS/autoload/menclose.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/autoload/menclose.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(','function(','a,b','){var ','c="http://www.w3.org/2000/svg";var e="urn:schemas-microsoft-com:vml";var d="mjxvml";a.menclose.Augment({toHTML:',1,'J',3,'g','=this.getValues("','notation","thickness","padding","mathcolor","color");if(g.color&&!this','.mathcolor){g.mathcolor','=g.color}if(','g.thickness','==null){',13,'=".075em"}if(g.padding==null){g.padding=".2em"}var E=b.length2em(g.padding);var x=b.length2em(',13,');var s=b.Em(x)+" solid";J=this.HTMLcreateSpan(J);var q=b.createStack(J);var n=b.createBox(q);this.HTMLmeasureChild(0,n);var v=n.bbox.h+E+x,z=n.bbox.d+E+x,h=n.bbox.w+2*(E+x);var y','=b.createFrame(','q,v+z,0,h,x,"none");y.id="','MathJax-frame-"+this.spanID',';','b.addBox(q,','y);q.insertBefore(y,n);var j=g.notation.split(/ /);var k=0,C=0,l=0,r=0,w=0,u=0;var A,f;if(!g',11,'="black"}else{J.style.color=g.mathcolor}for(var I=0,G=j.length;I<G;I++){switch(j[I]){','case a.NOTATION.','BOX',':y.style.','border','=s;if(!b.msieBorderWidthBug){','k=C=r=l=x}','break;case a.NOTATION.','ROUNDEDBOX',':if(b.useVML){if(!f){f=this.HTMLvml(q,v,z,h,x,g.mathcolor)}this.HTMLvmlElement(f,"','roundrect",{style:{width:','this.HTMLpx(','h-2*x),height:',37,'v+z-2*x','),left:',37,'x)+0.5',',top:',37,43,'},arcsize:".25"})}','else{if(!A){A=this.HTMLsvg(q,v,z,h,x,g.mathcolor)}this.HTMLsvgElement(A.firstChild,"','rect",{x:1,y:1,width:',37,'h-x)-1,height:',37,'v+z-x',')-1,rx:',37,'Math.min(v+z,h)/4)})}',33,'CIRCLE',35,'oval",{style:{width:',37,'h-2*x),height:',37,40,'),left:',37,43,',top:',37,43,'}})}',48,'ellipse",{rx:',37,'h/2-x),ry:','this.HTMLpx((v+z)/2','-x),cx:',37,'h/2),cy:',76,')})}',33,'LEFT',29,'borderLeft',31,'r=x}',33,'ACTUARIAL',29,'borderTop',31,'k=x;y.bbox.w+=E-x}',27,'RIGHT',29,'borderRight',31,'l=x}',33,'VERTICALSTRIKE:var o','=b.createRule(q,',53,'/2,0,x);',23,'o',');b.placeBox(','o,E+x+n.bbox.w/2,-','z,true);',33,'TOP',29,'borderTop',31,'k=x}',33,'BOTTOM',29,'borderBottom',31,'C=x}',33,'HORIZONTALSTRIKE:var F',102,'x,0,h-x/2);',23,'F',107,'F,0,(v+z)/2-',109,33,'UPDIAGONALSTRIKE',35,'line",{from:"0',',"+',37,53,'),to:',37,'h)+",0"})}',48,'line",{x1:1,y1:',37,53,'),x2:',37,'h-x),y2:',37,'x)})}',33,'DOWNDIAGONALSTRIKE',35,134,',0",to:',37,'h)+","+',37,'v+z-x)})}',48,'line",{x1:1,y1:',37,'x),x2:',37,'h-x),y2:',37,158,33,'MADRUWB',29,'borderBottom=s;y.style.borderRight',31,'C=l=x}',33,'RADICAL',35,'polyline",{points:',37,'x/2)+","+',37,'0.6*(v+z))+" "+',37,'E)+","+',37,53,')+" "+',37,'2*E)+","+',37,'x/2)+" "+',37,'h)+","+',37,'x/2)});w=E}',48,'path",{d:"M',' 1,"+',37,'0.6*(v+z))+" L "+',37,'E)+","+',37,'v+z)+" L "+',37,'2*E)+",1 L "+',37,'h)+",1"});','b.placeBox(A.parentNode,0,','E/2-',109,'w=E;u=x}',33,'LONGDIV',35,134,',"+',37,'x/2),to:',37,'h-x)+","+',37,'x/2)});this.HTMLvmlElement(f,"arc",{style:{width:',37,'2*E),height:',37,40,'),left:this.HTMLpx(-E),top:',37,'x)},startangle:"10",endangle:"170"});w=E}',48,195,' "+',37,'h)+",1 L 1,1 a"+',37,'E)+","+',76,'-x)+" 0 0,1 1,"+',37,40,')});',207,'x-',109,'w=E;u=x}break}}y','.style.width=b.Em(','h-r-l);y','.style.height=b.Em(','v+z-k-C',107,'y,0,u-z,true',107,'n,w+E+x,0);this.HTMLhandleSpace(J);this.','HTMLhandleColor','(J);return J},HTMLpx:',1,'f){return(f*b.em)},',253,':',1,'g',3,'h=document.getElementById("',21,');if(h',3,'f',9,'mathbackground','","background");if(this.style&&g','.style.backgroundColor','){f.',268,'=g',270,'}if(f.background&&!this.',268,'){f.',268,'=f.background}if(f.',268,'&&f.',268,'!==a.COLOR.TRANSPARENT){h',270,'=f.',268,'}}else{this.SUPER(arguments).',253,'.call(this,g)}},HTMLsvg:',1,'g,k,l,f,j,i',3,'h','=document.createElementNS(c',',"svg");if(h.style){h',245,'f);h',247,'k+l)}var m=b.createBox(g);m.appendChild(h',107,'m,0,-l,true);this.HTMLsvgElement(h,"g",{fill:"none",stroke:i,"stroke-width":j*b.em});return h},HTMLsvgElement:',1,'f,g,h',3,'i',294,',g);if(h){for(var j in h){if(h.hasOwnProperty(j)){i.setAttributeNS(null,j,h[j].toString())}}}f.appendChild(i);return i},HTMLvml:',1,'h,k,l,g,j,i',3,'f',19,'h,k+l,0,g,0,"none");b.addBox(h,f',107,'f,0,-l,true);','this.constructor.','VMLcolor=i;',316,'VMLthickness','=',37,'j);return f},HTMLvmlElement:',1,'f,g,h',3,'i=b.addElement(f,d+":"+g,h);if(!h.fillcolor){i.fillcolor="none"}if(!h.strokecolor){i.strokecolor=',316,'VMLcolor}if(!h.strokeweight){i.strokeweight=',316,319,'}}});MathJax.Hub.Browser.Select({MSIE:',1,'f){b.useVML=true;if(!','document.namespaces','[d]){',334,'.add(d,e);var g=document.createStyleSheet();g.addRule(d+"\\\\:*","{behavior: url(#default#VML); position:absolute; top:0; left:0}")}}});MathJax.Hub.Startup.signal.Post("HTML-CSS menclose Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/menclose.js")})(MathJax.ElementJax.mml,MathJax.OutputJax["HTML-CSS"]);']
|
||||
]);
|
||||
|
18
mathjax/jax/output/HTML-CSS/autoload/mglyph.js
Normal file
18
mathjax/jax/output/HTML-CSS/autoload/mglyph.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/autoload/mglyph.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(','function','(a,b){a.mglyph.Augment({toHTML:',1,'(h,g){var j=h,e=this.getValues("src","','width','","','height','","','valign','","alt"),i;h=this.HTMLcreateSpan(h);','if(e.','src===""){var f=this.Get("index");if(f){g=this.HTMLgetVariant();var d=g.defaultFont;if(d){d.noStyleChar=true;d.testString=','String.fromCharCode(f',')+"ABCabc";if(b.Font.testFont(d)){this.HTMLhandleVariant(h,g,',13,'))}else{',11,'alt===""){e.alt="Bad font: "+d.family}i=a.merror(e.alt',').With({mathsize:"75%"});this.Append(i);i.toHTML(h);this.data.pop();h.bbox=i.HTMLspanElement().bbox','}}}}else{','if(!this.img){this.img=a.mglyph.GLYPH[e.src',']}',21,']={img:new Image(),status:"pending"};var c=','this.img.img',';c.onload','=MathJax.Callback(["','HTMLimgLoaded','",this]);c.','onerror',27,'HTMLimgError',29,'src=e.src;MathJax.Hub.RestartAfter(c.onload)}if(','this.img.status','!=="OK"){i=a.merror("Bad mglyph: "+e.src',19,'}else{c=b.addElement(h,"img",{src:e.src,alt:e.alt,title:e.alt});',11,5,'){if(String(e.',5,').match(/^\\s*-?\\d+\\s*$/)){e.',5,'+="px"}c.style.',5,'=b.Em(','b.length2em(e.',5,',',25,'.',5,'/b.em))}',11,7,41,7,43,7,45,7,47,48,7,',',25,'.',7,54,'h.bbox.w=h.bbox.rw=c.offsetWidth/b.em;h.bbox.h=c.offsetHeight/b.em;',11,9,41,9,43,9,'+="px"}h.bbox.d=-',48,9,',',25,'.',7,'/b.em);c.style.verticalAlign=b.Em(-h.bbox.d);h.bbox.h-=h.bbox.d}}}if(!j.bbox){j.bbox={w:h.bbox.w,h:h.bbox.h,d:h.bbox.d,rw:h.bbox.rw,lw:h.bbox.lw}}else{if(h.bbox){j.bbox.w+=h.bbox.w;if(j.bbox.w>j.bbox.rw){j.bbox.rw=j.bbox.w}if(h.bbox.h>j.bbox.h){j.bbox.h=h.bbox.h}if(h.bbox.d>j.bbox.d){j.bbox.d=h.bbox.d}}}this.HTMLhandleSpace(h);this.HTMLhandleColor(h);return h},',28,':',1,'(d,c){if(typeof(d)==="string"){c=d}',35,'=(c||"OK")},',32,':',1,'(){',25,'.onload("error")}},{GLYPH:{}});MathJax.Hub.Startup.signal.Post("HTML-CSS mglyph Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/mglyph.js")})(MathJax.ElementJax.mml,MathJax.OutputJax["HTML-CSS"]);']
|
||||
]);
|
||||
|
18
mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js
Normal file
18
mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(','function(','a,b){a.','mmultiscripts','.Augment({toHTML:',1,'G,E,z){G=this.HTMLcreateSpan(G);var L=this.','HTMLgetScale();var ','j=b.createStack(G),e;var i=b.createBox(j);this.HTMLmeasureChild(this.base,i);if(','this.data[this.base',']){if(z!=null){b.Remeasured(',9,'].','HTMLstretchV','(i,E,z),i)}else{if(E!=null){b.Remeasured(',9,'].','HTMLstretchH','(i,E),i)}}}var J=b.TeX.x_height*L,y=b.TeX.scriptspace*L*0.75;var x=this.','HTMLgetScripts','(j,y);var k=x[0],c=x[1],n=x[2],g=x[3];var f=(','this.data[','1]||this).',7,'B=b.TeX.sup_drop*f,A=b.TeX.sub_drop*f;var o=i.bbox.h-B,m=i.bbox.d+A,K=0,C;if(i.bbox.ic){K=i.bbox.ic}if(',9,']&&(',9,'].type==="','mi"||',9,28,'mo")){if(',9,'].data.join("").length===1&&i.bbox.scale===1&&!',9,'].Get("largeop")){o=m=0}}var F','=this.getValues("','subscriptshift","','superscriptshift','");','F.subscriptshift','=(',41,'===""?0:b.length2em(',41,'));F.',39,'=(F.',39,'===""?0:b.length2em(F.',39,'));var l=0;if(n){l=','n.bbox.w','+K}else{if(g){l=g.bbox.w-K}}if(l<0){l=0}b.placeBox(i,l,0);if(!c&&!g){m','=Math.max(','m,b.TeX.','sub1*L,',41,');if(k){m',55,'m,k.bbox.h-(4/5)*J)}if(n){m',55,'m,n.bbox.h-(4/5)*J',')}if(k){b.placeBox(k,l+i.bbox.w+y-K,-m)}if(n){b.placeBox(n,','0,-m)}}else{if(!k&&!n){e',37,'displaystyle','","texprimestyle");C=b.TeX[(e.',67,'?"sup1":(e.texprimestyle?"sup3":"sup2"))];o',55,'o,C*L,F.',39,');if(c){o',55,'o,c.bbox.d+(1/4)*J)}if(g){o',55,'o,g.bbox.d+(1/4)*J)}','if(c){b.placeBox(c,l+i.bbox.w+y,o)}if(g){b.placeBox(g,','0,o)}}else{m',55,56,'sub2*L);var w=b.TeX.rule_thickness*L;var H=(k||n).bbox.h,I=(c||g).bbox.d;if(n){H',55,'H,n.bbox.h)}if(g){I',55,'I,g.bbox.d)}if((o-I)-(H-m)<3*w){m=3*w-o+I+H;B=(4/5)*J-(o-I);if(B>0){o+=B;m-=B}}o',55,'o,F.',39,');m',55,'m,',41,');',79,'l+K-g.bbox.w,o',64,'l-',53,',-m)}}}this.HTMLhandleSpace(G);this.HTMLhandleColor(G);return G},',19,':',1,'o,p){var n,c,d=[];var l=1,f=this.data.length,e=0;for(var g=0;g<4;g+=2){while(l<f&&',21,'l].type!=="','mprescripts"){for(var h=g;h<g+2;h++){if(',21,'l]&&',21,107,'none"){if(!d[h]){d[h]=b.createBox(o);d[h].bbox=this.HTMLemptyBBox({});if(e){b.createBlank(d[h],e);','d[h].bbox.','w=',114,'rw=e}}',21,'l].toHTML(d[h]);this.HTMLcombineBBoxes(',21,'l],d[h].bbox)}l++}c=d[g];n=d[g+1];if(c&&n){if(c.bbox.w<','n.bbox.w){b.createBlank(','c,',53,'-c.bbox.w);c.bbox.w=',53,';c.bbox.rw',55,'c.bbox.w,c.bbox.rw)}else{if(c.bbox.w>',122,'n,c.bbox.w-',53,');',53,'=c.bbox.w;n.bbox.rw',55,53,',n.bbox.rw)}}}if(c){e=c.bbox.w}else{if(n){e=',53,'}}}l++;e=0}for(h=0;h<4;h++){if(d[h]){',114,'w+=p;',114,'rw',55,114,'w,',114,'rw);this.HTMLcleanBBox(d[h].bbox)}}return d},',17,':a.mbase.',17,',',13,151,13,'});MathJax.Hub.Startup.signal.Post("HTML-CSS ',3,' Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/',3,'.js")})(MathJax.ElementJax.mml,MathJax.OutputJax["HTML-CSS"]);']
|
||||
]);
|
||||
|
18
mathjax/jax/output/HTML-CSS/autoload/ms.js
Normal file
18
mathjax/jax/output/HTML-CSS/autoload/ms.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/autoload/ms.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(','function(','a){a.ms.Augment({toHTML:',1,'c){c=this.HTMLhandleSize(this.HTMLcreateSpan(c));var b=this.getValues("lquote","rquote");var e=this.data.join("");var d=[];if(b.lquote','.length===1){d.push(this.HTMLquoteRegExp(b.','lquote))}if(b.rquote',5,'rquote))}if(d.length){e=e.replace(RegExp("("+d.join("|")+")","g"),"\\\\$1")}this.HTMLhandleVariant(c,this.HTMLgetVariant(),b.lquote+e+b.rquote);this.HTMLhandleSpace(c);this.HTMLhandleColor(c);return c},HTMLquoteRegExp:',1,'b){return b.replace(/([.*+?|{}()\\[\\]\\\\])/g,"\\\\$1")}});a.ms.prototype.defaults.fontfamily="monospace";MathJax.Hub.Startup.signal.Post("HTML-CSS ms Ready")})(MathJax.ElementJax.mml);MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].autoloadDir+"/ms.js");']
|
||||
]);
|
||||
|
18
mathjax/jax/output/HTML-CSS/autoload/mtable.js
Normal file
18
mathjax/jax/output/HTML-CSS/autoload/mtable.js
Normal file
File diff suppressed because one or more lines are too long
18
mathjax/jax/output/HTML-CSS/autoload/multiline.js
Normal file
18
mathjax/jax/output/HTML-CSS/autoload/multiline.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/autoload/multiline.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['(function(a,b){a.mbase.Augment({toHTMLmultiline:function(t,q){t=this.HTMLcreateSpan(t);if(!this.type!=="mrow"){t=this.HTMLhandleSize(t)}var f=b.createStack(t);var n=[],e=[],o','=-b.BIGDIMEN,','p',1,'u,s,r,h',';for(s=0,h=q.length-1;s<h;s++){','n[s]=b.createBox(f);for(u=q[s][0],r=q[s+1][0];u<r;u++){if(this.data[u]){this.data[u].toHTML(n[s])}}if(','this.data[q[s][','0]]){',7,'0',']].HTMLspanElement().style.','paddingLeft=""}if(',7,'r-1]]){',7,'r-1',11,'paddingRight=""}e[s]=','this.HTMLcomputeBBox(n[s],','null',',q[s][0],q[s+1][0',']);if(','n[s].bbox.','h>o){o=',23,'h}if(',23,'d>p){p=',23,'d}}var l=0,w=this.HTMLgetScale(),d=b.FONTDATA.baselineskip*w;var k=this,g;while(k.inferred||(k.parent&&k.parent.type==="mrow"&&k.parent.data.length===1)){k=k.parent}var v=(','k.type==="math','"||k.type==="mtd");k.isMultiline=true',5,'for(u=0,r=e[s].length;u<r;u++){e[s][u].HTMLstretchV(n[s],o,p)}if(e[s].length){',19,'true',21,'])}var c=q[s','][1].getValues("','indentalign","indentshift");c.','lineleading','=b.length2em(','q[s+1][1].Get("',41,'"),0.5);if(s===0){g=q[s+1',39,'indentalignfirst','","','indentshiftfirst','");c.ALIGN=g.',47,';c.SHIFT=g.',49,'}else{if(s===h-1){g=q[s',39,'indentalignlast','","','indentshiftlast',50,56,52,58,'}}if(c.ALIGN&&c.ALIGN!==','a.INDENTALIGN.','INDENTALIGN){','c.indentalign','=c.ALIGN}if(c.SHIFT&&c.SHIFT!==a.INDENTSHIFT.INDENTSHIFT){','c.indentshift','=c.SHIFT}if(',66,'==',64,'AUTO){',66,'=(v?this.','displayAlign:',64,'LEFT)}if(',68,'==="auto"||',68,'===""){',68,75,'displayIndent:"0")}',68,42,68,',0);if(',68,'&&',66,'!==',64,'CENTER){b.createBlank(n[s],',68,',(',66,'!==',64,'RIGHT));',23,'w+=',68,';',23,'rw+=',68,'}b.alignBox(n[s],',66,',l);if(s<h-1){l-=Math.max(d,',23,'d+n[s+1].bbox.h+c.',41,')}}if(v){f.style.width="100%";if(',31,'"){t.bbox.width="100%"}}this.HTMLhandleSpace(t);this.HTMLhandleColor(t);t.bbox.isMultiline=true;return t}});MathJax.Hub.Startup.signal.Post("HTML-CSS multiline Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/multiline.js")})(MathJax.ElementJax.mml,MathJax.OutputJax["HTML-CSS"]);']
|
||||
]);
|
||||
|
18
mathjax/jax/output/HTML-CSS/config.js
Normal file
18
mathjax/jax/output/HTML-CSS/config.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/config.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.OutputJax','["HTML-CSS','"]=',0,'({name:"','HTML-CSS",','version:"1.0",directory:',0,'.directory+"/HTML-CSS','",extensionDir:',0,'.extensionDir+"/',5,'autoloadDir:',0,8,'/autoload",fontDir:',0,8,'/fonts",webfontDir:',0,'.fontDir+"/',5,'config:{scale:100,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",showMathMenu:true,styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror','":{"background-color','":"#FFFF88",color:"#CC0000','",border:"1px solid',' #CC0000",padding:"1px 3px","font-family":"serif","font-style":"normal","font-size":"90%"},".','MathJax_Preview','":{color:"#888888"},"#MathJax_Tooltip',24,'":"InfoBackground",color:"InfoText',26,' black","','box-shadow":"2px 2px 5px #AAAAAA','","-webkit-',34,'","-moz-',34,'",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color=\'gray\', Positive=\'true\')",padding:"3px 4px"}}}});',0,1,'"].Register("jax/mml");(function(b,c){var a;a=b.Insert({','minBrowserVersion',':{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},','inlineMathDelimiters',':["$","$"],','displayMathDelimiters',':["$$","$$"],','multilineDisplay',':true,','minBrowserTranslate',':function(f){var e=b.getJaxFor(f),l=["[Math]"],k;var h=','document.createElement("','span",{className:"',28,'"});var j=e.root.Get("displaystyle");if(e.inputJax.name==="TeX"){if(j){k=a.',47,';l=[k[0]+e.originalText','+k[1]];if(a.',49,'){l=l[0].split(/\\n/)}}else{k=a.',45,58,'.replace(/^\\s+/,"").replace(/\\s+$/,"")+k[1]]}}for(var g=0,d=l.length;g<d;g++){h.appendChild(document.createTextNode(l[g]));if(g<d-1){h.appendChild(',53,'br"))}}f.parentNode.insertBefore(h,f)}},(b.config',1,'"]||{}));if(b.Browser.version!=="0.0"&&!b.Browser.versionAtLeast(a.',43,'[b.Browser]||0)){c.Translate=a.',51,';MathJax.Hub.Config({showProcessingMessages:false});MathJax.Message.Set("Your browser does not support MathJax",null,4000);b.Startup.signal.Post("MathJax not supported")}})(MathJax.Hub,',0,1,'"]);',0,1,'"].loadComplete("config.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{64256:[691,0,610,15,666],64257:[691,0,556,14,536],64258:[691,0,556,15,535],64259',':[691,0,833,15,','813],64260',3,'812]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/AlphaPresentForms.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{8592',':[451,-55,977,68,909],','8593:[676,170',',584,94,490],','8594',3,'8595:[676,170',5,'8596',':[451,-55,977,','30,948],','8597:[736,230',5,'8598',':[676,170,977,68,911],','8599',16,'8600',16,'8601',16,'8602',3,'8603',3,'8604',':[462,-72,956,66,890],','8605',28,'8606',3,'8607',':[676,165,568,86,482],','8608',3,'8609',34,'8610',3,'8611',3,'8612',3,'8613:[676,165',5,'8614',3,'8615:[676,165',5,'8616:[732,196',5,'8617:[539,-55',',966,66,900],','8618:[539,-55',54,'8619:[540,6',54,'8620:[540,6',54,'8621:[451,-55,1297,55,1242],8622',11,12,'8623:[683,154,562,68,494],8624',':[686,170,584,','45,503],','8625',65,'81,539],','8626',65,66,'8627',65,69,'8628:[686,162,960,66,894],8629:[686,171,960,56,904],8630',':[524,0,971,66,905],','8631',77,'8632:[768,170,977,68,911],8633',':[618,114,977,68,909],','8634',':[693,127,974,105,869],','8635',83,'8636:[501,-209',',977,66,910],','8637:[297,-5,977,65,909],8638',':[694,162,552,239,481],','8639:[694,162,352,71,313],8640:[501,-209',87,'8641:[297,-5',87,'8642',89,'8643:[694,162,552,71,313],8644',81,'8645',':[676,165,864,66,798','],8646',81,'8647',81,'8648',99,'],8649',81,'8650',99,'],8651:[571,21',87,'8652:[571,21',87,'8653',':[570,64,977,68,909],','8654',':[570,64,1240,50,1190],','8655',115,'8656',115,'8657',':[676,170,714,40,674],','8658',115,'8659',123,'8660',117,'8661:[736,230,714,40,674],8662',':[662,156,926,54,872],','8663',131,'8664',131,'8665',131,'8668',11,'62,914],','8669',11,140,'8678',':[551,45,926,60,866],','8679',':[662,156,685,45,641],','8680',145,'8681',147,'8682:[705,201,685,45,641],8693',99,']});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/Arrows.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{120172',':[701,25,','856,50,805],120173',':[701,19,','849,50,794],120174',5,'773,54,731],120175',5,'891,54,836],120176',5,'788,54,731],120177',':[701,205,','803,54,748],','120178',5,'833,54,781],120179',13,'843,42,795],120180',3,'790,54,735],120181',13,14,'120182',3,'864,42,814],120183',3,'699,51,645],120184',3,'1133,50,1081],120185',3,'862,50,810],120186',5,'909,54,854],120187',13,'850,50,795],120188:[701,59,930,54,902],120189',3,'884,50,841],120190',5,'852,54,802],120191',3,'793,54,740],120192',3,'860,54,809],120193',5,'855,50,800],120194',5,'1121,50,1066],120195',3,'819,50,775],120196',13,'837,50,782],120197:[701,195,755,44,703],120198',':[475,24,','600,55,545],120199:[695,24,559,45,504],120200',53,'464,55,412],120201:[694,25,557,48,502],120202',53,'476,55,427],120203:[700,214,370,33,352],120204:[475,219,566,55,506],120205:[695,219,576,45,516],120206:[697,24,429,35,379],120207:[697,219,389,40,337],120208:[695,24,456,48,402],120209:[695,24,433,45,379],120210',53,'984,40,932],120211',53,'696,40,644],120212',53,'554,45,499],120213:[593,219,640,36,585],120214:[475,219,574,55,522],120215',53,'525,40,493],120216:[643,31,557,52,505],120217:[656,23,438,45,378],120218',53,'681,35,629],120219:[593,24,573,55,526],120220:[593,24,850,55,795],120221:[475,209,521,50,489],120222:[593,219,596,55,536],120223:[475,219,484,36,437]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/BoldFraktur.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{9472',':[340',',-267',',708,-11,719],','9474',':[910',',303,696,312,385],9484',3,',303',',708,318,720],','9488',3,',303,708,-11,','390],','9492',7,',-267',11,'9496',':[910,-267,708',',-11,390],','9500',7,',303',11,'9508',7,14,15,'9516',3,14,'719],','9524',7,',-267',5,'9532',7,14,34,'9552:[433,-174',5,'9553',7,',303,708,225,','484],9554:[433,303',11,'9555',3,47,'720],9556:[433',47,34,'9557:[433',14,15,'9558',3,14,'483],9559:[433',14,'483],9560',7,',-174',11,'9561',21,',225,','720],9562',':[910,-174,708',70,34,'9563',72,22,'9564',21,',-11,483],','9565',72,80,'9566',7,',303',11,'9567',7,47,'720],9568',7,47,'720],9569',7,14,15,'9570',7,14,'483],9571',7,14,'483],9572:[433',14,34,'9573',3,14,34,'9574:[433',14,34,'9575',7,',-174',5,'9576',7,',-267',5,'9577',7,',-174',5,'9578',7,14,34,'9579',7,14,34,'9580',7,14,'719]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/BoxDrawing.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{768',':[713,-528,0,-','369,-131],','769',3,4,'770:[704,-528',',0,-418,-81],','771:[674,-547',',0,-432,-67],','772:[637,-565',',0,-415,-85],','773:[838,-788',',0,-500,0],','774:[691,-528',',0,-401,-98],','775',':[666,-537,0,-','314,-185],','776',19,'419,-80],','777:[751,-491,0,-336,-131],778:[750,-537',',0,-356,-143],','779',3,'469,-31],','780:[704,-528',9,'781',':[730,-530,0,-','277,-211],782',32,'358,-142],783',3,28,'784:[828,-528',17,'785:[691,-528',17,'786',':[867,-532,0,-342,-158],','787',43,'788',43,'789:[867,-532,0,-116,68],790:[-70,255,0,-',4,'791:[-70,255,0,-',4,'792:[-58,288,0,-425,-223],793:[-58,288,0,-288,-86],794:[752,-531,0,-410,-93],795:[505,-352,0,-62,66],796',':[-33,313,0,-375,-190],','797',':[-70,272,0,-365,-135],','798',55,'799:[-70,287',',0,-356,-144],','800:[-140,206',59,'801:[75,287,0,-241,-22],802:[75,287,0,-94,125],803',':[-109,238,0,-',20,'804',63,23,'805:[-66,279',25,'806:[-88,423,0,-342,-158],807:[0,218,0,-363,-137],808:[44,173,0,-364,-135],809:[-107,239,0,-277,-222],810:[-86,260,0,-425,-93],811:[-104,242,0,-420,-95],812:[-83,259',9,'813:[-85,261',9,'814:[-78,241',17,'815:[-78,241',17,'816:[-108,235',11,'817:[-137,209',13,'818:[-137,187',15,'819:[-137,287',15,'820:[316,-189',11,'821',':[282,-224,0,-','414,-108],822',89,'510,-10],823:[580,74,0,-410,-43],824:[662,156,0,-410,31],825',53,'826:[-71,245,0,-425,-93],827:[-70,264,0,-353,-167],828:[-89,234,0,-410,-109],829:[719,-520,0,-350,-150],830:[881,-516,0,-314,-187],831:[938,-788',15,'838:[717,-544,0,-410,-107],844:[837,-547,0,-446,-81],857:[-66,368,0,-359,-89],860:[-79,242,0,-401,300],864:[674,-529,0,-432,398],865:[691,-534,0,-403,265],866:[-54,293,0,-432,377]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/CombDiacritMarks.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{8400:[846,-637',',0,-470,14],','8401:[846,-637',3,'8402',':[662,156,0,-','298,-223],8406',':[846,-508,0,-','500,-16],8407:[846,-508',3,'8411',':[666,-537,0,-','512,37],8412',13,'627,132],8413:[760,254,0,-753,256],8417',9,'515,79],8420:[1055,169,0,-998,519],8421:[662,155,0,-470,12],8422',7,'390,-111],8423:[760,172,0,-643,200],8424:[-109,238,0,-512,37],8425:[717,-544,0,-510,54],8426:[441,-65,0,-688,148],8427:[775,235,0,-505,208],8428:[-166,375',3,'8429:[-166,375',3,'8430:[-35,373,0,-490,-6],8431:[-35,373',3,'8432:[845,-543,0,-385,-115]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/CombDiactForSymbols.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{9251:[31,120,500,40,460]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/ControlPictures.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{8355:[676,0,611,11,583],8356:[684,16,500,21,477],8359:[676,14,1369,16,1341],8364:[672,12,500,29,478]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/CurrencySymbols.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{1025',':[916,0,','667,16,','641],1026:[676,97,856,40,809],1027:[963,0,','632,20,600],','1028',':[691,19,','685,37,','638],1029:[692,19,556,35,513],1030',':[676,0,','389,20,370],','1031',3,12,'1032:[676,96,500,3,478],1033:[676,18,1005,10,958],1034',11,'1054,21,1007],1035',11,'883,40,868],1036:[923',',0,759,21,741],','1038:[926',',22,722,15,699],','1039',':[676,176,770,21,753],','1040:[690,0,722,9,689],1041',11,4,'619],1042',11,4,'619],1043',11,6,'1044:[676,176,715,24,691],1045',11,4,'641],1046:[684,0,1130,32,1091],1047',8,'570,22,531],1048',11,'778,21,759],','1049:[926,0,',42,'1050:[684',21,'1051:[676,18,738,10,719],1052',11,'944,14,921],1053',11,42,'1054',8,'778,35,743],','1055',11,'762,13,751],1056',11,'611,16,600],1057',8,'709,36,674],1058',11,'667,31,636],1059:[676',23,'1060',11,'850,25,825],1061',11,'722,16,699],1062',25,'1063',11,'732,7,710],1064',11,'1020,21,1001],','1065:[676,176,',75,'1066',11,'805,41,757],1067',11,'1004,16,985],1068',11,'672,19,624],1069',8,9,'648],1070',8,'955,21,920],1071',11,'736,12,687],1072:[473,14,517,42,505],1073:[691',',14,500,25,476],','1074',':[461,0,','492,21,475],1075',94,'451,21,434','],1076:[461,143,541,19,524],1077',':[473,14,444,25,','427],1078:[467,0,','762,14,748],','1079:[473,17,446,25,420],1080:[461,0',',556,21,543],','1081:[691,0',103,'1082:[467',',0,556,22,543],','1083:[461,11,546,11,529],1084',94,'657,20,640],1085',94,'560,21,543],1086:[473',92,'1087:[461,0',103,'1088:[473,205,556,19,524],1089',99,'430],1090',94,'509,18,493],1091:[461,205,520,16,502],1092:[676,205,726,31,693],1093',94,'500,12,484],1094:[461,143',103,'1095',94,'559,20,542],1096',94,'841,21,824],','1097:[461,143,',128,'1098',94,'607,15,592],1099',94,'759,22,741],1100',94,'498,21,483],1101',':[473,14,453,24,429],','1102:[473,14,785,21,761],1103',94,'526,11,509],1105:[666,14,444,25,427],1106:[676,205,556,15,485],1107:[713,0,',97,'],1108',138,'1109:[473,14,389,25,361],1110:[691,0,278,15,256],1111:[666,0,278,-30,309],1112:[691,203,333,-57,263],1113:[461,11,760,11,745],1114',94,'775,21,760],1115',11,'556,15,534],1116:[713',107,'1118:[691,205,500,16,502],1119:[461,143',103,'1122',11,'793,31,745],1123',11,'602,15,587],1130',11,'1123,30,1088],1131',94,101,'1138',8,54,'1139:[473',92,'1140:[691,18,793,16,778],1141:[470,14,559,21,550],1168:[833,0,626,14,594],1169:[602,0,',97,']});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/Cyrillic.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{9312',':[690,19,695,0,695],','9313',3,'9314',3,'9315',3,'9316',3,'9317',3,'9318',3,'9319',3,'9320',3,'9398',3,'9399',3,'9400',3,'9401',3,'9402',3,'9403',3,'9404',3,'9405',3,'9406',3,'9407',3,'9408',3,'9409',3,'9410',3,'9411',3,'9412',3,'9413',3,'9414',3,'9415',3,'9416',3,'9417',3,'9418',3,'9419',3,'9420',3,'9421',3,'9422',3,'9423',3,'9424',3,'9425',3,'9426',3,'9427',3,'9428',3,'9429',3,'9430',3,'9431',3,'9432',3,'9433',3,'9434',3,'9435',3,'9436',3,'9437',3,'9438',3,'9439',3,'9440',3,'9441',3,'9442',3,'9443',3,'9444',3,'9445',3,'9446',3,'9447',3,'9448',3,'9449',3,'9450:[690,19,695,0,695]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/EnclosedAlphanum.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{8208',':[287,-171,333,44,287],','8209',3,'8210:[287,-171',',500,0,500],','8211:[271,-181',7,'8212:[271,-181,1000,0,1000],8213:[271,-181,2000,0,2000],8215:[-137,287,520,10,510],8216',':[691,-356,','333,70,254],8217',11,'333,79,263],','8218',':[155,180,',14,'8219',11,14,'8220',11,'500,32,486],8221',11,'500,14,468],','8222',16,25,'8223',11,25,'8224:[691,134,500,47,453],8225:[691,132,500,45,456],8226:[462,-42,560,70,490],8229:[156,13,666,82,584],8230:[156,13,1000,82,917],8240:[706,29,1110,61,1049],8241:[706,29,1472,61,1411],8242',':[713,-438,','310,75,235],','8243',33,'467,75,392],','8244',33,'625,75,550],','8245',33,34,'8246',33,37,'8247',33,40,'8248:[117,170,584,91,497],8249',':[415,-36,333,','51,305],8250',51,'28,282],8252:[691,13,625,81,544],8254:[838,-766',7,'8256:[725,-508,798,79,733],8260:[688,12,183,-168,345],8263:[689,13,947,57,892],8270:[236',',200,500,56,448],','8271:[472,180,333,67,251],8273:[706',57,'8279',33,'783,75,708]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/GeneralPunctuation.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{9651',':[811,127,1145,35,1110','],9655',':[791,284,1043,','70,1008],9661',3,'],9665',5,'35,973],9674:[795,289,790,45,745],9708',3,']});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/GeometricShapes.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{894:[472,180,333,82,266],900',':[692,-528,','300,118,263],901',3,'390,-2,392],','902',':[700,0,','722,9,689],','903:[472,-303,333,82,251],904',8,'800,10,791],905',8,'920,10,904],906',8,'530,10,516],908:[700,19,778,10,743],910',8,'860,10,846],911',8,'780,10,761],912',':[692,14,',6,'913:[690,0,',9,'914',':[676,0,667,','16,619],917',26,'16,641],918',26,'28,634],919:[676,0,778,21,759],921:[676',',0,389,20,370],','922:[676,0,778,30,769],924:[676,0,944,14,921],925:[676,18,722,16,701],927',':[691,19,778,35,743],','929:[676,0,611,16,600],932',26,'31,636],935:[676,0,722,16,699],938:[915',32,'939:[915,0,703,7,693],940',21,'644,25,618],','941',21,'444,28,429],','942',':[692,205,','585,12,545],','943',21,'326,15,304],','944:[692',',14,576,12,551],','945',':[473,14,',41,'946',46,'556,45,524],947',':[473,205,','518,12,501],948',21,'502,26,477],949',54,44,'950',46,'459,23,437],951',59,47,'952',21,'501,25,476],953',':[461,14,',50,'954:[473,0,581,21,559],955:[692,18,547,19,527],956:[461,205,610,45,588],957',54,'518,15,495],958',46,'468,23,439],959',54,'500,25,476],','960:[461,18,631,20,609],961',59,'547,45,515],962:[473,203,464,23,444],963',73,'568,25,529],964',73,'492,18,457],965:[473',52,'966',59,'653,24,629],','967',59,'612,21,586],968',59,'763,12,751],969',54,'733,26,708],','970:[666,14,335,-2,337],971:[666',52,'972',21,81,'973:[692',52,'974',21,99,'976:[697,10,500,54,462],977',21,'647,12,620],978:[692,0,743,7,733],981:[676,205,',92,'982',73,'864,9,851],984:[691,205,778,35,743],985',59,81,'986:[691,211,680,45,645],987:[503,203,504,23,483],988:[676,0,620,16,593],989:[461,205,491,45,458],990:[797,14,757,35,715],991:[692,0,485,29,453],992',46,'839,33,801],993:[639,205,611,29,583],1008:[473,19,563,12,546],1009',59,'511,25,486],1012',34,'1013',54,'444,25,430],1014',54,'444,14,419]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/GreekAndCoptic.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{120488:[690,0,735,9,689],120489',':[676,0,','667,16,619],120490',3,'620,16,593],120491:[690,0',',691,16,656],','120492',3,'679,16,641],120493',3,'693,28,634],120494',3,'810,21,759],120495',':[692,18,778,35,743],','120496',3,'421,20,370],120497',3,'820,30,769],120498:[690,0,707,9,674],120499',3,'972,14,921],120500:[676,18,722,16,701],120501',3,'623,28,595],120502:[691,19,778,35,743],120503',3,'780,21,759],120504',3,'611,16,600],120505',15,'120506',3,'665,14,627],120507',3,'667,31,636],120508:[692,0,722,3,699],120509',3,'836,18,818],120510',3,'747,16,699],120511:[692,0,800,3,785],120512:[692,0,778,35,723],120513:[676,14',7,'120514',':[473,14,','644,25,618],120515:[692,205,556,45,524],120516',':[473,205,','518,12,501],120517:[692,14,502,26,477],120518',41,'444,28,429],120519:[692,205,459,23,437],120520',43,'580,12,545],120521:[692,14,501,25,476],120522:[461,14,326,15,304],120523:[473,0,581,21,559],120524:[692,18,546,19,527],120525:[461,205,610,45,588],120526',41,'518,15,495],120527:[692,205,465,23,439],120528',41,'500,25,476],120529:[461,18,631,20,609],120530',43,'547,45,515],120531:[473,203,464,23,444],120532:[461,14,568,25,529],120533:[461,14,492,18,457],120534',41,'576,12,551],120535',43,'653,24,629],','120536',43,'612,21,586],120537',43,'763,12,751],120538',41,'734,26,708],120539:[707,14,515,25,491],120540',41,'444,25,430],120541:[692,14,647,12,620],120542:[473,19,563,12,546],120543:[676,205,',58,'120544',43,'511,25,486],120545:[461,14,864,9,851]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/GreekBold.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{120662:[690,0,690,25,665],120663',':[676,0,','636,80,594],120664',3,'591,80,569],120665:[690,0,720,40,680],120666',3,'635,80,597],120667',3,'653,25,623],120668',3,'715,80,635],','120669',':[691,19,778,35,743],','120670',3,'440,65,375],120671',3,'712,80,707],120672:[690,0,706,40,666],120673',3,'913,80,833],120674:[676,18,724,80,644],120675',3,'640,35,605],120676:[692,18,778,35,743],120677',3,12,'120678',3,'581,80,569],120679',14,'120680',3,'674,28,632],120681',3,'641,14,627],120682:[691,0,748,20,728],120683',3,'800,25,775],120684',3,'740,40,700],120685:[691,0,806,15,791],120686:[691,0,752,32,720],120687:[664,30,735,45,685],120688',':[473,14,','662,40,629],120689',':[692,205,','512,39,487],120690',':[473,205,','502,10,477],120691:[692,14,502,25,477],120692',39,'451,25,434],120693',41,'500,28,488],120694',43,'510,35,474],120695:[692,14,500,23,477],120696',':[461,14,','319,53,296],120697:[473,0,527,55,512],120698:[692,14,554,18,520],120699:[461,205,550,39,517],120700',39,'492,55,472],120701',41,'501,28,489],120702',39,'501,25,476],','120703',51,'594,10,572],120704',43,'511,38,486],120705',43,'498,26,486],120706',51,'520,25,552],120707',51,'479,6,472],120708',39,'514,35,489],120709',43,'634,25,609],','120710',43,'573,9,553],120711',43,'680,25,699],120712',51,'740,42,689],120713:[691,14,',58,'120714',39,'462,25,440],120715:[692,14,536,35,522],120716',39,'570,14,554],120717',41,73,'120718',43,'494,25,469],120719',51,'848,6,839]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/GreekSSBold.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{592',':[473,14,','512,13,476],593',3,'608,32,594],','594',3,6,'595:[691,14,560,74,523],596',3,'472,15,420],597:[473,161,477,30,445],598:[676,233,602,32,660],599:[683,14,650,32,660],600',3,'457,25,427],601',3,'457,19,421],602',3,'688,41,677],603',':[475,14,493,25,439],','604',19,'605:[475,14,683,25,658],606:[475,14,523,25,469],607:[461,203,338,-54,314],608:[683,245,627,37,662],609:[473,245,571,37,484],610:[461,11,590,35,555],611:[461,233,532,24,507],612:[450,10,514,17,497],613:[450,226,550,17,536],614:[683,0,550,14,532],615:[683,205,556,16,485],616:[691,0,292,21,262],617:[456,8,366,22,339],618:[461,0,297,26,264],619:[676,0,395,15,380],620:[676,0,446,17,428],621:[676,233,326,15,384],622:[676,236,619,24,603],623:[473,0,828,16,815],624',':[473,233,','859,16,836],625',23,'847,21,770],626',23,'625,-57,586],627',23,'610,21,668],628:[461,12,604,34,558],629',3,'520,34,485],630:[461,5,741,28,713],631:[477,2,696,42,653],632:[685,231,713,45,667],633:[463',',10,456,35,441],','634:[676',33,'635:[463,233,506,35,564],636',23,'426,10,416],637',23,'454,12,418],638:[484,0,359,15,386],639:[484,0,404,10,381],640',':[464,0,516,21,495],','641',41,'642:[473,218,389,25,361],643:[683,233,458,-36,406],644:[683,233,373,-57,430],645:[470,233,396,8,452],646:[683,243,399,-16,449],647:[513,129,333,19,332],648:[630,233,339,19,389],649:[461,14,556,9,538],650:[452,8,500,13,487],651:[465,10,534,23,511],652:[475,0,500,21,485],653:[475,0,722,23,707],654:[666,0,500,16,482],655:[464,0,633,46,587],656:[461,218,531,21,577],657:[461,150,538,21,517],658:[450,236,440,8,430],659:[450,307,440,8,430],660',':[683,0,417,55,426],','661',45,'662:[669,14,417,55,426],663:[473,232,479,72,447],664:[680,17,723,13,708],665:[464,0,456,15,441],666:[475,14,465,11,455],667:[537,11,600,29,595],668:[464,0,582,21,561],669:[691,233,394,-60,414],670:[461,215,556,22,543],671:[464,0,470,17,440],672:[582,205,636,34,659],673',':[683,0,500,55,426],','674',49,'675:[676,14,868,25,843],676:[676,236,810,25,794],677:[676,164,960,25,933],678:[630,12,626,19,598],679:[683,233,540,19,626],680:[630,12,700,19,690]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/IPAExtensions.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{160:[0,0,250,0,0],161:[501,203,333,82,252],162:[588,140,500,53,458],163:[684,16,500,21,477],164:[542,10,500,-26,526],165:[676,0,500,-64,547],166:[691,19,220,66,154],167:[691,132,500,57,443],168:[666,-537,333,-2,337],169',':[691,19,747,26,721],','170:[688,-397,300,-1,301],171',':[415,-36,500,','23,473],172:[399,-108,750,65,685],173:[287,-171,333,44,287],174',3,'175:[637,-565,333,1,331],176:[688,-402,400,57,343],177:[518,151,770,65,685],178',':[688,-275,300,','0,300],179:[688,-268,300,3,297],180:[713,-528,333,86,324],181:[461,206,556,33,536],182:[676,186,639,60,579],183:[417,-248,250,41,210],184:[0,218,333,68,294],185',9,'28,273],186:[688,-397,330,18,312],187',5,'27,477],188',':[688,12,750',',28,743],189',15,',-7,775],190',15,',23,733],191:[501,201,500,55,443],192:[963',',0,722,9,689],','193:[963',21,'194:[954',21,'195:[924',21,'196:[916',21,'197:[1000',21,'198:[676,0,1000,4,951],199:[691,218,722,49,687],200:[963',',0,667,16,641],','201:[963',33,'202:[954',33,'203:[916',33,'204:[963',',0,389,20,370],','205:[963',41,'206:[954',41,'207:[916',41,'208:[676,0,722,6,690],209:[924,18,722,16,701],210:[963',',19,778,35,743],','211:[963',49,'212:[954',49,'213:[924',49,'214:[916',49,'215:[538,33,702,66,636],216:[737,74,778,35,743],217:[963',',19,722,16,701],','218:[963',59,'219:[954',59,'220:[916',59,'221:[963,0,722,15,699],222:[676,0,611,16,600],223:[691,12,556,19,517],224:[713',',14,500,25,488],','225:[713',67,'226:[704',67,'227:[674',67,'228:[666',67,'229:[752',67,'230:[473,14,722,33,694],231:[473,218,444,25,430],232:[713',',14,444,25,427],','233:[713',79,'234:[704',79,'235:[666',79,'236:[713,0,278,14,257],237:[713,0,278,15,258],238:[704,0,278,-29,308],239:[666,0,278,-29,310],240:[691',',14,500,25,476],','241:[674,0,556,21,539],242:[713',87,'243:[713',87,'244:[704',87,'245:[674',87,'246:[666',87,'247:[537,31,570,33,537],248:[549,92,500,25,476],249:[713',',14,556,16,538],','250:[713',99,'251:[704',99,'252:[666',99,'253:[713',',205,500,16,482','],254:[676,205,556,19,524],255:[666',107,']});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/Latin1Supplement.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{256:[810',',0,722,9,689],','257:[600',',14,500,25,','488],258:[901',3,'259:[691',5,'488],260:[690,205,722,9,721],261',':[473,205,','500,25,569],262:[923',',19,722,49,687],','263:[713',',14,444,25,','430],264:[914',13,'265:[704',15,'430],266:[876',13,'267:[666',15,'430],268:[914',13,'269:[704',15,'430],270:[914,0,722,14,690],271:[709,14,680,25,710],272:[676,0,722,6,690],273:[676,14,556,25,534],274:[810,0',',667,16,641],','275:[600',15,'427],276:[901,0',29,'277:[691',15,'427],278:[876,0',29,'279:[666',15,'427],280:[676,205',29,'281',11,'444,25,435],282:[914,0',29,'283:[704',15,'427],284:[914',',19,778,37,755],','285:[704',',206,500,28,483],','286:[901',49,'287:[691',51,'288:[876',49,'289:[666',51,'290:[691,378,778,37,755],291:[863',51,'292:[914',',0,778,21,759],','293:[914',',0,556,15,534],','294:[676',63,'295:[676',65,'296:[884,0,389,14,379],297:[674,0,278,-47,318],298:[810',',0,389,20,370],','299:[600,0,278,-25,305],300:[900',71,'301:[691,0,278,-11,292],302:[676,205,389,20,389],303:[691,205,278,15,321],304:[876',71,'305:[461,0,278,15,256],306:[676,96,838,20,917],307:[691,203,552,15,531],308:[914,96,500,3,479],309:[704,203,333,-57,335],310:[676,378,778,30,769],311:[676,378,556,22,543],312:[470,0,600,19,627],313:[923,0',',667,19,638],','314:[923,0,278,15,260],315:[676,378',77,'316:[676,378,278,15,256],317:[691,0',77,'318:[709,0,457,15,442],319:[676,0',77,'320:[676,0,414,15,441],321:[676,0,667,18,638],322:[676,0,278,-22,303],323:[923,18',',722,16,701],','324:[713,0',',556,21,539],','325:[676,378',85,'326:[473,378',87,'327:[914,18',85,'328:[704,0',87,'329:[709,0,705,13,693],330:[676,96,732,14,712],331',11,'556,21,490],332:[810',',19,778,35,743],','333:[600',5,'476],334:[901',99,'335:[691',5,'476],336:[923',99,'337:[713',5,'476],338:[684,5,1000,22,981],339:[473,14,722,22,696],340:[923,0',',722,26,716],','341:[713,0',',444,28,434],','342:[676,378',111,'343:[473,378',113,'344:[914,0',111,'345:[704,0',113,'346:[923',',19,556,35,513],','347:[713,14,389,25,364],348:[914',123,'349',':[704,14,389,22,361],','350:[692,218,556,35,513],351:[473,218,389,25,361],352:[914',123,'353',127,'354:[676,218',',667,31,636],','355:[630,218,333,19,332],356:[914,0',133,'357:[709,12,415,19,445],358:[676,0',133,'359:[630,12,333,17,332],360:[886,19',85,'361:[674',',14,556,16,538],','362:[810,19',85,'363:[600',141,'364:[901,19',85,'365:[691',141,'366:[935,19',85,'367:[740',141,'368:[923,19',85,'369:[713',141,'370:[676,205',85,'371:[461,205,556,16,547],372:[914,15,1000,19,981],373:[704,14,722,23,707],374:[914',',0,722,15,699],','375:[704,205,500,16,482],376:[876',161,'377:[923',',0,667,28,634],','378:[713',',0,444,21,420],','379:[876',165,'380:[666',167,'381:[914',165,'382:[704',167,'383:[691,0,333,14,389]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/LatinExtendedA.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{7808:[923',',15,1000,19,981],','7809:[713',',14,722,23,707],','7810:[923',3,'7811:[713',5,'7812:[876',3,'7813:[666',5,'7922:[923,0,722,15,699],7923:[713,205,500,16,482]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/LatinExtendedAdditional.js");']
|
||||
]);
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* ../SourceForge/trunk/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js
|
||||
*
|
||||
* Copyright (c) 2010 Design Science, Inc.
|
||||
*
|
||||
* Part of the MathJax library.
|
||||
* See http://www.mathjax.org for details.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*/
|
||||
|
||||
MathJax.Unpack([
|
||||
['MathJax.Hub.Insert','(MathJax.OutputJax["HTML-CSS"].','FONTDATA.FONTS["STIXGeneral-bold"],{384:[676,14,553,-28,516],392:[576,14,568,30,574],400:[686,4,610,38,587],402:[706,155,500,0,498],405:[676,10,797,14,767],409:[691,0,533,12,533],410:[676,0,291,24,265],411:[666,0,536,60,526],414:[473,205,559,21,539],416:[732,19,778,35,788],417:[505,14,554,25,576],421:[673,205,550,10,515],426:[689,228,446,25,421],427:[630,218,347,18,331],429:[691,12,371,19,389],431:[810,19,796,16,836],432:[596,14,600,16,626],442:[450,237,441,9,415],443:[688,0,515,27,492],446:[541,10,527,78,449],448:[740,0,186,60,126],449:[740,0,313,60,253],450:[740,0,445,39,405],451:[691,13,333,81,251],496:[704,203,333,-57,335],506:[972,0,722,9,689],507:[923,14,500,25,488],508:[923,0,1000,4,951],509:[713,14,722,33,694],510:[923,74,778,35,743],511:[713,92,500,25,476],567:[461,203,333,-57,260]});MathJax.Ajax.loadComplete',1,'fontDir+"/General/Bold/LatinExtendedB.js");']
|
||||
]);
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user