123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /*************************************************************
- *
- * Copyright (c) 2018-2022 The MathJax Consortium
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @fileoverview Loads all the TeX extensions
- *
- * @author dpvc@mathjax.org (Davide Cervone)
- */
- import './base/BaseConfiguration.js';
- import './action/ActionConfiguration.js';
- import './ams/AmsConfiguration.js';
- import './amscd/AmsCdConfiguration.js';
- import './bbox/BboxConfiguration.js';
- import './boldsymbol/BoldsymbolConfiguration.js';
- import './braket/BraketConfiguration.js';
- import './bussproofs/BussproofsConfiguration.js';
- import './cancel/CancelConfiguration.js';
- import './cases/CasesConfiguration.js';
- import './centernot/CenternotConfiguration.js';
- import './color/ColorConfiguration.js';
- import './colorv2/ColorV2Configuration.js';
- import './colortbl/ColortblConfiguration.js';
- import './configmacros/ConfigMacrosConfiguration.js';
- import './empheq/EmpheqConfiguration.js';
- import './enclose/EncloseConfiguration.js';
- import './extpfeil/ExtpfeilConfiguration.js';
- import './gensymb/GensymbConfiguration.js';
- import './html/HtmlConfiguration.js';
- import './mathtools/MathtoolsConfiguration.js';
- import './mhchem/MhchemConfiguration.js';
- import './newcommand/NewcommandConfiguration.js';
- import './noerrors/NoErrorsConfiguration.js';
- import './noundefined/NoUndefinedConfiguration.js';
- import './physics/PhysicsConfiguration.js';
- import './setoptions/SetOptionsConfiguration.js';
- import './tagformat/TagFormatConfiguration.js';
- import './textcomp/TextcompConfiguration.js';
- import './textmacros/TextMacrosConfiguration.js';
- import './upgreek/UpgreekConfiguration.js';
- import './unicode/UnicodeConfiguration.js';
- import './verb/VerbConfiguration.js';
- declare const MathJax: any;
- if (typeof MathJax !== 'undefined' && MathJax.loader) {
- MathJax.loader.preLoad(
- '[tex]/action',
- '[tex]/ams',
- '[tex]/amscd',
- '[tex]/bbox',
- '[tex]/boldsymbol',
- '[tex]/braket',
- '[tex]/bussproofs',
- '[tex]/cancel',
- '[tex]/cases',
- '[tex]/centernot',
- '[tex]/color',
- '[tex]/colorv2',
- '[tex]/colortbl',
- '[tex]/empheq',
- '[tex]/enclose',
- '[tex]/extpfeil',
- '[tex]/gensymb',
- '[tex]/html',
- '[tex]/mathtools',
- '[tex]/mhchem',
- '[tex]/newcommand',
- '[tex]/noerrors',
- '[tex]/noundefined',
- '[tex]/physics',
- '[tex]/upgreek',
- '[tex]/unicode',
- '[tex]/verb',
- '[tex]/configmacros',
- '[tex]/tagformat',
- '[tex]/textcomp',
- '[tex]/textmacros',
- '[tex]/setoptions',
- );
- }
- export const AllPackages: string[] = [
- 'base',
- 'action',
- 'ams',
- 'amscd',
- 'bbox',
- 'boldsymbol',
- 'braket',
- 'bussproofs',
- 'cancel',
- 'cases',
- 'centernot',
- 'color',
- 'colortbl',
- 'empheq',
- 'enclose',
- 'extpfeil',
- 'gensymb',
- 'html',
- 'mathtools',
- 'mhchem',
- 'newcommand',
- 'noerrors',
- 'noundefined',
- 'upgreek',
- 'unicode',
- 'verb',
- 'configmacros',
- 'tagformat',
- 'textcomp',
- 'textmacros'
- ];
|