Add test for basic MML Methods

Bug: T302628
Change-Id: Ib3d781a516e53392fb09a2c70b322805dcb43fcf
This commit is contained in:
Stegmujo 2022-12-23 13:33:57 +00:00
parent f8e25f5dce
commit 783797bb9a
No known key found for this signature in database
GPG key ID: BB616B7CC84186BE
7 changed files with 1060 additions and 2 deletions

1
.eslintignore Normal file
View file

@ -0,0 +1 @@
/tests/phpunit/unit/TexVC/TexUtilMMLLookup.json

View file

@ -22,7 +22,9 @@
"TestAutoloadClasses": {
"DummyPropertyDataTypeLookup": "tests/phpunit/DummyPropertyDataTypeLookup.php",
"MediaWiki\\Extension\\Math\\Tests\\MathWikibaseConnectorTestFactory": "tests/phpunit/unit/MathWikibaseConnectorTestFactory.php",
"MediaWiki\\Extension\\Math\\Tests\\MathMockHttpTrait": "tests/phpunit/MathMockHttpTrait.php"
"MediaWiki\\Extension\\Math\\Tests\\MathMockHttpTrait": "tests/phpunit/MathMockHttpTrait.php",
"MediaWiki\\Extension\\Math\\TexVC\\MMLmappings\\Util\\MMLTestUtilHTML": "tests/phpunit/unit/TexVC/MMLTestUtilHTML.php",
"MediaWiki\\Extension\\Math\\TexVC\\MMLmappings\\Util\\MMLTestUtil": "tests/phpunit/unit/TexVC/MMLTestUtil.php"
},
"DefaultUserOptions": {
"math": "mathml"

View file

@ -226,7 +226,7 @@ class BaseParsing {
return $mo->encapsulate( "…" );
}
public function genFrac( $node, $passedArgs, $name, $operatorContent,
public static function genFrac( $node, $passedArgs, $name, $operatorContent,
$left = null, $right = null, $thick = null, $style = null ) {
// Actually this is in AMSMethods, consider refactoring left, right, thick, style
$bm = new BaseMethods();

View file

@ -0,0 +1,251 @@
<?php
namespace MediaWiki\Extension\Math\Tests\TexVC;
use MediaWiki\Extension\Math\TexVC\MMLmappings\Util\MMLTestUtil;
use MediaWiki\Extension\Math\TexVC\MMLmappings\Util\MMLTestUtilHTML;
use MediaWiki\Extension\Math\TexVC\TexUtil;
use MediaWiki\Extension\Math\TexVC\TexVC;
use MediaWikiUnitTestCase;
/**
* This test is checking the MathML3 generation from LaTeX by TexVC.
* It creates a list of basic LaTeX statements from the supported functions
* of TexVC from TexUtil.php.
* @covers \MediaWiki\Extension\Math\TexVC\TexVC
*/
class MMLGenerationTest extends MediaWikiUnitTestCase {
private static $SKIPXMLVALIDATION = true;
private static $APPLYFILTER = false;
private static $APPLYCATEGORYFILTER = false;
private static $FILTEREDCATEGORIES = [ "fun_ar1" ];
private static $FILTERSTART = 15;
private static $FILTERLENGTH = 1;
private static $GENERATEHTML = false;
private static $GENERATEDHTMLFILE = __DIR__ . "/MMLGenerationTest-Output.html";
private static $MMLLOOKUPFILE = __DIR__ . "/TexUtilMMLLookup.json";
/**
* @dataProvider provideTestCases
*/
public function testTexVC( $title, $input ) {
$texVC = new TexVC();
$useMHChem = self::getMHChem( $title );
// Fetching the result from TexVC
$resultT = $texVC->check( $input, [
'debug' => false,
'usemathrm' => false,
'oldtexvc' => false,
'usemhchem' => $useMHChem
] );
// Comparing the result either to MathML result from Mathoid/Mathjax or from LaTeXML
$this->validateWithLookup( $resultT["input"], $input, $title );
}
private const SETS = [
'big_literals',
'box_functions',
'color_function',
'declh_function',
'definecolor_function',
'fun_ar1',
'fun_ar1nb',
'fun_ar1opt',
'fun_ar2',
'fun_ar2nb',
'fun_infix',
'fun_mhchem',
'hline_function',
'latex_function_names',
'left_function',
'mediawiki_function_names',
'mhchem_bond',
'mhchem_macro_1p',
'mhchem_macro_2p',
'mhchem_macro_2pc',
'mhchem_macro_2pu',
'mhchem_single_macro',
'nullary_macro',
'nullary_macro_in_mbox',
'other_delimiters1',
'other_delimiters2',
'right_function'
];
private const ARG_CNTS = [
"big_literals" => 1,
"box_functions" => 1,
"color_function" => 1,
"definecolor_function" => 1,
"fun_ar1" => 1,
"fun_ar1nb" => 1,
"fun_ar1opt" => 1,
"fun_ar2" => 2,
"fun_infix" => 1,
"fun_ar2nb" => 5,
"fun_mhchem" => 1,
"left_function" => 1,
"right_function" => 1,
"mhchem_bond" => 1,
"mhchem_macro_1p" => 1,
"mhchem_macro_2p" => 2,
"mhchem_macro_2pu" => 1
];
private const OTHER_ARGS = [
"declh_function" => true,
];
private const SAMPLE_ARGS_RIGHT = [
"big_literals" => '(',
"color_function" => '{red}{red}',
"mhchem_macro_2pc" => '{red}{red}',
"definecolor_function" => '{ultramarine}{RGB}{0,32,96}',
"fun_ar2nb" => '{_1^2}{_3^4}\\sum',
"left_function" => '( \\right.',
"mhchem_bond" => '{-}',
"right_function" => ')',
];
private const SAMPLE_ARGS_LEFT = [
"right_function" => '\\left(',
];
private const ENTRY_ARGS = [
"\\atop" => "{ a \\atop b }",
"\\choose" => "{ a \\choose b }",
"\\over" => "{a \\over b }",
"\\hline" => "\n\\begin{array}{|c||c|} a & b \\\\\n\\hline\n1&2 \n\\end{array}\n",
"\\nolimits" => " \mathop{\\rm cos}\\nolimits^2",
// "\\limits" =>" \mathop{\\rm cos}\\limits^2",
"\\limits" => "\\lim\\limits_{x \\to 2}",
"\\displaystyle" => "\\frac{\\displaystyle \\sum_{k=1}^N k^2}{a}",
"\\scriptscriptstyle" => "\\frac ab + \\scriptscriptstyle{\\frac cd + \\frac ef} + \\frac gh",
"\\scriptstyle" => "{\\scriptstyle \\partial \\Omega}",
"\\textstyle" => "\\textstyle \\sum_{k=1}^N k^2",
// Failing examples: ="\\vbox{{a}{b}}""\\vbox{\\vhb{eight}\\vhb{gnat}}"
// "\\vbox{\\hbox{eight}\\hbox{gnat}}";
"\\vbox" => "\\vbox{ab}",
"\\emph" => "\\mathit{\\emph{a}} \\emph{b}",
// it seems not supported for math, not in any other en_wiki test etc. probably make sense
// to drop or substitute with \\vert
"\\vline" => "\n\\begin{array}{|c||c|} a & b \\vline c \\\\
\\hline\n1&2 \n\\end{array}\n",
];
/**
* Check from the test title if it is a mhchem-test.
* Return a boolean indicator for this.
* @param string $title test title
* @return bool indicator if the test is mhchem related
*/
public static function getMHChem( string $title ): bool {
$useMHChem = false;
if ( str_contains( $title, "chem" ) ) {
$useMHChem = true;
}
return $useMHChem;
}
public function validateWithLookup( $resTexVC, $input, $title ): void {
$mathMLtexVC = MMLTestUtil::getMMLwrapped( $resTexVC );
$mmlLatexML = (array)MMLTestUtil::getJSON( self::$MMLLOOKUPFILE );
$resMML3latexml = $mmlLatexML[$input] ?? "merror";
if ( str_contains( $resMML3latexml, "merror" ) ) {
$errorMessage = "Error Rendering in MathJax";
MMLTestUtilHTML::generateHTMLtableRow( self::$GENERATEDHTMLFILE, $title, $input, $errorMessage,
$mathMLtexVC, false, self::$GENERATEHTML );
$this->assertTrue( true, $errorMessage );
} else {
MMLTestUtilHTML::generateHTMLtableRow( self::$GENERATEDHTMLFILE, $title, $input, $resMML3latexml,
$mathMLtexVC, false, self::$GENERATEHTML );
$resMML3latexml = $resMML3latexml ?: "<math> no MML3 from Lookup </math>";
if ( !self::$SKIPXMLVALIDATION ) {
$this->assertXmlStringEqualsXmlString( $resMML3latexml, $mathMLtexVC );
} else {
$this->assertTrue( true );
}
}
}
protected function setUp(): void {
MMLTestUtilHTML::generateHTMLstart( self::$GENERATEDHTMLFILE, "MathML(MathJax3)", self::$GENERATEHTML );
}
protected function tearDown(): void {
MMLTestUtilHTML::generateHTMLEnd( self::$GENERATEDHTMLFILE, self::$GENERATEHTML );
}
/**
* Generate testcases with texutil, filter them and provide them to the testrunner.
* @return array
*/
public static function provideTestCases() {
$groups = self::createGroups();
$overAllCtr = 0;
$finalCases = [];
$lookupEntriesGenerated = [];
foreach ( $groups as $category => $group ) {
if ( self::$APPLYCATEGORYFILTER && !in_array( $category, self::$FILTEREDCATEGORIES ) ) {
continue;
}
$indexCtr = 0;
foreach ( $group as $case ) {
$title = "set#" . $overAllCtr . ": " . $category . $indexCtr;
$finalCases[] = [ $title, $case ];
$indexCtr++;
$overAllCtr++;
}
}
if ( self::$APPLYFILTER ) {
$finalCases = array_slice( $finalCases, self::$FILTERSTART, self::$FILTERLENGTH );
}
return $finalCases;
}
private static function addArgs( $set, $entry ) {
if ( isset( self::ENTRY_ARGS[$entry] ) ) {
// Some entries have specific mappings for non-group related arguments
return ( self::ENTRY_ARGS[$entry] );
}
$count = !isset( self::ARG_CNTS[$set] ) ? 0 : self::ARG_CNTS[$set];
$argsR = '';
$argsL = '';
if ( !isset( self::SAMPLE_ARGS_RIGHT[$set] ) ) {
for ( $i = 0; $i < $count; $i++ ) {
$argsR .= '{' . chr( 97 + $i ) . '}';
}
} else {
$argsR = self::SAMPLE_ARGS_RIGHT[$set];
}
if ( isset( self::SAMPLE_ARGS_LEFT[$set] ) ) {
$argsL = self::SAMPLE_ARGS_LEFT[$set];
}
if ( $argsR == '' && isset( self::OTHER_ARGS[$set] ) ) {
if ( self::OTHER_ARGS[$set] ) {
return "{" . $entry . " a }";
}
}
if ( str_starts_with( $set, "mhchem" ) ) {
$rendering = '\\ce{' . $argsL . $entry . $argsR . '}';
} else {
$rendering = $argsL . $entry . $argsR;
}
return $rendering;
}
private static function createGroups() {
$groups = [];
foreach ( self::SETS as $set ) {
$entries = array_keys( TexUtil::getInstance()->getBaseElements()[$set] );
foreach ( $entries as &$entry ) {
$entry = self::addArgs( $set, $entry );
}
$groups[$set] = $entries;
}
return $groups;
}
}

View file

@ -0,0 +1,43 @@
<?php
namespace MediaWiki\Extension\Math\TexVC\MMLmappings\Util;
use DOMDocument;
use InvalidArgumentException;
use MediaWiki\Extension\Math\TexVC\MMLnodes\MMLmath;
/**
* This Utility class has some methods for running
* tests for the Tex to MathML converters in TexVC.
* @author Johannes Stegmüller
*/
class MMLTestUtil {
public static function getJSON( $filePath ) {
if ( !file_exists( $filePath ) ) {
throw new InvalidArgumentException( "No testfile found at specified path: " . $filePath );
}
$file = file_get_contents( $filePath );
return json_decode( $file );
}
public static function prettifyXML( $xml, $replaceHeader = true ) {
$dom = new DOMDocument();
// Initial block (must before load xml string)
$dom->preserveWhiteSpace = false;
$dom->formatOutput = true;
// End initial block
$dom->loadXML( $xml );
$out = $dom->saveXML();
if ( $replaceHeader ) {
// replacing the xml header in a hacky way
return substr_replace( $out, "", 0, 22 );
}
return $out;
}
public static function getMMLwrapped( $input ) {
$math = new MMLmath();
$mml = $math->encapsulate( $input->renderMML() );
return self::prettifyXML( $mml );
}
}

View file

@ -0,0 +1,72 @@
<?php
namespace MediaWiki\Extension\Math\TexVC\MMLmappings\Util;
/**
* This class contains functions to generate a
* HTML File which shows the formula converted to MathML
* by TexVC
* @author Johannes Stegmüller
*/
class MMLTestUtilHTML {
public static function generateHTMLtableItem( $input, $bold = false ) {
if ( !$bold ) {
return "<th class=\"tg-0lax\">" . $input . "</th>";
} else {
return "<th class=\"tg-0lax\">" . "<b>" . $input . "</b>" . "</th>";
}
}
public static function generateHTMLEnd( $filePath, $active = true ) {
if ( !$active ) {
return;
}
$file = fopen( $filePath, 'a' );
$stringData = "</thead>
</table>";
fwrite( $file, $stringData );
fclose( $file );
}
public static function generateHTMLtableRow( $filePath, $id, $inputTex, $mmlMj3, $mmlGen,
$bold = false, $active = true ) {
if ( !$active ) {
return;
}
$file = fopen( $filePath, 'a' );
$stringData = "<tr>"
. self::generateHTMLtableItem( $id, $bold )
. self::generateHTMLtableItem( $inputTex, $bold )
. self::generateHTMLtableItem( $mmlMj3, $bold )
. self::generateHTMLtableItem( $mmlGen, $bold ) .
"</tr>";
fwrite( $file, $stringData );
fclose( $file ); // tbd only open close once for all tests
}
public static function generateHTMLstart( $filePath, $name, $active = true ) {
if ( !$active ) {
return;
}
$file = fopen( $filePath, 'w' ); // or die("error");
$stringData = "<style type=\"text/css\">
.tg {border-collapse:collapse;border-spacing:0;}
.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial," .
" sans-serif;font-size:14px;
overflow:hidden;padding:10px 5px;word-break:normal;}
.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial," .
" sans-serif;font-size:14px;
font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
.tg .tg-0lax{text-align:left;vertical-align:top}
</style>
<table class=\"tg\">
<thead>";
fwrite( $file, $stringData );
fclose( $file );
self::generateHTMLtableRow( $filePath, "-", "Tex-Input", $name, "MathML(TexVC)", true );
}
}

View file

@ -0,0 +1,689 @@
{
"\\Big(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo minsize=\"1.623em\" maxsize=\"1.623em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\Bigg(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo minsize=\"2.470em\" maxsize=\"2.470em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\Biggl(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"2.470em\" maxsize=\"2.470em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\Biggr(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"2.470em\" maxsize=\"2.470em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\Bigl(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"1.623em\" maxsize=\"1.623em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\Bigr(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"1.623em\" maxsize=\"1.623em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\big(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\bigg(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo minsize=\"2.047em\" maxsize=\"2.047em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\biggl(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"2.047em\" maxsize=\"2.047em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\biggr(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"2.047em\" maxsize=\"2.047em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\bigl(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\bigr(": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">(<\/mo>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\hbox{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle displaystyle=\"false\" scriptlevel=\"0\">\n <mtext>a<\/mtext>\n <\/mstyle>\n <\/mrow>\n<\/math>",
"\\mbox{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle displaystyle=\"false\" scriptlevel=\"0\">\n <mtext>a<\/mtext>\n <\/mstyle>\n <\/mrow>\n<\/math>",
"\\text{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext>a<\/mtext>\n <\/mrow>\n<\/math>",
"\\vbox{ab}": "",
"\\color{red}{red}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mstyle mathcolor=\"red\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>r<\/mi>\n <mi>e<\/mi>\n <mi>d<\/mi>\n <\/mrow>\n <\/mstyle>\n<\/math>",
"\\pagecolor{red}{red}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mtext mathcolor=\"red\">\\pagecolor<\/mtext>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>r<\/mi>\n <mi>e<\/mi>\n <mi>d<\/mi>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>r<\/mi>\n <mi>e<\/mi>\n <mi>d<\/mi>\n <\/mrow>\n<\/math>",
"{\\bf a }": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"bold\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"{\\cal a }": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi data-mjx-variant=\"-tex-calligraphic\" mathvariant=\"script\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"{\\it a }": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi data-mjx-variant=\"-tex-mathit\" mathvariant=\"italic\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"{\\rm a }": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\definecolor{ultramarine}{RGB}{0,32,96}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\"><\/math>",
"\\acute{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo data-mjx-pseudoscript=\"true\">&#xB4;<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\bar{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo stretchy=\"false\">&#xAF;<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\bcancel{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <menclose notation=\"downdiagonalstrike\">\n <mi>a<\/mi>\n <\/menclose>\n <\/mrow>\n<\/math>",
"\\bmod{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo lspace=\"thickmathspace\" rspace=\"thickmathspace\">mod<\/mo>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\boldsymbol{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"bold-italic\">a<\/mi>\n <\/mrow>\n<\/math>",
"\\breve{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>&#x2D8;<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\cancel{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <menclose notation=\"updiagonalstrike\">\n <mi>a<\/mi>\n <\/menclose>\n <\/mrow>\n<\/math>",
"\\check{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo stretchy=\"false\">&#x2C7;<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ddot{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>&#xA8;<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\dot{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>&#x2D9;<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathit{\\emph{a}} \\emph{b}": "",
"\\grave{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo data-mjx-pseudoscript=\"true\">`<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\hat{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo stretchy=\"false\">^<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\hphantom{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mpadded height=\"0\" depth=\"0\">\n <mphantom>\n <mi>a<\/mi>\n <\/mphantom>\n <\/mpadded>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathcal{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi data-mjx-variant=\"-tex-calligraphic\" mathvariant=\"script\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathclose{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"CLOSE\">\n <mi>a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathfrak{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"fraktur\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathit{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi data-mjx-variant=\"-tex-mathit\" mathvariant=\"italic\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathopen{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mi>a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathord{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathpunct{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"PUNCT\">\n <mi>a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathsf{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"sans-serif\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\mathtt{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"monospace\">a<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\overleftarrow{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>&#x2190;<\/mo>\n <\/mover>\n <\/mrow>\n<\/math>",
"\\overleftrightarrow{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>&#x2194;<\/mo>\n <\/mover>\n <\/mrow>\n<\/math>",
"\\overline{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo accent=\"true\">&#x2015;<\/mo>\n <\/mover>\n <\/mrow>\n<\/math>",
"\\overrightarrow{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>&#x2192;<\/mo>\n <\/mover>\n <\/mrow>\n<\/math>",
"\\phantom{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mphantom>\n <mi>a<\/mi>\n <\/mphantom>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\pmod{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mspace width=\"0.444em\"><\/mspace>\n <mo stretchy=\"false\">(<\/mo>\n <mi>mod<\/mi>\n <mspace width=\"0.333em\"><\/mspace>\n <mi>a<\/mi>\n <mo stretchy=\"false\">)<\/mo>\n <\/mrow>\n<\/math>",
"\\sqrt{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <msqrt>\n <mi>a<\/mi>\n <\/msqrt>\n <\/mrow>\n<\/math>",
"\\textbf{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathvariant=\"bold\">a<\/mtext>\n <\/mrow>\n<\/math>",
"\\textit{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathvariant=\"italic\">a<\/mtext>\n <\/mrow>\n<\/math>",
"\\textrm{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext>a<\/mtext>\n <\/mrow>\n<\/math>",
"\\textsf{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathvariant=\"sans-serif\">a<\/mtext>\n <\/mrow>\n<\/math>",
"\\texttt{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathvariant=\"monospace\">a<\/mtext>\n <\/mrow>\n<\/math>",
"\\tilde{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo stretchy=\"false\">~<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\underline{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <munder>\n <mi>a<\/mi>\n <mo accent=\"true\">&#x2015;<\/mo>\n <\/munder>\n <\/mrow>\n<\/math>",
"\\vec{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo stretchy=\"false\">&#x2192;<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\vphantom{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mpadded width=\"0\">\n <mphantom>\n <mi>a<\/mi>\n <\/mphantom>\n <\/mpadded>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\widehat{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>^<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\widetilde{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>a<\/mi>\n <mo>~<\/mo>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\xcancel{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <menclose notation=\"updiagonalstrike downdiagonalstrike\">\n <mi>a<\/mi>\n <\/menclose>\n <\/mrow>\n<\/math>",
"\\mathbb{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"double-struck\">a<\/mi>\n <\/mrow>\n<\/math>",
"\\mathbf{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"bold\">a<\/mi>\n <\/mrow>\n<\/math>",
"\\mathbin{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"BIN\">\n <mi>a<\/mi>\n <\/mrow>\n<\/math>",
"\\mathop{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <mi>a<\/mi>\n <\/mrow>\n<\/math>",
"\\mathrel{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"REL\">\n <mi>a<\/mi>\n <\/mrow>\n<\/math>",
"\\mathrm{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">a<\/mi>\n <\/mrow>\n<\/math>",
"\\operatorname{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-texclass=\"OP\" mathvariant=\"normal\">a<\/mi>\n<\/math>",
"\\overbrace{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <mover>\n <mi>a<\/mi>\n <mo>&#x23DE;<\/mo>\n <\/mover>\n <\/mrow>\n<\/math>",
"\\underbrace{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <munder>\n <mi>a<\/mi>\n <mo>&#x23DF;<\/mo>\n <\/munder>\n <\/mrow>\n<\/math>",
"\\xleftarrow{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mover>\n <mstyle scriptlevel=\"0\">\n <mo data-mjx-texclass=\"REL\">&#x2190;<\/mo>\n <\/mstyle>\n <mpadded width=\"+0.833em\" lspace=\"0.556em\" voffset=\"-.2em\" height=\"-.2em\">\n <mi>a<\/mi>\n <mspace depth=\".25em\"><\/mspace>\n <\/mpadded>\n <\/mover>\n<\/math>",
"\\xrightarrow{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mover>\n <mstyle scriptlevel=\"0\">\n <mo data-mjx-texclass=\"REL\">&#x2192;<\/mo>\n <\/mstyle>\n <mpadded width=\"+0.833em\" lspace=\"0.278em\" voffset=\"-.2em\" height=\"-.2em\">\n <mi>a<\/mi>\n <mspace depth=\".25em\"><\/mspace>\n <\/mpadded>\n <\/mover>\n<\/math>",
"\\binom{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">(<\/mo>\n <\/mrow>\n <mfrac linethickness=\"0\">\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">)<\/mo>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\cancelto{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <msup>\n <menclose notation=\"updiagonalstrike updiagonalarrow northeastarrow\">\n <mi>b<\/mi>\n <\/menclose>\n <mpadded depth=\"-.1em\" height=\"+.1em\" voffset=\".1em\">\n <mi>a<\/mi>\n <\/mpadded>\n <\/msup>\n <\/mrow>\n<\/math>",
"\\cfrac{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mrow>\n <mpadded height=\"8.6pt\" depth=\"3pt\" width=\"0\">\n <mrow><\/mrow>\n <\/mpadded>\n <mstyle displaystyle=\"false\" scriptlevel=\"0\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>a<\/mi>\n <\/mrow>\n <\/mstyle>\n <\/mrow>\n <mrow>\n <mpadded height=\"8.6pt\" depth=\"3pt\" width=\"0\">\n <mrow><\/mrow>\n <\/mpadded>\n <mstyle displaystyle=\"false\" scriptlevel=\"0\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>b<\/mi>\n <\/mrow>\n <\/mstyle>\n <\/mrow>\n <\/mfrac>\n <\/mrow>\n<\/math>",
"\\dbinom{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle displaystyle=\"true\" scriptlevel=\"0\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"2.047em\" maxsize=\"2.047em\">(<\/mo>\n <\/mrow>\n <mfrac linethickness=\"0\">\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"2.047em\" maxsize=\"2.047em\">)<\/mo>\n <\/mrow>\n <\/mrow>\n <\/mstyle>\n <\/mrow>\n<\/math>",
"\\dfrac{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle displaystyle=\"true\" scriptlevel=\"0\">\n <mfrac>\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <\/mstyle>\n <\/mrow>\n<\/math>",
"\\frac{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <\/mrow>\n<\/math>",
"\\overset{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mover>\n <mi>b<\/mi>\n <mi>a<\/mi>\n <\/mover>\n <\/mrow>\n<\/math>",
"\\stackrel{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"REL\">\n <mover>\n <mrow data-mjx-texclass=\"OP\">\n <mi>b<\/mi>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>a<\/mi>\n <\/mrow>\n <\/mover>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\tbinom{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle displaystyle=\"false\" scriptlevel=\"0\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">(<\/mo>\n <\/mrow>\n <mfrac linethickness=\"0\">\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">)<\/mo>\n <\/mrow>\n <\/mrow>\n <\/mstyle>\n <\/mrow>\n<\/math>",
"\\tfrac{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle displaystyle=\"false\" scriptlevel=\"0\">\n <mfrac>\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <\/mstyle>\n <\/mrow>\n<\/math>",
"\\underset{a}{b}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <munder>\n <mi>b<\/mi>\n <mi>a<\/mi>\n <\/munder>\n <\/mrow>\n<\/math>",
"\\sideset{_1^2}{_3^4}\\sum": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <mmultiscripts data-mjx-script-align=\"left\">\n <mo data-mjx-texclass=\"OP\">&#x2211;<\/mo>\n <mrow data-mjx-texclass=\"ORD\">\n <mn>3<\/mn>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mn>4<\/mn>\n <\/mrow>\n <mprescripts><\/mprescripts>\n <mrow data-mjx-texclass=\"ORD\">\n <mn>1<\/mn>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mn>2<\/mn>\n <\/mrow>\n <\/mmultiscripts>\n <\/mrow>\n<\/math>",
"{ a \\atop b }": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac linethickness=\"0\">\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <\/mrow>\n<\/math>",
"{ a \\choose b }": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OPEN\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">(<\/mo>\n <\/mrow>\n <mfrac linethickness=\"0\">\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <mrow data-mjx-texclass=\"CLOSE\">\n <mo minsize=\"1.2em\" maxsize=\"1.2em\">)<\/mo>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"{a \\over b }": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <\/mrow>\n<\/math>",
"\\ce{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">a<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\n\\begin{array}{|c||c|} a & b \\\\\n\\hline\n1&2 \n\\end{array}\n": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <menclose notation=\"left right\" data-padding=\"0\">\n <mtable columnalign=\"center center\" columnspacing=\"1em\" rowspacing=\"4pt\" columnlines=\"solid\" rowlines=\"solid\" frame=\"\">\n <mtr>\n <mtd>\n <mi>a<\/mi>\n <\/mtd>\n <mtd>\n <mi>b<\/mi>\n <\/mtd>\n <\/mtr>\n <mtr>\n <mtd>\n <mn>1<\/mn>\n <\/mtd>\n <mtd>\n <mn>2<\/mn>\n <\/mtd>\n <\/mtr>\n <\/mtable>\n <\/menclose>\n <\/mrow>\n<\/math>",
"\\Pr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">Pr<\/mo>\n<\/math>",
"\\arccos": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>arccos<\/mi>\n<\/math>",
"\\arcsin": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>arcsin<\/mi>\n<\/math>",
"\\arctan": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>arctan<\/mi>\n<\/math>",
"\\arg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>arg<\/mi>\n<\/math>",
"\\cos": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>cos<\/mi>\n<\/math>",
"\\cosh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>cosh<\/mi>\n<\/math>",
"\\cot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>cot<\/mi>\n<\/math>",
"\\coth": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>coth<\/mi>\n<\/math>",
"\\csc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>csc<\/mi>\n<\/math>",
"\\deg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>deg<\/mi>\n<\/math>",
"\\det": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">det<\/mo>\n<\/math>",
"\\dim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>dim<\/mi>\n<\/math>",
"\\exp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>exp<\/mi>\n<\/math>",
"\\gcd": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">gcd<\/mo>\n<\/math>",
"\\hom": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>hom<\/mi>\n<\/math>",
"\\inf": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">inf<\/mo>\n<\/math>",
"\\ker": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ker<\/mi>\n<\/math>",
"\\lg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>lg<\/mi>\n<\/math>",
"\\lim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">lim<\/mo>\n<\/math>",
"\\liminf": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">lim&#x2006;inf<\/mo>\n<\/math>",
"\\limsup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">lim&#x2006;sup<\/mo>\n<\/math>",
"\\ln": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ln<\/mi>\n<\/math>",
"\\log": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>log<\/mi>\n<\/math>",
"\\max": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">max<\/mo>\n<\/math>",
"\\min": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">min<\/mo>\n<\/math>",
"\\sec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>sec<\/mi>\n<\/math>",
"\\sin": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>sin<\/mi>\n<\/math>",
"\\sinh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>sinh<\/mi>\n<\/math>",
"\\sup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">sup<\/mo>\n<\/math>",
"\\tan": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>tan<\/mi>\n<\/math>",
"\\tanh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>tanh<\/mi>\n<\/math>",
"\\left( \\right.": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"INNER\">\n <mo data-mjx-texclass=\"OPEN\">(<\/mo>\n <mo data-mjx-texclass=\"CLOSE\" fence=\"true\" stretchy=\"true\" symmetric=\"true\"><\/mo>\n <\/mrow>\n<\/math>",
"\\arccot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>arccot<\/mi>\n<\/math>",
"\\arccsc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>arccsc<\/mi>\n<\/math>",
"\\arcsec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>arcsec<\/mi>\n<\/math>",
"\\sen": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>sen<\/mi>\n<\/math>",
"\\sgn": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>sgn<\/mi>\n<\/math>",
"\\ce{\\bond{-}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\bond<\/mtext>\n <mtext>-<\/mtext>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\ce{a}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <merror data-mjx-error=\"Extra close brace or missing open brace\" title=\"Extra close brace or missing open brace\">\n <mtext>{\\ce {{\\ce {a}}}}<\/mtext>\n <\/merror>\n<\/math>",
"\\ce{\\mathbf{a}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <merror data-mjx-error=\"Missing argument for \\text\" title=\"Missing argument for \\text\">\n <mtext>{\\ce {{\\mathbf {a}}}}<\/mtext>\n <\/merror>\n<\/math>",
"\\ce{\\frac{a}{b}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <merror data-mjx-error=\"Missing argument for \\text\" title=\"Missing argument for \\text\">\n <mtext>{\\ce {{\\frac {a}{b}}}}<\/mtext>\n <\/merror>\n<\/math>",
"\\ce{\\overset{a}{b}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <merror data-mjx-error=\"Missing argument for \\text\" title=\"Missing argument for \\text\">\n <mtext>{\\ce {{\\overset {a}{b}}}}<\/mtext>\n <\/merror>\n<\/math>",
"\\ce{\\underset{a}{b}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <merror data-mjx-error=\"Missing argument for \\text\" title=\"Missing argument for \\text\">\n <mtext>{\\ce {{\\underset {a}{b}}}}<\/mtext>\n <\/merror>\n<\/math>",
"\\ce{\\color{red}{red}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle mathcolor=\"\\text\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>r<\/mi>\n <mi>e<\/mi>\n <mi>d<\/mi>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>r<\/mi>\n <mi>e<\/mi>\n <mi>d<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mstyle>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\underbrace{a}}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"OP\">\n <munder>\n <mtext>a<\/mtext>\n <mo>&#x23DF;<\/mo>\n <\/munder>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Alpha}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Alpha<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Beta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Beta<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Chi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Chi<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Delta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x394;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Epsilon}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Epsilon<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Eta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Eta<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Gamma}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x393;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Iota}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Iota<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Kappa}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Kappa<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Lambda}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x39B;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Mu}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Mu<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Nu}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Nu<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Omega}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x3A9;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Omicron}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Omicron<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Phi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x3A6;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Pi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x3A0;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Psi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x3A8;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Rho}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Rho<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Sigma}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x3A3;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Tau}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Tau<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Theta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x398;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Upsilon}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">&#x3A5;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\Zeta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Zeta<\/mtext>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\alpha}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B1;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\approx}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\"><\/mrow>\n <mo>&#x2248;<\/mo>\n <mrow data-mjx-texclass=\"ORD\"><\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\beta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B2;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\ca}": "",
"\\ce{\\chi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C7;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\delta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B4;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\epsilon}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3F5;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\eta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B7;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\gamma}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B3;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\iota}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B9;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\kappa}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3BA;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\lambda}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3BB;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\mu}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3BC;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\nu}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3BD;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\omega}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C9;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\omicron}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3BF;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\phi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3D5;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\pi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C0;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\pm}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\"><\/mrow>\n <mo>&#xB1;<\/mo>\n <mrow data-mjx-texclass=\"ORD\"><\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\psi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C8;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\rho}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C1;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\sigma}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C3;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\tau}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C4;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\theta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B8;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\upsilon}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C5;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\varepsilon}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B5;<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\varkappa}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3F0;<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\varphi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C6;<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\varpi}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3D6;<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\varrho}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3F1;<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\varsigma}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3C2;<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\vartheta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3D1;<\/mi>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\ce{\\zeta}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi>&#x3B6;<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
"\\And": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&amp;<\/mi>\n<\/math>",
"\\Bbbk": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"double-struck\">k<\/mi>\n<\/math>",
"\\Box": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x25FB;<\/mi>\n<\/math>",
"\\Bumpeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x224E;<\/mo>\n<\/math>",
"\\Cap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D2;<\/mo>\n<\/math>",
"\\Cup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D3;<\/mo>\n<\/math>",
"\\Delta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x394;<\/mi>\n<\/math>",
"\\Diamond": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x25CA;<\/mi>\n<\/math>",
"\\Finv": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2132;<\/mi>\n<\/math>",
"\\Game": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2141;<\/mi>\n<\/math>",
"\\Gamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x393;<\/mi>\n<\/math>",
"\\Im": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2111;<\/mi>\n<\/math>",
"\\Lambda": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x39B;<\/mi>\n<\/math>",
"\\Leftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D0;<\/mo>\n<\/math>",
"\\Leftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D4;<\/mo>\n<\/math>",
"\\Lleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21DA;<\/mo>\n<\/math>",
"\\Longleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x27F8;<\/mo>\n<\/math>",
"\\Longleftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x27FA;<\/mo>\n<\/math>",
"\\Longrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x27F9;<\/mo>\n<\/math>",
"\\Lsh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21B0;<\/mo>\n<\/math>",
"\\Omega": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x3A9;<\/mi>\n<\/math>",
"\\P": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mtext mathcolor=\"red\">\\P<\/mtext>\n<\/math>",
"\\Phi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x3A6;<\/mi>\n<\/math>",
"\\Pi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x3A0;<\/mi>\n<\/math>",
"\\Psi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x3A8;<\/mi>\n<\/math>",
"\\Re": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x211C;<\/mi>\n<\/math>",
"\\Rightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D2;<\/mo>\n<\/math>",
"\\Rrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21DB;<\/mo>\n<\/math>",
"\\Rsh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21B1;<\/mo>\n<\/math>",
"\\S": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#xA7;<\/mi>\n<\/math>",
"\\Sigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x3A3;<\/mi>\n<\/math>",
"\\Subset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D0;<\/mo>\n<\/math>",
"\\Supset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D1;<\/mo>\n<\/math>",
"\\Theta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x398;<\/mi>\n<\/math>",
"\\Upsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x3A5;<\/mi>\n<\/math>",
"\\Vdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22A9;<\/mo>\n<\/math>",
"\\Vvdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22AA;<\/mo>\n<\/math>",
"\\Xi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x39E;<\/mi>\n<\/math>",
"\\aleph": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2135;<\/mi>\n<\/math>",
"\\alpha": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B1;<\/mi>\n<\/math>",
"\\amalg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A3F;<\/mo>\n<\/math>",
"\\angle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2220;<\/mi>\n<\/math>",
"\\approx": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2248;<\/mo>\n<\/math>",
"\\approxeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x224A;<\/mo>\n<\/math>",
"\\ast": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2217;<\/mo>\n<\/math>",
"\\asymp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x224D;<\/mo>\n<\/math>",
"\\backepsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x220D;<\/mo>\n<\/math>",
"\\backprime": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">&#x2035;<\/mi>\n<\/math>",
"\\backsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x223D;<\/mo>\n<\/math>",
"\\backsimeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22CD;<\/mo>\n<\/math>",
"\\barwedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22BC;<\/mo>\n<\/math>",
"\\because": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2235;<\/mo>\n<\/math>",
"\\beta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B2;<\/mi>\n<\/math>",
"\\beth": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2136;<\/mi>\n<\/math>",
"\\between": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x226C;<\/mo>\n<\/math>",
"\\bigcap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x22C2;<\/mo>\n<\/math>",
"\\bigcirc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x25EF;<\/mo>\n<\/math>",
"\\bigcup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x22C3;<\/mo>\n<\/math>",
"\\bigodot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2A00;<\/mo>\n<\/math>",
"\\bigoplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2A01;<\/mo>\n<\/math>",
"\\bigotimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2A02;<\/mo>\n<\/math>",
"\\bigsqcup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2A06;<\/mo>\n<\/math>",
"\\bigstar": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2605;<\/mi>\n<\/math>",
"\\bigtriangledown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x25BD;<\/mo>\n<\/math>",
"\\bigtriangleup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x25B3;<\/mo>\n<\/math>",
"\\biguplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2A04;<\/mo>\n<\/math>",
"\\bigvee": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x22C1;<\/mo>\n<\/math>",
"\\bigwedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x22C0;<\/mo>\n<\/math>",
"\\blacklozenge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x29EB;<\/mi>\n<\/math>",
"\\blacksquare": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x25FC;<\/mi>\n<\/math>",
"\\blacktriangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x25B4;<\/mi>\n<\/math>",
"\\blacktriangledown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x25BE;<\/mi>\n<\/math>",
"\\blacktriangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x25C2;<\/mo>\n<\/math>",
"\\blacktriangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x25B8;<\/mo>\n<\/math>",
"\\bot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x22A5;<\/mi>\n<\/math>",
"\\bowtie": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22C8;<\/mo>\n<\/math>",
"\\boxdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22A1;<\/mo>\n<\/math>",
"\\boxminus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x229F;<\/mo>\n<\/math>",
"\\boxplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x229E;<\/mo>\n<\/math>",
"\\boxtimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22A0;<\/mo>\n<\/math>",
"\\bullet": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2219;<\/mo>\n<\/math>",
"\\bumpeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x224F;<\/mo>\n<\/math>",
"\\cap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2229;<\/mo>\n<\/math>",
"\\cdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22C5;<\/mo>\n<\/math>",
"\\cdots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22EF;<\/mo>\n<\/math>",
"\\centerdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x22C5;<\/mo>\n<\/math>",
"\\checkmark": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2713;<\/mi>\n<\/math>",
"\\chi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C7;<\/mi>\n<\/math>",
"\\circ": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2218;<\/mo>\n<\/math>",
"\\circeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2257;<\/mo>\n<\/math>",
"\\circlearrowleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21BA;<\/mo>\n<\/math>",
"\\circlearrowright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21BB;<\/mo>\n<\/math>",
"\\circledS": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x24C8;<\/mi>\n<\/math>",
"\\circledast": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x229B;<\/mo>\n<\/math>",
"\\circledcirc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x229A;<\/mo>\n<\/math>",
"\\circleddash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x229D;<\/mo>\n<\/math>",
"\\clubsuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2663;<\/mi>\n<\/math>",
"\\colon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"PUNCT\">:<\/mo>\n<\/math>",
"\\complement": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2201;<\/mi>\n<\/math>",
"\\cong": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2245;<\/mo>\n<\/math>",
"\\coprod": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2210;<\/mo>\n<\/math>",
"\\cup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x222A;<\/mo>\n<\/math>",
"\\curlyeqprec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22DE;<\/mo>\n<\/math>",
"\\curlyeqsucc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22DF;<\/mo>\n<\/math>",
"\\curlyvee": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22CE;<\/mo>\n<\/math>",
"\\curlywedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22CF;<\/mo>\n<\/math>",
"\\curvearrowleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21B6;<\/mo>\n<\/math>",
"\\curvearrowright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21B7;<\/mo>\n<\/math>",
"\\dagger": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2020;<\/mo>\n<\/math>",
"\\daleth": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2138;<\/mi>\n<\/math>",
"\\dashv": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22A3;<\/mo>\n<\/math>",
"\\ddagger": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2021;<\/mo>\n<\/math>",
"\\ddots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22F1;<\/mo>\n<\/math>",
"\\delta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B4;<\/mi>\n<\/math>",
"\\diagdown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2572;<\/mi>\n<\/math>",
"\\diagup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2571;<\/mi>\n<\/math>",
"\\diamond": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22C4;<\/mo>\n<\/math>",
"\\diamondsuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2662;<\/mi>\n<\/math>",
"\\digamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3DD;<\/mi>\n<\/math>",
"\\frac{\\displaystyle \\sum_{k=1}^N k^2}{a}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mstyle displaystyle=\"true\" scriptlevel=\"0\">\n <munderover>\n <mo data-mjx-texclass=\"OP\">&#x2211;<\/mo>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>k<\/mi>\n <mo>=<\/mo>\n <mn>1<\/mn>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>N<\/mi>\n <\/mrow>\n <\/munderover>\n <msup>\n <mi>k<\/mi>\n <mrow data-mjx-texclass=\"ORD\">\n <mn>2<\/mn>\n <\/mrow>\n <\/msup>\n <\/mstyle>\n <mi>a<\/mi>\n <\/mfrac>\n <\/mrow>\n<\/math>",
"\\div": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#xF7;<\/mo>\n<\/math>",
"\\divideontimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22C7;<\/mo>\n<\/math>",
"\\doteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2250;<\/mo>\n<\/math>",
"\\doteqdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2251;<\/mo>\n<\/math>",
"\\dotplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2214;<\/mo>\n<\/math>",
"\\dots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2026;<\/mo>\n<\/math>",
"\\dotsb": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22EF;<\/mo>\n<\/math>",
"\\dotsc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2026;<\/mo>\n<\/math>",
"\\dotsi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22EF;<\/mo>\n<\/math>",
"\\dotsm": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22EF;<\/mo>\n<\/math>",
"\\dotso": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2026;<\/mo>\n<\/math>",
"\\doublebarwedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A5E;<\/mo>\n<\/math>",
"\\downdownarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21CA;<\/mo>\n<\/math>",
"\\downharpoonleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C3;<\/mo>\n<\/math>",
"\\downharpoonright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C2;<\/mo>\n<\/math>",
"\\ell": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2113;<\/mi>\n<\/math>",
"\\emptyset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2205;<\/mi>\n<\/math>",
"\\epsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3F5;<\/mi>\n<\/math>",
"\\eqcirc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2256;<\/mo>\n<\/math>",
"\\eqsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2242;<\/mo>\n<\/math>",
"\\eqslantgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A96;<\/mo>\n<\/math>",
"\\eqslantless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A95;<\/mo>\n<\/math>",
"\\equiv": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2261;<\/mo>\n<\/math>",
"\\eta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B7;<\/mi>\n<\/math>",
"\\eth": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#xF0;<\/mi>\n<\/math>",
"\\exists": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2203;<\/mi>\n<\/math>",
"\\fallingdotseq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2252;<\/mo>\n<\/math>",
"\\flat": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x266D;<\/mi>\n<\/math>",
"\\forall": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2200;<\/mi>\n<\/math>",
"\\frown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2322;<\/mo>\n<\/math>",
"\\gamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B3;<\/mi>\n<\/math>",
"\\geq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2265;<\/mo>\n<\/math>",
"\\geqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2267;<\/mo>\n<\/math>",
"\\geqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A7E;<\/mo>\n<\/math>",
"\\gets": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2190;<\/mo>\n<\/math>",
"\\gg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x226B;<\/mo>\n<\/math>",
"\\ggg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D9;<\/mo>\n<\/math>",
"\\gimel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2137;<\/mi>\n<\/math>",
"\\gnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A8A;<\/mo>\n<\/math>",
"\\gneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A88;<\/mo>\n<\/math>",
"\\gneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2269;<\/mo>\n<\/math>",
"\\gnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22E7;<\/mo>\n<\/math>",
"\\gtrapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A86;<\/mo>\n<\/math>",
"\\gtrdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D7;<\/mo>\n<\/math>",
"\\gtreqless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22DB;<\/mo>\n<\/math>",
"\\gtreqqless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A8C;<\/mo>\n<\/math>",
"\\gtrless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2277;<\/mo>\n<\/math>",
"\\gtrsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2273;<\/mo>\n<\/math>",
"\\gvertneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2269;<\/mo>\n<\/math>",
"\\hbar": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">&#x210F;<\/mi>\n<\/math>",
"\\heartsuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2661;<\/mi>\n<\/math>",
"\\hookleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21A9;<\/mo>\n<\/math>",
"\\hookrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21AA;<\/mo>\n<\/math>",
"\\hslash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x210F;<\/mi>\n<\/math>",
"\\iff": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mstyle scriptlevel=\"0\">\n <mspace width=\"0.278em\"><\/mspace>\n <\/mstyle>\n <mo stretchy=\"false\">&#x27FA;<\/mo>\n <mstyle scriptlevel=\"0\">\n <mspace width=\"0.278em\"><\/mspace>\n <\/mstyle>\n<\/math>",
"\\iiiint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2A0C;<\/mo>\n<\/math>",
"\\iiint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x222D;<\/mo>\n<\/math>",
"\\iint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x222C;<\/mo>\n<\/math>",
"\\imath": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x131;<\/mi>\n<\/math>",
"\\implies": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mstyle scriptlevel=\"0\">\n <mspace width=\"0.278em\"><\/mspace>\n <\/mstyle>\n <mo stretchy=\"false\">&#x27F9;<\/mo>\n <mstyle scriptlevel=\"0\">\n <mspace width=\"0.278em\"><\/mspace>\n <\/mstyle>\n<\/math>",
"\\in": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2208;<\/mo>\n<\/math>",
"\\infty": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x221E;<\/mi>\n<\/math>",
"\\injlim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">inj&#x2006;lim<\/mo>\n<\/math>",
"\\int": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x222B;<\/mo>\n<\/math>",
"\\intbar": "",
"\\intercal": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22BA;<\/mo>\n<\/math>",
"\\iota": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B9;<\/mi>\n<\/math>",
"\\jmath": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x237;<\/mi>\n<\/math>",
"\\kappa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3BA;<\/mi>\n<\/math>",
"\\lVert": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OPEN\" fence=\"false\" stretchy=\"false\">&#x2016;<\/mo>\n<\/math>",
"\\lambda": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3BB;<\/mi>\n<\/math>",
"\\land": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2227;<\/mo>\n<\/math>",
"\\ldots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2026;<\/mo>\n<\/math>",
"\\leftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2190;<\/mo>\n<\/math>",
"\\leftarrowtail": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21A2;<\/mo>\n<\/math>",
"\\leftharpoondown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21BD;<\/mo>\n<\/math>",
"\\leftharpoonup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21BC;<\/mo>\n<\/math>",
"\\leftleftarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C7;<\/mo>\n<\/math>",
"\\leftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2194;<\/mo>\n<\/math>",
"\\leftrightarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C6;<\/mo>\n<\/math>",
"\\leftrightharpoons": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21CB;<\/mo>\n<\/math>",
"\\leftrightsquigarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21AD;<\/mo>\n<\/math>",
"\\leftthreetimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22CB;<\/mo>\n<\/math>",
"\\leq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2264;<\/mo>\n<\/math>",
"\\leqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2266;<\/mo>\n<\/math>",
"\\leqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A7D;<\/mo>\n<\/math>",
"\\lessapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A85;<\/mo>\n<\/math>",
"\\lessdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D6;<\/mo>\n<\/math>",
"\\lesseqgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22DA;<\/mo>\n<\/math>",
"\\lesseqqgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A8B;<\/mo>\n<\/math>",
"\\lessgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2276;<\/mo>\n<\/math>",
"\\lesssim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2272;<\/mo>\n<\/math>",
"\\lim\\limits_{x \\to 2}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <munder>\n <mo data-mjx-texclass=\"OP\">lim<\/mo>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>x<\/mi>\n <mo accent=\"false\" stretchy=\"false\">&#x2192;<\/mo>\n <mn>2<\/mn>\n <\/mrow>\n <\/munder>\n<\/math>",
"\\ll": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x226A;<\/mo>\n<\/math>",
"\\lll": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D8;<\/mo>\n<\/math>",
"\\lnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A89;<\/mo>\n<\/math>",
"\\lneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2A87;<\/mo>\n<\/math>",
"\\lneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2268;<\/mo>\n<\/math>",
"\\lnot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#xAC;<\/mi>\n<\/math>",
"\\lnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22E6;<\/mo>\n<\/math>",
"\\longleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x27F5;<\/mo>\n<\/math>",
"\\longleftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x27F7;<\/mo>\n<\/math>",
"\\longmapsto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x27FC;<\/mo>\n<\/math>",
"\\longrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x27F6;<\/mo>\n<\/math>",
"\\looparrowleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21AB;<\/mo>\n<\/math>",
"\\looparrowright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21AC;<\/mo>\n<\/math>",
"\\lor": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2228;<\/mo>\n<\/math>",
"\\lozenge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x25CA;<\/mi>\n<\/math>",
"\\ltimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22C9;<\/mo>\n<\/math>",
"\\lvertneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2268;<\/mo>\n<\/math>",
"\\mapsto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21A6;<\/mo>\n<\/math>",
"\\measuredangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2221;<\/mi>\n<\/math>",
"\\mho": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2127;<\/mi>\n<\/math>",
"\\mid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2223;<\/mo>\n<\/math>",
"\\mod": "",
"\\models": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22A8;<\/mo>\n<\/math>",
"\\mp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2213;<\/mo>\n<\/math>",
"\\mu": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3BC;<\/mi>\n<\/math>",
"\\multimap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22B8;<\/mo>\n<\/math>",
"\\nLeftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21CD;<\/mo>\n<\/math>",
"\\nLeftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21CE;<\/mo>\n<\/math>",
"\\nRightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21CF;<\/mo>\n<\/math>",
"\\nVDash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22AF;<\/mo>\n<\/math>",
"\\nVdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22AE;<\/mo>\n<\/math>",
"\\nabla": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2207;<\/mi>\n<\/math>",
"\\natural": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x266E;<\/mi>\n<\/math>",
"\\ncong": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2247;<\/mo>\n<\/math>",
"\\nearrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2197;<\/mo>\n<\/math>",
"\\neg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#xAC;<\/mi>\n<\/math>",
"\\neq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2260;<\/mo>\n<\/math>",
"\\nexists": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2204;<\/mi>\n<\/math>",
"\\ngeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2271;<\/mo>\n<\/math>",
"\\ngeqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2271;<\/mo>\n<\/math>",
"\\ngeqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2A88;<\/mo>\n<\/math>",
"\\ngtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x226F;<\/mo>\n<\/math>",
"\\ni": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x220B;<\/mo>\n<\/math>",
"\\nleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x219A;<\/mo>\n<\/math>",
"\\nleftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x21AE;<\/mo>\n<\/math>",
"\\nleq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2270;<\/mo>\n<\/math>",
"\\nleqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2270;<\/mo>\n<\/math>",
"\\nleqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2A87;<\/mo>\n<\/math>",
"\\nless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x226E;<\/mo>\n<\/math>",
"\\nmid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2224;<\/mo>\n<\/math>",
" \\mathop{\\rm cos}\\nolimits^2": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <msup>\n <mrow data-mjx-texclass=\"OP\">\n <mrow data-mjx-texclass=\"ORD\">\n <mi mathvariant=\"normal\">c<\/mi>\n <mi mathvariant=\"normal\">o<\/mi>\n <mi mathvariant=\"normal\">s<\/mi>\n <\/mrow>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mn>2<\/mn>\n <\/mrow>\n <\/msup>\n<\/math>",
"\\not": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"REL\">\n <mpadded width=\"0\">\n <mtext>&#x29F8;<\/mtext>\n <\/mpadded>\n <\/mrow>\n<\/math>",
"\\notin": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2209;<\/mo>\n<\/math>",
"\\nparallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2226;<\/mo>\n<\/math>",
"\\nprec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2280;<\/mo>\n<\/math>",
"\\npreceq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x22E0;<\/mo>\n<\/math>",
"\\nrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x219B;<\/mo>\n<\/math>",
"\\nshortmid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2224;<\/mo>\n<\/math>",
"\\nshortparallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2226;<\/mo>\n<\/math>",
"\\nsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2241;<\/mo>\n<\/math>",
"\\nsubseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2288;<\/mo>\n<\/math>",
"\\nsubseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2288;<\/mo>\n<\/math>",
"\\nsucc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2281;<\/mo>\n<\/math>",
"\\nsucceq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x22E1;<\/mo>\n<\/math>",
"\\nsupseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2289;<\/mo>\n<\/math>",
"\\nsupseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2289;<\/mo>\n<\/math>",
"\\ntriangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22EA;<\/mo>\n<\/math>",
"\\ntrianglelefteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22EC;<\/mo>\n<\/math>",
"\\ntriangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22EB;<\/mo>\n<\/math>",
"\\ntrianglerighteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22ED;<\/mo>\n<\/math>",
"\\nu": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3BD;<\/mi>\n<\/math>",
"\\nvDash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22AD;<\/mo>\n<\/math>",
"\\nvdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22AC;<\/mo>\n<\/math>",
"\\nwarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2196;<\/mo>\n<\/math>",
"\\odot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2299;<\/mo>\n<\/math>",
"\\oiiint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mtext mathcolor=\"red\">\\oiiint<\/mtext>\n<\/math>",
"\\oiint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mtext mathcolor=\"red\">\\oiint<\/mtext>\n<\/math>",
"\\oint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x222E;<\/mo>\n<\/math>",
"\\ointctrclockwise": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mtext mathcolor=\"red\">\\ointctrclockwise<\/mtext>\n<\/math>",
"\\omega": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C9;<\/mi>\n<\/math>",
"\\ominus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2296;<\/mo>\n<\/math>",
"\\oplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2295;<\/mo>\n<\/math>",
"\\oslash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2298;<\/mo>\n<\/math>",
"\\otimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2297;<\/mo>\n<\/math>",
"\\parallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2225;<\/mo>\n<\/math>",
"\\partial": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2202;<\/mi>\n<\/math>",
"\\perp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22A5;<\/mo>\n<\/math>",
"\\phi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3D5;<\/mi>\n<\/math>",
"\\pi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C0;<\/mi>\n<\/math>",
"\\pitchfork": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22D4;<\/mo>\n<\/math>",
"\\pm": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#xB1;<\/mo>\n<\/math>",
"\\prec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x227A;<\/mo>\n<\/math>",
"\\precapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AB7;<\/mo>\n<\/math>",
"\\preccurlyeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x227C;<\/mo>\n<\/math>",
"\\preceq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AAF;<\/mo>\n<\/math>",
"\\precnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AB9;<\/mo>\n<\/math>",
"\\precneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AB5;<\/mo>\n<\/math>",
"\\precnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22E8;<\/mo>\n<\/math>",
"\\precsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x227E;<\/mo>\n<\/math>",
"\\prime": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">&#x2032;<\/mi>\n<\/math>",
"\\prod": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x220F;<\/mo>\n<\/math>",
"\\projlim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">proj&#x2006;lim<\/mo>\n<\/math>",
"\\propto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x221D;<\/mo>\n<\/math>",
"\\psi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C8;<\/mi>\n<\/math>",
"\\qquad": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mstyle scriptlevel=\"0\">\n <mspace width=\"2em\"><\/mspace>\n <\/mstyle>\n<\/math>",
"\\quad": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mstyle scriptlevel=\"0\">\n <mspace width=\"1em\"><\/mspace>\n <\/mstyle>\n<\/math>",
"\\rVert": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"CLOSE\" fence=\"false\" stretchy=\"false\">&#x2016;<\/mo>\n<\/math>",
"\\rho": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C1;<\/mi>\n<\/math>",
"\\rightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2192;<\/mo>\n<\/math>",
"\\rightarrowtail": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21A3;<\/mo>\n<\/math>",
"\\rightharpoondown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C1;<\/mo>\n<\/math>",
"\\rightharpoonup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C0;<\/mo>\n<\/math>",
"\\rightleftarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C4;<\/mo>\n<\/math>",
"\\rightrightarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C9;<\/mo>\n<\/math>",
"\\rightsquigarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21DD;<\/mo>\n<\/math>",
"\\rightthreetimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22CC;<\/mo>\n<\/math>",
"\\risingdotseq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2253;<\/mo>\n<\/math>",
"\\rtimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22CA;<\/mo>\n<\/math>",
"\\frac ab + \\scriptscriptstyle{\\frac cd + \\frac ef} + \\frac gh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mi>a<\/mi>\n <mi>b<\/mi>\n <\/mfrac>\n <\/mrow>\n <mo>+<\/mo>\n <mstyle displaystyle=\"false\" scriptlevel=\"2\">\n <mrow data-mjx-texclass=\"ORD\">\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mi>c<\/mi>\n <mi>d<\/mi>\n <\/mfrac>\n <\/mrow>\n <mo>+<\/mo>\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mi>e<\/mi>\n <mi>f<\/mi>\n <\/mfrac>\n <\/mrow>\n <\/mrow>\n <mo>+<\/mo>\n <mrow data-mjx-texclass=\"ORD\">\n <mfrac>\n <mi>g<\/mi>\n <mi>h<\/mi>\n <\/mfrac>\n <\/mrow>\n <\/mstyle>\n<\/math>",
"{\\scriptstyle \\partial \\Omega}": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mstyle displaystyle=\"false\" scriptlevel=\"1\">\n <mi>&#x2202;<\/mi>\n <mi mathvariant=\"normal\">&#x3A9;<\/mi>\n <\/mstyle>\n <\/mrow>\n<\/math>",
"\\searrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2198;<\/mo>\n<\/math>",
"\\setminus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2216;<\/mo>\n<\/math>",
"\\sharp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x266F;<\/mi>\n<\/math>",
"\\shortmid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2223;<\/mo>\n<\/math>",
"\\shortparallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2225;<\/mo>\n<\/math>",
"\\sigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C3;<\/mi>\n<\/math>",
"\\sim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x223C;<\/mo>\n<\/math>",
"\\simeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2243;<\/mo>\n<\/math>",
"\\smallfrown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2322;<\/mo>\n<\/math>",
"\\smallsetminus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2216;<\/mo>\n<\/math>",
"\\smallsmile": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2323;<\/mo>\n<\/math>",
"\\smile": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2323;<\/mo>\n<\/math>",
"\\spadesuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2660;<\/mi>\n<\/math>",
"\\sphericalangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x2222;<\/mi>\n<\/math>",
"\\sqcap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2293;<\/mo>\n<\/math>",
"\\sqcup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2294;<\/mo>\n<\/math>",
"\\sqsubset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x228F;<\/mo>\n<\/math>",
"\\sqsubseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2291;<\/mo>\n<\/math>",
"\\sqsupset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2290;<\/mo>\n<\/math>",
"\\sqsupseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2292;<\/mo>\n<\/math>",
"\\square": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x25FB;<\/mi>\n<\/math>",
"\\star": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22C6;<\/mo>\n<\/math>",
"\\strokeint": "",
"\\subset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2282;<\/mo>\n<\/math>",
"\\subseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2286;<\/mo>\n<\/math>",
"\\subseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AC5;<\/mo>\n<\/math>",
"\\subsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x228A;<\/mo>\n<\/math>",
"\\subsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2ACB;<\/mo>\n<\/math>",
"\\succ": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x227B;<\/mo>\n<\/math>",
"\\succapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AB8;<\/mo>\n<\/math>",
"\\succcurlyeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x227D;<\/mo>\n<\/math>",
"\\succeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AB0;<\/mo>\n<\/math>",
"\\succnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2ABA;<\/mo>\n<\/math>",
"\\succneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AB6;<\/mo>\n<\/math>",
"\\succnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22E9;<\/mo>\n<\/math>",
"\\succsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x227F;<\/mo>\n<\/math>",
"\\sum": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">&#x2211;<\/mo>\n<\/math>",
"\\supset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2283;<\/mo>\n<\/math>",
"\\supseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2287;<\/mo>\n<\/math>",
"\\supseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2AC6;<\/mo>\n<\/math>",
"\\supsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x228B;<\/mo>\n<\/math>",
"\\supsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2ACC;<\/mo>\n<\/math>",
"\\surd": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo stretchy=\"false\">&#x221A;<\/mo>\n <\/mrow>\n<\/math>",
"\\swarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2199;<\/mo>\n<\/math>",
"\\tau": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C4;<\/mi>\n<\/math>",
"\\textstyle \\sum_{k=1}^N k^2": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mstyle displaystyle=\"false\" scriptlevel=\"0\">\n <munderover>\n <mo data-mjx-texclass=\"OP\">&#x2211;<\/mo>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>k<\/mi>\n <mo>=<\/mo>\n <mn>1<\/mn>\n <\/mrow>\n <mrow data-mjx-texclass=\"ORD\">\n <mi>N<\/mi>\n <\/mrow>\n <\/munderover>\n <msup>\n <mi>k<\/mi>\n <mrow data-mjx-texclass=\"ORD\">\n <mn>2<\/mn>\n <\/mrow>\n <\/msup>\n <\/mstyle>\n<\/math>",
"\\therefore": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2234;<\/mo>\n<\/math>",
"\\theta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B8;<\/mi>\n<\/math>",
"\\thickapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2248;<\/mo>\n<\/math>",
"\\thicksim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x223C;<\/mo>\n<\/math>",
"\\times": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#xD7;<\/mo>\n<\/math>",
"\\to": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo accent=\"false\" stretchy=\"false\">&#x2192;<\/mo>\n<\/math>",
"\\top": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x22A4;<\/mi>\n<\/math>",
"\\triangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x25B3;<\/mi>\n<\/math>",
"\\triangledown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">&#x25BD;<\/mi>\n<\/math>",
"\\triangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x25C3;<\/mo>\n<\/math>",
"\\trianglelefteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22B4;<\/mo>\n<\/math>",
"\\triangleq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x225C;<\/mo>\n<\/math>",
"\\triangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x25B9;<\/mo>\n<\/math>",
"\\trianglerighteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22B5;<\/mo>\n<\/math>",
"\\upharpoonleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21BF;<\/mo>\n<\/math>",
"\\upharpoonright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21BE;<\/mo>\n<\/math>",
"\\uplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x228E;<\/mo>\n<\/math>",
"\\upsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C5;<\/mi>\n<\/math>",
"\\upuparrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21C8;<\/mo>\n<\/math>",
"\\vDash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x22A8;<\/mo>\n<\/math>",
"\\varDelta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x394;<\/mi>\n<\/math>",
"\\varGamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x393;<\/mi>\n<\/math>",
"\\varLambda": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x39B;<\/mi>\n<\/math>",
"\\varOmega": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3A9;<\/mi>\n<\/math>",
"\\varPhi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3A6;<\/mi>\n<\/math>",
"\\varPi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3A0;<\/mi>\n<\/math>",
"\\varSigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3A3;<\/mi>\n<\/math>",
"\\varTheta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x398;<\/mi>\n<\/math>",
"\\varUpsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3A5;<\/mi>\n<\/math>",
"\\varXi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x39E;<\/mi>\n<\/math>",
"\\varepsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B5;<\/mi>\n<\/math>",
"\\varinjlim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <munder>\n <mi>lim<\/mi>\n <mo>&#x2192;<\/mo>\n <\/munder>\n <\/mrow>\n<\/math>",
"\\varkappa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3F0;<\/mi>\n<\/math>",
"\\varliminf": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <munder>\n <mi>lim<\/mi>\n <mo accent=\"true\">&#x2015;<\/mo>\n <\/munder>\n <\/mrow>\n<\/math>",
"\\varlimsup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <mover>\n <mi>lim<\/mi>\n <mo accent=\"true\">&#x2015;<\/mo>\n <\/mover>\n <\/mrow>\n<\/math>",
"\\varnothing": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">&#x2205;<\/mi>\n<\/math>",
"\\varointclockwise": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mtext mathcolor=\"red\">\\varointclockwise<\/mtext>\n<\/math>",
"\\varphi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C6;<\/mi>\n<\/math>",
"\\varpi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3D6;<\/mi>\n<\/math>",
"\\varprojlim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"OP\">\n <munder>\n <mi>lim<\/mi>\n <mo>&#x2190;<\/mo>\n <\/munder>\n <\/mrow>\n<\/math>",
"\\varpropto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x221D;<\/mo>\n<\/math>",
"\\varrho": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3F1;<\/mi>\n<\/math>",
"\\varsigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3C2;<\/mi>\n<\/math>",
"\\varsubsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x228A;<\/mo>\n<\/math>",
"\\varsubsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2ACB;<\/mo>\n<\/math>",
"\\varsupsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x228B;<\/mo>\n<\/math>",
"\\varsupsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x2ACC;<\/mo>\n<\/math>",
"\\vartheta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3D1;<\/mi>\n<\/math>",
"\\vartriangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">&#x25B3;<\/mo>\n<\/math>",
"\\vartriangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22B2;<\/mo>\n<\/math>",
"\\vartriangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22B3;<\/mo>\n<\/math>",
"\\vdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22A2;<\/mo>\n<\/math>",
"\\vdots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo>&#x22EE;<\/mo>\n <\/mrow>\n<\/math>",
"\\vee": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2228;<\/mo>\n<\/math>",
"\\veebar": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x22BB;<\/mo>\n<\/math>",
"\n\\begin{array}{|c||c|} a & b \\vline c \\\\\n\\hline\n1&2 \n\\end{array}\n": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <menclose notation=\"left right\" data-padding=\"0\">\n <mtable columnalign=\"center center\" columnspacing=\"1em\" rowspacing=\"4pt\" columnlines=\"solid\" rowlines=\"solid\" frame=\"\">\n <mtr>\n <mtd>\n <mi>a<\/mi>\n <\/mtd>\n <mtd>\n <mi>b<\/mi>\n <mtext mathcolor=\"red\">\\vline<\/mtext>\n <mi>c<\/mi>\n <\/mtd>\n <\/mtr>\n <mtr>\n <mtd>\n <mn>1<\/mn>\n <\/mtd>\n <mtd>\n <mn>2<\/mn>\n <\/mtd>\n <\/mtr>\n <\/mtable>\n <\/menclose>\n <\/mrow>\n<\/math>",
"\\wedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2227;<\/mo>\n<\/math>",
"\\wp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2118;<\/mi>\n<\/math>",
"\\wr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x2240;<\/mo>\n<\/math>",
"\\xi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3BE;<\/mi>\n<\/math>",
"\\zeta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>&#x3B6;<\/mi>\n<\/math>",
"\\AA": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\AA<\/mtext>\n <\/mrow>\n<\/math>",
"\\Coppa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Coppa<\/mtext>\n <\/mrow>\n<\/math>",
"\\Digamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Digamma<\/mtext>\n <\/mrow>\n<\/math>",
"\\Koppa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Koppa<\/mtext>\n <\/mrow>\n<\/math>",
"\\Sampi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Sampi<\/mtext>\n <\/mrow>\n<\/math>",
"\\Stigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\Stigma<\/mtext>\n <\/mrow>\n<\/math>",
"\\coppa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\coppa<\/mtext>\n <\/mrow>\n<\/math>",
"\\euro": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\euro<\/mtext>\n <\/mrow>\n<\/math>",
"\\geneuro": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\geneuro<\/mtext>\n <\/mrow>\n<\/math>",
"\\geneuronarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\geneuronarrow<\/mtext>\n <\/mrow>\n<\/math>",
"\\geneurowide": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\geneurowide<\/mtext>\n <\/mrow>\n<\/math>",
"\\koppa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\koppa<\/mtext>\n <\/mrow>\n<\/math>",
"\\officialeuro": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\officialeuro<\/mtext>\n <\/mrow>\n<\/math>",
"\\sampi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\sampi<\/mtext>\n <\/mrow>\n<\/math>",
"\\stigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\stigma<\/mtext>\n <\/mrow>\n<\/math>",
"\\textvisiblespace": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext>&#x2423;<\/mtext>\n <\/mrow>\n<\/math>",
"\\varstigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mtext mathcolor=\"red\">\\varstigma<\/mtext>\n <\/mrow>\n<\/math>",
"\\Downarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D3;<\/mo>\n<\/math>",
"\\Uparrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D1;<\/mo>\n<\/math>",
"\\Updownarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D5;<\/mo>\n<\/math>",
"\\Vert": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"ORD\" fence=\"false\" stretchy=\"false\">&#x2016;<\/mo>\n<\/math>",
"\\backslash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&#x2216;<\/mi>\n<\/math>",
"\\downarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2193;<\/mo>\n<\/math>",
"\\langle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x27E8;<\/mo>\n<\/math>",
"\\lbrace": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">{<\/mo>\n<\/math>",
"\\lbrack": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">[<\/mo>\n<\/math>",
"\\lceil": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x2308;<\/mo>\n<\/math>",
"\\lfloor": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x230A;<\/mo>\n<\/math>",
"\\llcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x231E;<\/mo>\n<\/math>",
"\\lrcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x231F;<\/mo>\n<\/math>",
"\\rangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x27E9;<\/mo>\n<\/math>",
"\\rbrace": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">}<\/mo>\n<\/math>",
"\\rbrack": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">]<\/mo>\n<\/math>",
"\\rceil": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x2309;<\/mo>\n<\/math>",
"\\rfloor": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x230B;<\/mo>\n<\/math>",
"\\rightleftharpoons": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\" stretchy=\"false\">&#x21CC;<\/mo>\n<\/math>",
"\\twoheadleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x219E;<\/mo>\n<\/math>",
"\\twoheadrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21A0;<\/mo>\n<\/math>",
"\\ulcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x231C;<\/mo>\n<\/math>",
"\\uparrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2191;<\/mo>\n<\/math>",
"\\updownarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2195;<\/mo>\n<\/math>",
"\\urcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>&#x231D;<\/mo>\n<\/math>",
"\\vert": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"ORD\" fence=\"false\" stretchy=\"false\">|<\/mo>\n<\/math>",
"\\Darr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D3;<\/mo>\n<\/math>",
"\\Uarr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D1;<\/mo>\n<\/math>",
"\\dArr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D3;<\/mo>\n<\/math>",
"\\darr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2193;<\/mo>\n<\/math>",
"\\lang": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x27E8;<\/mo>\n<\/math>",
"\\rang": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">&#x27E9;<\/mo>\n<\/math>",
"\\uArr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x21D1;<\/mo>\n<\/math>",
"\\uarr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">&#x2191;<\/mo>\n<\/math>",
"\\left(\\right)": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"INNER\">\n <mo data-mjx-texclass=\"OPEN\">(<\/mo>\n <mo data-mjx-texclass=\"CLOSE\">)<\/mo>\n <\/mrow>\n<\/math>"
}