mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-11 16:58:38 +00:00
Add test for basic MML Methods
Bug: T302628 Change-Id: Ib3d781a516e53392fb09a2c70b322805dcb43fcf
This commit is contained in:
parent
f8e25f5dce
commit
783797bb9a
1
.eslintignore
Normal file
1
.eslintignore
Normal file
|
@ -0,0 +1 @@
|
|||
/tests/phpunit/unit/TexVC/TexUtilMMLLookup.json
|
|
@ -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"
|
||||
|
|
|
@ -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();
|
||||
|
|
251
tests/phpunit/unit/TexVC/MMLGenerationTest.php
Normal file
251
tests/phpunit/unit/TexVC/MMLGenerationTest.php
Normal 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;
|
||||
}
|
||||
}
|
43
tests/phpunit/unit/TexVC/MMLTestUtil.php
Normal file
43
tests/phpunit/unit/TexVC/MMLTestUtil.php
Normal 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 );
|
||||
}
|
||||
}
|
72
tests/phpunit/unit/TexVC/MMLTestUtilHTML.php
Normal file
72
tests/phpunit/unit/TexVC/MMLTestUtilHTML.php
Normal 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 );
|
||||
}
|
||||
}
|
689
tests/phpunit/unit/TexVC/TexUtilMMLLookup.json
Normal file
689
tests/phpunit/unit/TexVC/TexUtilMMLLookup.json
Normal 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\">´<\/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\">¯<\/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>˘<\/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\">ˇ<\/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>¨<\/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>˙<\/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>←<\/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>↔<\/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\">―<\/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>→<\/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\">―<\/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\">→<\/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>⏞<\/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>⏟<\/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\">←<\/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\">→<\/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\">∑<\/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 inf<\/mo>\n<\/math>",
|
||||
"\\limsup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">lim 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>⏟<\/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\">Δ<\/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\">Γ<\/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\">Λ<\/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\">Ω<\/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\">Φ<\/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\">Π<\/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\">Ψ<\/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\">Σ<\/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\">Θ<\/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\">Υ<\/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>α<\/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>≈<\/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>β<\/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>χ<\/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>δ<\/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>ϵ<\/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>η<\/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>γ<\/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>ι<\/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>κ<\/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>λ<\/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>μ<\/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>ν<\/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>ω<\/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>ο<\/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>ϕ<\/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>π<\/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>±<\/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>ψ<\/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>ρ<\/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>σ<\/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>τ<\/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>θ<\/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>υ<\/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>ε<\/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>ϰ<\/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>φ<\/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>ϖ<\/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>ϱ<\/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>ς<\/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>ϑ<\/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>ζ<\/mi>\n <\/mrow>\n <\/mrow>\n <\/mrow>\n<\/math>",
|
||||
"\\And": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">&<\/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>◻<\/mi>\n<\/math>",
|
||||
"\\Bumpeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≎<\/mo>\n<\/math>",
|
||||
"\\Cap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋒<\/mo>\n<\/math>",
|
||||
"\\Cup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋓<\/mo>\n<\/math>",
|
||||
"\\Delta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Δ<\/mi>\n<\/math>",
|
||||
"\\Diamond": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>◊<\/mi>\n<\/math>",
|
||||
"\\Finv": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Ⅎ<\/mi>\n<\/math>",
|
||||
"\\Game": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>⅁<\/mi>\n<\/math>",
|
||||
"\\Gamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Γ<\/mi>\n<\/math>",
|
||||
"\\Im": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">ℑ<\/mi>\n<\/math>",
|
||||
"\\Lambda": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Λ<\/mi>\n<\/math>",
|
||||
"\\Leftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇐<\/mo>\n<\/math>",
|
||||
"\\Leftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇔<\/mo>\n<\/math>",
|
||||
"\\Lleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇚<\/mo>\n<\/math>",
|
||||
"\\Longleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⟸<\/mo>\n<\/math>",
|
||||
"\\Longleftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⟺<\/mo>\n<\/math>",
|
||||
"\\Longrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⟹<\/mo>\n<\/math>",
|
||||
"\\Lsh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↰<\/mo>\n<\/math>",
|
||||
"\\Omega": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Ω<\/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\">Φ<\/mi>\n<\/math>",
|
||||
"\\Pi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Π<\/mi>\n<\/math>",
|
||||
"\\Psi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Ψ<\/mi>\n<\/math>",
|
||||
"\\Re": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">ℜ<\/mi>\n<\/math>",
|
||||
"\\Rightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇒<\/mo>\n<\/math>",
|
||||
"\\Rrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇛<\/mo>\n<\/math>",
|
||||
"\\Rsh": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↱<\/mo>\n<\/math>",
|
||||
"\\S": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">§<\/mi>\n<\/math>",
|
||||
"\\Sigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Σ<\/mi>\n<\/math>",
|
||||
"\\Subset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋐<\/mo>\n<\/math>",
|
||||
"\\Supset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋑<\/mo>\n<\/math>",
|
||||
"\\Theta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Θ<\/mi>\n<\/math>",
|
||||
"\\Upsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Υ<\/mi>\n<\/math>",
|
||||
"\\Vdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊩<\/mo>\n<\/math>",
|
||||
"\\Vvdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊪<\/mo>\n<\/math>",
|
||||
"\\Xi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Ξ<\/mi>\n<\/math>",
|
||||
"\\aleph": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">ℵ<\/mi>\n<\/math>",
|
||||
"\\alpha": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>α<\/mi>\n<\/math>",
|
||||
"\\amalg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⨿<\/mo>\n<\/math>",
|
||||
"\\angle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">∠<\/mi>\n<\/math>",
|
||||
"\\approx": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≈<\/mo>\n<\/math>",
|
||||
"\\approxeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≊<\/mo>\n<\/math>",
|
||||
"\\ast": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∗<\/mo>\n<\/math>",
|
||||
"\\asymp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≍<\/mo>\n<\/math>",
|
||||
"\\backepsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∍<\/mo>\n<\/math>",
|
||||
"\\backprime": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">‵<\/mi>\n<\/math>",
|
||||
"\\backsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∽<\/mo>\n<\/math>",
|
||||
"\\backsimeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋍<\/mo>\n<\/math>",
|
||||
"\\barwedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊼<\/mo>\n<\/math>",
|
||||
"\\because": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∵<\/mo>\n<\/math>",
|
||||
"\\beta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>β<\/mi>\n<\/math>",
|
||||
"\\beth": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ℶ<\/mi>\n<\/math>",
|
||||
"\\between": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≬<\/mo>\n<\/math>",
|
||||
"\\bigcap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⋂<\/mo>\n<\/math>",
|
||||
"\\bigcirc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>◯<\/mo>\n<\/math>",
|
||||
"\\bigcup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⋃<\/mo>\n<\/math>",
|
||||
"\\bigodot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⨀<\/mo>\n<\/math>",
|
||||
"\\bigoplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⨁<\/mo>\n<\/math>",
|
||||
"\\bigotimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⨂<\/mo>\n<\/math>",
|
||||
"\\bigsqcup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⨆<\/mo>\n<\/math>",
|
||||
"\\bigstar": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>★<\/mi>\n<\/math>",
|
||||
"\\bigtriangledown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>▽<\/mo>\n<\/math>",
|
||||
"\\bigtriangleup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>△<\/mo>\n<\/math>",
|
||||
"\\biguplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⨄<\/mo>\n<\/math>",
|
||||
"\\bigvee": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⋁<\/mo>\n<\/math>",
|
||||
"\\bigwedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">⋀<\/mo>\n<\/math>",
|
||||
"\\blacklozenge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>⧫<\/mi>\n<\/math>",
|
||||
"\\blacksquare": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>◼<\/mi>\n<\/math>",
|
||||
"\\blacktriangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>▴<\/mi>\n<\/math>",
|
||||
"\\blacktriangledown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>▾<\/mi>\n<\/math>",
|
||||
"\\blacktriangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>◂<\/mo>\n<\/math>",
|
||||
"\\blacktriangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>▸<\/mo>\n<\/math>",
|
||||
"\\bot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">⊥<\/mi>\n<\/math>",
|
||||
"\\bowtie": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋈<\/mo>\n<\/math>",
|
||||
"\\boxdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊡<\/mo>\n<\/math>",
|
||||
"\\boxminus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊟<\/mo>\n<\/math>",
|
||||
"\\boxplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊞<\/mo>\n<\/math>",
|
||||
"\\boxtimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊠<\/mo>\n<\/math>",
|
||||
"\\bullet": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∙<\/mo>\n<\/math>",
|
||||
"\\bumpeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≏<\/mo>\n<\/math>",
|
||||
"\\cap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∩<\/mo>\n<\/math>",
|
||||
"\\cdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋅<\/mo>\n<\/math>",
|
||||
"\\cdots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋯<\/mo>\n<\/math>",
|
||||
"\\centerdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⋅<\/mo>\n<\/math>",
|
||||
"\\checkmark": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>✓<\/mi>\n<\/math>",
|
||||
"\\chi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>χ<\/mi>\n<\/math>",
|
||||
"\\circ": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∘<\/mo>\n<\/math>",
|
||||
"\\circeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≗<\/mo>\n<\/math>",
|
||||
"\\circlearrowleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>↺<\/mo>\n<\/math>",
|
||||
"\\circlearrowright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>↻<\/mo>\n<\/math>",
|
||||
"\\circledS": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">Ⓢ<\/mi>\n<\/math>",
|
||||
"\\circledast": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊛<\/mo>\n<\/math>",
|
||||
"\\circledcirc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊚<\/mo>\n<\/math>",
|
||||
"\\circleddash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊝<\/mo>\n<\/math>",
|
||||
"\\clubsuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">♣<\/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>∁<\/mi>\n<\/math>",
|
||||
"\\cong": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≅<\/mo>\n<\/math>",
|
||||
"\\coprod": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">∐<\/mo>\n<\/math>",
|
||||
"\\cup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∪<\/mo>\n<\/math>",
|
||||
"\\curlyeqprec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋞<\/mo>\n<\/math>",
|
||||
"\\curlyeqsucc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋟<\/mo>\n<\/math>",
|
||||
"\\curlyvee": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋎<\/mo>\n<\/math>",
|
||||
"\\curlywedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋏<\/mo>\n<\/math>",
|
||||
"\\curvearrowleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>↶<\/mo>\n<\/math>",
|
||||
"\\curvearrowright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>↷<\/mo>\n<\/math>",
|
||||
"\\dagger": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>†<\/mo>\n<\/math>",
|
||||
"\\daleth": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ℸ<\/mi>\n<\/math>",
|
||||
"\\dashv": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊣<\/mo>\n<\/math>",
|
||||
"\\ddagger": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>‡<\/mo>\n<\/math>",
|
||||
"\\ddots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋱<\/mo>\n<\/math>",
|
||||
"\\delta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>δ<\/mi>\n<\/math>",
|
||||
"\\diagdown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>╲<\/mi>\n<\/math>",
|
||||
"\\diagup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>╱<\/mi>\n<\/math>",
|
||||
"\\diamond": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋄<\/mo>\n<\/math>",
|
||||
"\\diamondsuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">♢<\/mi>\n<\/math>",
|
||||
"\\digamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ϝ<\/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\">∑<\/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>÷<\/mo>\n<\/math>",
|
||||
"\\divideontimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋇<\/mo>\n<\/math>",
|
||||
"\\doteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≐<\/mo>\n<\/math>",
|
||||
"\\doteqdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≑<\/mo>\n<\/math>",
|
||||
"\\dotplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∔<\/mo>\n<\/math>",
|
||||
"\\dots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>…<\/mo>\n<\/math>",
|
||||
"\\dotsb": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋯<\/mo>\n<\/math>",
|
||||
"\\dotsc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>…<\/mo>\n<\/math>",
|
||||
"\\dotsi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋯<\/mo>\n<\/math>",
|
||||
"\\dotsm": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋯<\/mo>\n<\/math>",
|
||||
"\\dotso": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>…<\/mo>\n<\/math>",
|
||||
"\\doublebarwedge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⩞<\/mo>\n<\/math>",
|
||||
"\\downdownarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇊<\/mo>\n<\/math>",
|
||||
"\\downharpoonleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇃<\/mo>\n<\/math>",
|
||||
"\\downharpoonright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇂<\/mo>\n<\/math>",
|
||||
"\\ell": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ℓ<\/mi>\n<\/math>",
|
||||
"\\emptyset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">∅<\/mi>\n<\/math>",
|
||||
"\\epsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ϵ<\/mi>\n<\/math>",
|
||||
"\\eqcirc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≖<\/mo>\n<\/math>",
|
||||
"\\eqsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≂<\/mo>\n<\/math>",
|
||||
"\\eqslantgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪖<\/mo>\n<\/math>",
|
||||
"\\eqslantless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪕<\/mo>\n<\/math>",
|
||||
"\\equiv": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≡<\/mo>\n<\/math>",
|
||||
"\\eta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>η<\/mi>\n<\/math>",
|
||||
"\\eth": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">ð<\/mi>\n<\/math>",
|
||||
"\\exists": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">∃<\/mi>\n<\/math>",
|
||||
"\\fallingdotseq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≒<\/mo>\n<\/math>",
|
||||
"\\flat": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">♭<\/mi>\n<\/math>",
|
||||
"\\forall": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">∀<\/mi>\n<\/math>",
|
||||
"\\frown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⌢<\/mo>\n<\/math>",
|
||||
"\\gamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>γ<\/mi>\n<\/math>",
|
||||
"\\geq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≥<\/mo>\n<\/math>",
|
||||
"\\geqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≧<\/mo>\n<\/math>",
|
||||
"\\geqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⩾<\/mo>\n<\/math>",
|
||||
"\\gets": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">←<\/mo>\n<\/math>",
|
||||
"\\gg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≫<\/mo>\n<\/math>",
|
||||
"\\ggg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋙<\/mo>\n<\/math>",
|
||||
"\\gimel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ℷ<\/mi>\n<\/math>",
|
||||
"\\gnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪊<\/mo>\n<\/math>",
|
||||
"\\gneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪈<\/mo>\n<\/math>",
|
||||
"\\gneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≩<\/mo>\n<\/math>",
|
||||
"\\gnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋧<\/mo>\n<\/math>",
|
||||
"\\gtrapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪆<\/mo>\n<\/math>",
|
||||
"\\gtrdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋗<\/mo>\n<\/math>",
|
||||
"\\gtreqless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋛<\/mo>\n<\/math>",
|
||||
"\\gtreqqless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪌<\/mo>\n<\/math>",
|
||||
"\\gtrless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≷<\/mo>\n<\/math>",
|
||||
"\\gtrsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≳<\/mo>\n<\/math>",
|
||||
"\\gvertneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">≩<\/mo>\n<\/math>",
|
||||
"\\hbar": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">ℏ<\/mi>\n<\/math>",
|
||||
"\\heartsuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">♡<\/mi>\n<\/math>",
|
||||
"\\hookleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↩<\/mo>\n<\/math>",
|
||||
"\\hookrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↪<\/mo>\n<\/math>",
|
||||
"\\hslash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ℏ<\/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\">⟺<\/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\">⨌<\/mo>\n<\/math>",
|
||||
"\\iiint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">∭<\/mo>\n<\/math>",
|
||||
"\\iint": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">∬<\/mo>\n<\/math>",
|
||||
"\\imath": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ı<\/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\">⟹<\/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>∈<\/mo>\n<\/math>",
|
||||
"\\infty": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">∞<\/mi>\n<\/math>",
|
||||
"\\injlim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">inj lim<\/mo>\n<\/math>",
|
||||
"\\int": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">∫<\/mo>\n<\/math>",
|
||||
"\\intbar": "",
|
||||
"\\intercal": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊺<\/mo>\n<\/math>",
|
||||
"\\iota": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ι<\/mi>\n<\/math>",
|
||||
"\\jmath": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ȷ<\/mi>\n<\/math>",
|
||||
"\\kappa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>κ<\/mi>\n<\/math>",
|
||||
"\\lVert": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OPEN\" fence=\"false\" stretchy=\"false\">‖<\/mo>\n<\/math>",
|
||||
"\\lambda": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>λ<\/mi>\n<\/math>",
|
||||
"\\land": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∧<\/mo>\n<\/math>",
|
||||
"\\ldots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>…<\/mo>\n<\/math>",
|
||||
"\\leftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">←<\/mo>\n<\/math>",
|
||||
"\\leftarrowtail": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↢<\/mo>\n<\/math>",
|
||||
"\\leftharpoondown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↽<\/mo>\n<\/math>",
|
||||
"\\leftharpoonup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↼<\/mo>\n<\/math>",
|
||||
"\\leftleftarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇇<\/mo>\n<\/math>",
|
||||
"\\leftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↔<\/mo>\n<\/math>",
|
||||
"\\leftrightarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇆<\/mo>\n<\/math>",
|
||||
"\\leftrightharpoons": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇋<\/mo>\n<\/math>",
|
||||
"\\leftrightsquigarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↭<\/mo>\n<\/math>",
|
||||
"\\leftthreetimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋋<\/mo>\n<\/math>",
|
||||
"\\leq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≤<\/mo>\n<\/math>",
|
||||
"\\leqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≦<\/mo>\n<\/math>",
|
||||
"\\leqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⩽<\/mo>\n<\/math>",
|
||||
"\\lessapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪅<\/mo>\n<\/math>",
|
||||
"\\lessdot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋖<\/mo>\n<\/math>",
|
||||
"\\lesseqgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋚<\/mo>\n<\/math>",
|
||||
"\\lesseqqgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪋<\/mo>\n<\/math>",
|
||||
"\\lessgtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≶<\/mo>\n<\/math>",
|
||||
"\\lesssim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≲<\/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\">→<\/mo>\n <mn>2<\/mn>\n <\/mrow>\n <\/munder>\n<\/math>",
|
||||
"\\ll": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≪<\/mo>\n<\/math>",
|
||||
"\\lll": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋘<\/mo>\n<\/math>",
|
||||
"\\lnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪉<\/mo>\n<\/math>",
|
||||
"\\lneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪇<\/mo>\n<\/math>",
|
||||
"\\lneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≨<\/mo>\n<\/math>",
|
||||
"\\lnot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">¬<\/mi>\n<\/math>",
|
||||
"\\lnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋦<\/mo>\n<\/math>",
|
||||
"\\longleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⟵<\/mo>\n<\/math>",
|
||||
"\\longleftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⟷<\/mo>\n<\/math>",
|
||||
"\\longmapsto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⟼<\/mo>\n<\/math>",
|
||||
"\\longrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⟶<\/mo>\n<\/math>",
|
||||
"\\looparrowleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↫<\/mo>\n<\/math>",
|
||||
"\\looparrowright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↬<\/mo>\n<\/math>",
|
||||
"\\lor": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∨<\/mo>\n<\/math>",
|
||||
"\\lozenge": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>◊<\/mi>\n<\/math>",
|
||||
"\\ltimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋉<\/mo>\n<\/math>",
|
||||
"\\lvertneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">≨<\/mo>\n<\/math>",
|
||||
"\\mapsto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↦<\/mo>\n<\/math>",
|
||||
"\\measuredangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>∡<\/mi>\n<\/math>",
|
||||
"\\mho": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>℧<\/mi>\n<\/math>",
|
||||
"\\mid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∣<\/mo>\n<\/math>",
|
||||
"\\mod": "",
|
||||
"\\models": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊨<\/mo>\n<\/math>",
|
||||
"\\mp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∓<\/mo>\n<\/math>",
|
||||
"\\mu": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>μ<\/mi>\n<\/math>",
|
||||
"\\multimap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊸<\/mo>\n<\/math>",
|
||||
"\\nLeftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⇍<\/mo>\n<\/math>",
|
||||
"\\nLeftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⇎<\/mo>\n<\/math>",
|
||||
"\\nRightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⇏<\/mo>\n<\/math>",
|
||||
"\\nVDash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊯<\/mo>\n<\/math>",
|
||||
"\\nVdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊮<\/mo>\n<\/math>",
|
||||
"\\nabla": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">∇<\/mi>\n<\/math>",
|
||||
"\\natural": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">♮<\/mi>\n<\/math>",
|
||||
"\\ncong": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≇<\/mo>\n<\/math>",
|
||||
"\\nearrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↗<\/mo>\n<\/math>",
|
||||
"\\neg": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">¬<\/mi>\n<\/math>",
|
||||
"\\neq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≠<\/mo>\n<\/math>",
|
||||
"\\nexists": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>∄<\/mi>\n<\/math>",
|
||||
"\\ngeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≱<\/mo>\n<\/math>",
|
||||
"\\ngeqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">≱<\/mo>\n<\/math>",
|
||||
"\\ngeqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⪈<\/mo>\n<\/math>",
|
||||
"\\ngtr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≯<\/mo>\n<\/math>",
|
||||
"\\ni": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∋<\/mo>\n<\/math>",
|
||||
"\\nleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>↚<\/mo>\n<\/math>",
|
||||
"\\nleftrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>↮<\/mo>\n<\/math>",
|
||||
"\\nleq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≰<\/mo>\n<\/math>",
|
||||
"\\nleqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">≰<\/mo>\n<\/math>",
|
||||
"\\nleqslant": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⪇<\/mo>\n<\/math>",
|
||||
"\\nless": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≮<\/mo>\n<\/math>",
|
||||
"\\nmid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∤<\/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>⧸<\/mtext>\n <\/mpadded>\n <\/mrow>\n<\/math>",
|
||||
"\\notin": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∉<\/mo>\n<\/math>",
|
||||
"\\nparallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∦<\/mo>\n<\/math>",
|
||||
"\\nprec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊀<\/mo>\n<\/math>",
|
||||
"\\npreceq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⋠<\/mo>\n<\/math>",
|
||||
"\\nrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>↛<\/mo>\n<\/math>",
|
||||
"\\nshortmid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">∤<\/mo>\n<\/math>",
|
||||
"\\nshortparallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">∦<\/mo>\n<\/math>",
|
||||
"\\nsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≁<\/mo>\n<\/math>",
|
||||
"\\nsubseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊈<\/mo>\n<\/math>",
|
||||
"\\nsubseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⊈<\/mo>\n<\/math>",
|
||||
"\\nsucc": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊁<\/mo>\n<\/math>",
|
||||
"\\nsucceq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⋡<\/mo>\n<\/math>",
|
||||
"\\nsupseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊉<\/mo>\n<\/math>",
|
||||
"\\nsupseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⊉<\/mo>\n<\/math>",
|
||||
"\\ntriangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋪<\/mo>\n<\/math>",
|
||||
"\\ntrianglelefteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋬<\/mo>\n<\/math>",
|
||||
"\\ntriangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋫<\/mo>\n<\/math>",
|
||||
"\\ntrianglerighteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋭<\/mo>\n<\/math>",
|
||||
"\\nu": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ν<\/mi>\n<\/math>",
|
||||
"\\nvDash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊭<\/mo>\n<\/math>",
|
||||
"\\nvdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊬<\/mo>\n<\/math>",
|
||||
"\\nwarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↖<\/mo>\n<\/math>",
|
||||
"\\odot": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊙<\/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\">∮<\/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>ω<\/mi>\n<\/math>",
|
||||
"\\ominus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊖<\/mo>\n<\/math>",
|
||||
"\\oplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊕<\/mo>\n<\/math>",
|
||||
"\\oslash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊘<\/mo>\n<\/math>",
|
||||
"\\otimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊗<\/mo>\n<\/math>",
|
||||
"\\parallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∥<\/mo>\n<\/math>",
|
||||
"\\partial": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>∂<\/mi>\n<\/math>",
|
||||
"\\perp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊥<\/mo>\n<\/math>",
|
||||
"\\phi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ϕ<\/mi>\n<\/math>",
|
||||
"\\pi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>π<\/mi>\n<\/math>",
|
||||
"\\pitchfork": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋔<\/mo>\n<\/math>",
|
||||
"\\pm": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>±<\/mo>\n<\/math>",
|
||||
"\\prec": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≺<\/mo>\n<\/math>",
|
||||
"\\precapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪷<\/mo>\n<\/math>",
|
||||
"\\preccurlyeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≼<\/mo>\n<\/math>",
|
||||
"\\preceq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪯<\/mo>\n<\/math>",
|
||||
"\\precnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪹<\/mo>\n<\/math>",
|
||||
"\\precneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪵<\/mo>\n<\/math>",
|
||||
"\\precnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋨<\/mo>\n<\/math>",
|
||||
"\\precsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≾<\/mo>\n<\/math>",
|
||||
"\\prime": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">′<\/mi>\n<\/math>",
|
||||
"\\prod": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">∏<\/mo>\n<\/math>",
|
||||
"\\projlim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\" movablelimits=\"true\">proj lim<\/mo>\n<\/math>",
|
||||
"\\propto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∝<\/mo>\n<\/math>",
|
||||
"\\psi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ψ<\/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\">‖<\/mo>\n<\/math>",
|
||||
"\\rho": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ρ<\/mi>\n<\/math>",
|
||||
"\\rightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">→<\/mo>\n<\/math>",
|
||||
"\\rightarrowtail": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↣<\/mo>\n<\/math>",
|
||||
"\\rightharpoondown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇁<\/mo>\n<\/math>",
|
||||
"\\rightharpoonup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇀<\/mo>\n<\/math>",
|
||||
"\\rightleftarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇄<\/mo>\n<\/math>",
|
||||
"\\rightrightarrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇉<\/mo>\n<\/math>",
|
||||
"\\rightsquigarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇝<\/mo>\n<\/math>",
|
||||
"\\rightthreetimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋌<\/mo>\n<\/math>",
|
||||
"\\risingdotseq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≓<\/mo>\n<\/math>",
|
||||
"\\rtimes": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋊<\/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>∂<\/mi>\n <mi mathvariant=\"normal\">Ω<\/mi>\n <\/mstyle>\n <\/mrow>\n<\/math>",
|
||||
"\\searrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↘<\/mo>\n<\/math>",
|
||||
"\\setminus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∖<\/mo>\n<\/math>",
|
||||
"\\sharp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">♯<\/mi>\n<\/math>",
|
||||
"\\shortmid": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">∣<\/mo>\n<\/math>",
|
||||
"\\shortparallel": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">∥<\/mo>\n<\/math>",
|
||||
"\\sigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>σ<\/mi>\n<\/math>",
|
||||
"\\sim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∼<\/mo>\n<\/math>",
|
||||
"\\simeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≃<\/mo>\n<\/math>",
|
||||
"\\smallfrown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⌢<\/mo>\n<\/math>",
|
||||
"\\smallsetminus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">∖<\/mo>\n<\/math>",
|
||||
"\\smallsmile": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⌣<\/mo>\n<\/math>",
|
||||
"\\smile": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⌣<\/mo>\n<\/math>",
|
||||
"\\spadesuit": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">♠<\/mi>\n<\/math>",
|
||||
"\\sphericalangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>∢<\/mi>\n<\/math>",
|
||||
"\\sqcap": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊓<\/mo>\n<\/math>",
|
||||
"\\sqcup": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊔<\/mo>\n<\/math>",
|
||||
"\\sqsubset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊏<\/mo>\n<\/math>",
|
||||
"\\sqsubseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊑<\/mo>\n<\/math>",
|
||||
"\\sqsupset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊐<\/mo>\n<\/math>",
|
||||
"\\sqsupseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊒<\/mo>\n<\/math>",
|
||||
"\\square": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>◻<\/mi>\n<\/math>",
|
||||
"\\star": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋆<\/mo>\n<\/math>",
|
||||
"\\strokeint": "",
|
||||
"\\subset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊂<\/mo>\n<\/math>",
|
||||
"\\subseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊆<\/mo>\n<\/math>",
|
||||
"\\subseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⫅<\/mo>\n<\/math>",
|
||||
"\\subsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊊<\/mo>\n<\/math>",
|
||||
"\\subsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⫋<\/mo>\n<\/math>",
|
||||
"\\succ": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≻<\/mo>\n<\/math>",
|
||||
"\\succapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪸<\/mo>\n<\/math>",
|
||||
"\\succcurlyeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≽<\/mo>\n<\/math>",
|
||||
"\\succeq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪰<\/mo>\n<\/math>",
|
||||
"\\succnapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪺<\/mo>\n<\/math>",
|
||||
"\\succneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⪶<\/mo>\n<\/math>",
|
||||
"\\succnsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⋩<\/mo>\n<\/math>",
|
||||
"\\succsim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≿<\/mo>\n<\/math>",
|
||||
"\\sum": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-texclass=\"OP\">∑<\/mo>\n<\/math>",
|
||||
"\\supset": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊃<\/mo>\n<\/math>",
|
||||
"\\supseteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊇<\/mo>\n<\/math>",
|
||||
"\\supseteqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⫆<\/mo>\n<\/math>",
|
||||
"\\supsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊋<\/mo>\n<\/math>",
|
||||
"\\supsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⫌<\/mo>\n<\/math>",
|
||||
"\\surd": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo stretchy=\"false\">√<\/mo>\n <\/mrow>\n<\/math>",
|
||||
"\\swarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↙<\/mo>\n<\/math>",
|
||||
"\\tau": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>τ<\/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\">∑<\/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>∴<\/mo>\n<\/math>",
|
||||
"\\theta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>θ<\/mi>\n<\/math>",
|
||||
"\\thickapprox": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">≈<\/mo>\n<\/math>",
|
||||
"\\thicksim": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">∼<\/mo>\n<\/math>",
|
||||
"\\times": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>×<\/mo>\n<\/math>",
|
||||
"\\to": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo accent=\"false\" stretchy=\"false\">→<\/mo>\n<\/math>",
|
||||
"\\top": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">⊤<\/mi>\n<\/math>",
|
||||
"\\triangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">△<\/mi>\n<\/math>",
|
||||
"\\triangledown": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">▽<\/mi>\n<\/math>",
|
||||
"\\triangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>◃<\/mo>\n<\/math>",
|
||||
"\\trianglelefteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊴<\/mo>\n<\/math>",
|
||||
"\\triangleq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≜<\/mo>\n<\/math>",
|
||||
"\\triangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>▹<\/mo>\n<\/math>",
|
||||
"\\trianglerighteq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊵<\/mo>\n<\/math>",
|
||||
"\\upharpoonleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↿<\/mo>\n<\/math>",
|
||||
"\\upharpoonright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↾<\/mo>\n<\/math>",
|
||||
"\\uplus": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊎<\/mo>\n<\/math>",
|
||||
"\\upsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>υ<\/mi>\n<\/math>",
|
||||
"\\upuparrows": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇈<\/mo>\n<\/math>",
|
||||
"\\vDash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⊨<\/mo>\n<\/math>",
|
||||
"\\varDelta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Δ<\/mi>\n<\/math>",
|
||||
"\\varGamma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Γ<\/mi>\n<\/math>",
|
||||
"\\varLambda": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Λ<\/mi>\n<\/math>",
|
||||
"\\varOmega": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Ω<\/mi>\n<\/math>",
|
||||
"\\varPhi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Φ<\/mi>\n<\/math>",
|
||||
"\\varPi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Π<\/mi>\n<\/math>",
|
||||
"\\varSigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Σ<\/mi>\n<\/math>",
|
||||
"\\varTheta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Θ<\/mi>\n<\/math>",
|
||||
"\\varUpsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Υ<\/mi>\n<\/math>",
|
||||
"\\varXi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>Ξ<\/mi>\n<\/math>",
|
||||
"\\varepsilon": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ε<\/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>→<\/mo>\n <\/munder>\n <\/mrow>\n<\/math>",
|
||||
"\\varkappa": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ϰ<\/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\">―<\/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\">―<\/mo>\n <\/mover>\n <\/mrow>\n<\/math>",
|
||||
"\\varnothing": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi data-mjx-alternate=\"1\">∅<\/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>φ<\/mi>\n<\/math>",
|
||||
"\\varpi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ϖ<\/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>←<\/mo>\n <\/munder>\n <\/mrow>\n<\/math>",
|
||||
"\\varpropto": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">∝<\/mo>\n<\/math>",
|
||||
"\\varrho": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ϱ<\/mi>\n<\/math>",
|
||||
"\\varsigma": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ς<\/mi>\n<\/math>",
|
||||
"\\varsubsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⊊<\/mo>\n<\/math>",
|
||||
"\\varsubsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⫋<\/mo>\n<\/math>",
|
||||
"\\varsupsetneq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⊋<\/mo>\n<\/math>",
|
||||
"\\varsupsetneqq": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">⫌<\/mo>\n<\/math>",
|
||||
"\\vartheta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ϑ<\/mi>\n<\/math>",
|
||||
"\\vartriangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\">△<\/mo>\n<\/math>",
|
||||
"\\vartriangleleft": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊲<\/mo>\n<\/math>",
|
||||
"\\vartriangleright": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊳<\/mo>\n<\/math>",
|
||||
"\\vdash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊢<\/mo>\n<\/math>",
|
||||
"\\vdots": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mrow data-mjx-texclass=\"ORD\">\n <mo>⋮<\/mo>\n <\/mrow>\n<\/math>",
|
||||
"\\vee": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>∨<\/mo>\n<\/math>",
|
||||
"\\veebar": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⊻<\/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>∧<\/mo>\n<\/math>",
|
||||
"\\wp": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">℘<\/mi>\n<\/math>",
|
||||
"\\wr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>≀<\/mo>\n<\/math>",
|
||||
"\\xi": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ξ<\/mi>\n<\/math>",
|
||||
"\\zeta": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi>ζ<\/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>␣<\/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\">⇓<\/mo>\n<\/math>",
|
||||
"\\Uparrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇑<\/mo>\n<\/math>",
|
||||
"\\Updownarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇕<\/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>",
|
||||
"\\backslash": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mi mathvariant=\"normal\">∖<\/mi>\n<\/math>",
|
||||
"\\downarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↓<\/mo>\n<\/math>",
|
||||
"\\langle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">⟨<\/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\">⌈<\/mo>\n<\/math>",
|
||||
"\\lfloor": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">⌊<\/mo>\n<\/math>",
|
||||
"\\llcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⌞<\/mo>\n<\/math>",
|
||||
"\\lrcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⌟<\/mo>\n<\/math>",
|
||||
"\\rangle": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">⟩<\/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\">⌉<\/mo>\n<\/math>",
|
||||
"\\rfloor": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">⌋<\/mo>\n<\/math>",
|
||||
"\\rightleftharpoons": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo data-mjx-alternate=\"1\" stretchy=\"false\">⇌<\/mo>\n<\/math>",
|
||||
"\\twoheadleftarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↞<\/mo>\n<\/math>",
|
||||
"\\twoheadrightarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↠<\/mo>\n<\/math>",
|
||||
"\\ulcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⌜<\/mo>\n<\/math>",
|
||||
"\\uparrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↑<\/mo>\n<\/math>",
|
||||
"\\updownarrow": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↕<\/mo>\n<\/math>",
|
||||
"\\urcorner": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo>⌝<\/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\">⇓<\/mo>\n<\/math>",
|
||||
"\\Uarr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇑<\/mo>\n<\/math>",
|
||||
"\\dArr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇓<\/mo>\n<\/math>",
|
||||
"\\darr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↓<\/mo>\n<\/math>",
|
||||
"\\lang": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">⟨<\/mo>\n<\/math>",
|
||||
"\\rang": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo fence=\"false\" stretchy=\"false\">⟩<\/mo>\n<\/math>",
|
||||
"\\uArr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">⇑<\/mo>\n<\/math>",
|
||||
"\\uarr": "<math xmlns=\"http:\/\/www.w3.org\/1998\/Math\/MathML\">\n <mo stretchy=\"false\">↑<\/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>"
|
||||
}
|
Loading…
Reference in a new issue