stuff
This commit is contained in:
parent
bc92231240
commit
b8225c639e
11904 changed files with 1472749 additions and 133 deletions
228
node_modules/mathjax-full/js/input/tex/physics/PhysicsMappings.js
generated
vendored
Normal file
228
node_modules/mathjax-full/js/input/tex/physics/PhysicsMappings.js
generated
vendored
Normal file
|
|
@ -0,0 +1,228 @@
|
|||
"use strict";
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var SymbolMap_js_1 = require("../SymbolMap.js");
|
||||
var PhysicsMethods_js_1 = __importDefault(require("./PhysicsMethods.js"));
|
||||
var TexConstants_js_1 = require("../TexConstants.js");
|
||||
var ParseMethods_js_1 = __importDefault(require("../ParseMethods.js"));
|
||||
var MmlNode_js_1 = require("../../../core/MmlTree/MmlNode.js");
|
||||
new SymbolMap_js_1.CommandMap('Physics-automatic-bracing-macros', {
|
||||
'quantity': 'Quantity',
|
||||
'qty': 'Quantity',
|
||||
'pqty': ['Quantity', '(', ')', true],
|
||||
'bqty': ['Quantity', '[', ']', true],
|
||||
'vqty': ['Quantity', '|', '|', true],
|
||||
'Bqty': ['Quantity', '\\{', '\\}', true],
|
||||
'absolutevalue': ['Quantity', '|', '|', true],
|
||||
'abs': ['Quantity', '|', '|', true],
|
||||
'norm': ['Quantity', '\\|', '\\|', true],
|
||||
'evaluated': 'Eval',
|
||||
'eval': 'Eval',
|
||||
'order': ['Quantity', '(', ')', true, 'O',
|
||||
TexConstants_js_1.TexConstant.Variant.CALLIGRAPHIC],
|
||||
'commutator': 'Commutator',
|
||||
'comm': 'Commutator',
|
||||
'anticommutator': ['Commutator', '\\{', '\\}'],
|
||||
'acomm': ['Commutator', '\\{', '\\}'],
|
||||
'poissonbracket': ['Commutator', '\\{', '\\}'],
|
||||
'pb': ['Commutator', '\\{', '\\}']
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.CharacterMap('Physics-vector-mo', ParseMethods_js_1.default.mathchar0mo, {
|
||||
dotproduct: ['\u22C5', { mathvariant: TexConstants_js_1.TexConstant.Variant.BOLD }],
|
||||
vdot: ['\u22C5', { mathvariant: TexConstants_js_1.TexConstant.Variant.BOLD }],
|
||||
crossproduct: '\u00D7',
|
||||
cross: '\u00D7',
|
||||
cp: '\u00D7',
|
||||
gradientnabla: ['\u2207', { mathvariant: TexConstants_js_1.TexConstant.Variant.BOLD }]
|
||||
});
|
||||
new SymbolMap_js_1.CharacterMap('Physics-vector-mi', ParseMethods_js_1.default.mathchar0mi, {
|
||||
real: ['\u211C', { mathvariant: TexConstants_js_1.TexConstant.Variant.NORMAL }],
|
||||
imaginary: ['\u2111', { mathvariant: TexConstants_js_1.TexConstant.Variant.NORMAL }]
|
||||
});
|
||||
new SymbolMap_js_1.CommandMap('Physics-vector-macros', {
|
||||
'vnabla': 'Vnabla',
|
||||
'vectorbold': 'VectorBold',
|
||||
'vb': 'VectorBold',
|
||||
'vectorarrow': ['StarMacro', 1, '\\vec{\\vb', '{#1}}'],
|
||||
'va': ['StarMacro', 1, '\\vec{\\vb', '{#1}}'],
|
||||
'vectorunit': ['StarMacro', 1, '\\hat{\\vb', '{#1}}'],
|
||||
'vu': ['StarMacro', 1, '\\hat{\\vb', '{#1}}'],
|
||||
'gradient': ['OperatorApplication', '\\vnabla', '(', '['],
|
||||
'grad': ['OperatorApplication', '\\vnabla', '(', '['],
|
||||
'divergence': ['VectorOperator', '\\vnabla\\vdot', '(', '['],
|
||||
'div': ['VectorOperator', '\\vnabla\\vdot', '(', '['],
|
||||
'curl': ['VectorOperator', '\\vnabla\\crossproduct', '(', '['],
|
||||
'laplacian': ['OperatorApplication', '\\nabla^2', '(', '['],
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.CommandMap('Physics-expressions-macros', {
|
||||
'sin': 'Expression',
|
||||
'sinh': 'Expression',
|
||||
'arcsin': 'Expression',
|
||||
'asin': 'Expression',
|
||||
'cos': 'Expression',
|
||||
'cosh': 'Expression',
|
||||
'arccos': 'Expression',
|
||||
'acos': 'Expression',
|
||||
'tan': 'Expression',
|
||||
'tanh': 'Expression',
|
||||
'arctan': 'Expression',
|
||||
'atan': 'Expression',
|
||||
'csc': 'Expression',
|
||||
'csch': 'Expression',
|
||||
'arccsc': 'Expression',
|
||||
'acsc': 'Expression',
|
||||
'sec': 'Expression',
|
||||
'sech': 'Expression',
|
||||
'arcsec': 'Expression',
|
||||
'asec': 'Expression',
|
||||
'cot': 'Expression',
|
||||
'coth': 'Expression',
|
||||
'arccot': 'Expression',
|
||||
'acot': 'Expression',
|
||||
'exp': ['Expression', false],
|
||||
'log': 'Expression',
|
||||
'ln': 'Expression',
|
||||
'det': ['Expression', false],
|
||||
'Pr': ['Expression', false],
|
||||
'tr': ['Expression', false],
|
||||
'trace': ['Expression', false, 'tr'],
|
||||
'Tr': ['Expression', false],
|
||||
'Trace': ['Expression', false, 'Tr'],
|
||||
'rank': 'NamedFn',
|
||||
'erf': ['Expression', false],
|
||||
'Residue': ['Macro', '\\mathrm{Res}'],
|
||||
'Res': ['OperatorApplication', '\\Residue', '(', '[', '{'],
|
||||
'principalvalue': ['OperatorApplication', '{\\cal P}'],
|
||||
'pv': ['OperatorApplication', '{\\cal P}'],
|
||||
'PV': ['OperatorApplication', '{\\rm P.V.}'],
|
||||
'Re': ['OperatorApplication', '\\mathrm{Re}', '{'],
|
||||
'Im': ['OperatorApplication', '\\mathrm{Im}', '{'],
|
||||
'sine': ['NamedFn', 'sin'],
|
||||
'hypsine': ['NamedFn', 'sinh'],
|
||||
'arcsine': ['NamedFn', 'arcsin'],
|
||||
'asine': ['NamedFn', 'asin'],
|
||||
'cosine': ['NamedFn', 'cos'],
|
||||
'hypcosine': ['NamedFn', 'cosh'],
|
||||
'arccosine': ['NamedFn', 'arccos'],
|
||||
'acosine': ['NamedFn', 'acos'],
|
||||
'tangent': ['NamedFn', 'tan'],
|
||||
'hyptangent': ['NamedFn', 'tanh'],
|
||||
'arctangent': ['NamedFn', 'arctan'],
|
||||
'atangent': ['NamedFn', 'atan'],
|
||||
'cosecant': ['NamedFn', 'csc'],
|
||||
'hypcosecant': ['NamedFn', 'csch'],
|
||||
'arccosecant': ['NamedFn', 'arccsc'],
|
||||
'acosecant': ['NamedFn', 'acsc'],
|
||||
'secant': ['NamedFn', 'sec'],
|
||||
'hypsecant': ['NamedFn', 'sech'],
|
||||
'arcsecant': ['NamedFn', 'arcsec'],
|
||||
'asecant': ['NamedFn', 'asec'],
|
||||
'cotangent': ['NamedFn', 'cot'],
|
||||
'hypcotangent': ['NamedFn', 'coth'],
|
||||
'arccotangent': ['NamedFn', 'arccot'],
|
||||
'acotangent': ['NamedFn', 'acot'],
|
||||
'exponential': ['NamedFn', 'exp'],
|
||||
'logarithm': ['NamedFn', 'log'],
|
||||
'naturallogarithm': ['NamedFn', 'ln'],
|
||||
'determinant': ['NamedFn', 'det'],
|
||||
'Probability': ['NamedFn', 'Pr'],
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.CommandMap('Physics-quick-quad-macros', {
|
||||
'qqtext': 'Qqtext',
|
||||
'qq': 'Qqtext',
|
||||
'qcomma': ['Macro', '\\qqtext*{,}'],
|
||||
'qc': ['Macro', '\\qqtext*{,}'],
|
||||
'qcc': ['Qqtext', 'c.c.'],
|
||||
'qif': ['Qqtext', 'if'],
|
||||
'qthen': ['Qqtext', 'then'],
|
||||
'qelse': ['Qqtext', 'else'],
|
||||
'qotherwise': ['Qqtext', 'otherwise'],
|
||||
'qunless': ['Qqtext', 'unless'],
|
||||
'qgiven': ['Qqtext', 'given'],
|
||||
'qusing': ['Qqtext', 'using'],
|
||||
'qassume': ['Qqtext', 'assume'],
|
||||
'qsince': ['Qqtext', 'since'],
|
||||
'qlet': ['Qqtext', 'let'],
|
||||
'qfor': ['Qqtext', 'for'],
|
||||
'qall': ['Qqtext', 'all'],
|
||||
'qeven': ['Qqtext', 'even'],
|
||||
'qodd': ['Qqtext', 'odd'],
|
||||
'qinteger': ['Qqtext', 'integer'],
|
||||
'qand': ['Qqtext', 'and'],
|
||||
'qor': ['Qqtext', 'or'],
|
||||
'qas': ['Qqtext', 'as'],
|
||||
'qin': ['Qqtext', 'in'],
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.CommandMap('Physics-derivative-macros', {
|
||||
'diffd': 'DiffD',
|
||||
'flatfrac': ['Macro', '\\left.#1\\middle/#2\\right.', 2],
|
||||
'differential': ['Differential', '\\diffd'],
|
||||
'dd': ['Differential', '\\diffd'],
|
||||
'variation': ['Differential', '\\delta'],
|
||||
'var': ['Differential', '\\delta'],
|
||||
'derivative': ['Derivative', 2, '\\diffd'],
|
||||
'dv': ['Derivative', 2, '\\diffd'],
|
||||
'partialderivative': ['Derivative', 3, '\\partial'],
|
||||
'pderivative': ['Derivative', 3, '\\partial'],
|
||||
'pdv': ['Derivative', 3, '\\partial'],
|
||||
'functionalderivative': ['Derivative', 2, '\\delta'],
|
||||
'fderivative': ['Derivative', 2, '\\delta'],
|
||||
'fdv': ['Derivative', 2, '\\delta'],
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.CommandMap('Physics-bra-ket-macros', {
|
||||
'bra': 'Bra',
|
||||
'ket': 'Ket',
|
||||
'innerproduct': 'BraKet',
|
||||
'ip': 'BraKet',
|
||||
'braket': 'BraKet',
|
||||
'outerproduct': 'KetBra',
|
||||
'dyad': 'KetBra',
|
||||
'ketbra': 'KetBra',
|
||||
'op': 'KetBra',
|
||||
'expectationvalue': 'Expectation',
|
||||
'expval': 'Expectation',
|
||||
'ev': 'Expectation',
|
||||
'matrixelement': 'MatrixElement',
|
||||
'matrixel': 'MatrixElement',
|
||||
'mel': 'MatrixElement',
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.CommandMap('Physics-matrix-macros', {
|
||||
'matrixquantity': 'MatrixQuantity',
|
||||
'mqty': 'MatrixQuantity',
|
||||
'pmqty': ['Macro', '\\mqty(#1)', 1],
|
||||
'Pmqty': ['Macro', '\\mqty*(#1)', 1],
|
||||
'bmqty': ['Macro', '\\mqty[#1]', 1],
|
||||
'vmqty': ['Macro', '\\mqty|#1|', 1],
|
||||
'smallmatrixquantity': ['MatrixQuantity', true],
|
||||
'smqty': ['MatrixQuantity', true],
|
||||
'spmqty': ['Macro', '\\smqty(#1)', 1],
|
||||
'sPmqty': ['Macro', '\\smqty*(#1)', 1],
|
||||
'sbmqty': ['Macro', '\\smqty[#1]', 1],
|
||||
'svmqty': ['Macro', '\\smqty|#1|', 1],
|
||||
'matrixdeterminant': ['Macro', '\\vmqty{#1}', 1],
|
||||
'mdet': ['Macro', '\\vmqty{#1}', 1],
|
||||
'smdet': ['Macro', '\\svmqty{#1}', 1],
|
||||
'identitymatrix': 'IdentityMatrix',
|
||||
'imat': 'IdentityMatrix',
|
||||
'xmatrix': 'XMatrix',
|
||||
'xmat': 'XMatrix',
|
||||
'zeromatrix': ['Macro', '\\xmat{0}{#1}{#2}', 2],
|
||||
'zmat': ['Macro', '\\xmat{0}{#1}{#2}', 2],
|
||||
'paulimatrix': 'PauliMatrix',
|
||||
'pmat': 'PauliMatrix',
|
||||
'diagonalmatrix': 'DiagonalMatrix',
|
||||
'dmat': 'DiagonalMatrix',
|
||||
'antidiagonalmatrix': ['DiagonalMatrix', true],
|
||||
'admat': ['DiagonalMatrix', true]
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.EnvironmentMap('Physics-aux-envs', ParseMethods_js_1.default.environment, {
|
||||
smallmatrix: ['Array', null, null, null, 'c', '0.333em', '.2em', 'S', 1]
|
||||
}, PhysicsMethods_js_1.default);
|
||||
new SymbolMap_js_1.MacroMap('Physics-characters', {
|
||||
'|': ['AutoClose', MmlNode_js_1.TEXCLASS.ORD],
|
||||
')': 'AutoClose',
|
||||
']': 'AutoClose'
|
||||
}, PhysicsMethods_js_1.default);
|
||||
//# sourceMappingURL=PhysicsMappings.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue