File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,9 @@ export const dependencies = {
2727 '[tex]/tagformat' : [ 'input/tex-base' ] ,
2828 '[tex]/textmacros' : [ 'input/tex-base' ] ,
2929 '[tex]/unicode' : [ 'input/tex-base' ] ,
30- '[tex]/verb' : [ 'input/tex-base' ]
30+ '[tex]/verb' : [ 'input/tex-base' ] ,
31+ '[tex]/numcases' : [ '[tex]/empheq' ] ,
32+ '[tex]/empheq' : [ 'input/tex-base' , '[tex]/ams' ]
3133} ;
3234
3335export const paths = {
@@ -58,7 +60,9 @@ const allPackages = [
5860 '[tex]/tagformat' ,
5961 '[tex]/textmacros' ,
6062 '[tex]/unicode' ,
61- '[tex]/verb'
63+ '[tex]/verb' ,
64+ '[tex]/numcases' ,
65+ '[tex]/empheq'
6266] ;
6367
6468export const provides = {
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ export const source = {
3232 '[tex]/textmacros' : `${ src } /input/tex/extensions/textmacros/textmacros.js` ,
3333 '[tex]/unicode' : `${ src } /input/tex/extensions/unicode/unicode.js` ,
3434 '[tex]/verb' : `${ src } /input/tex/extensions/verb/verb.js` ,
35+ '[tex]/numcases' : `${ src } /input/tex/extensions/numcases/numcases.js` ,
36+ '[tex]/empheq' : `${ src } /input/tex/extensions/empheq/empheq.js` ,
3537 'input/mml' : `${ src } /input/mml/mml.js` ,
3638 'input/mml/entities' : `${ src } /input/mml/entities/entities.js` ,
3739 'input/asciimath' : `${ src } /input/asciimath/asciimath.js` ,
Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ import './tagformat/TagFormatConfiguration.js';
4545import './textmacros/TextMacrosConfiguration.js' ;
4646import './unicode/UnicodeConfiguration.js' ;
4747import './verb/VerbConfiguration.js' ;
48+ import './numcases/NumcasesConfiguration.js' ;
49+ import './empheq/EmpheqConfiguration.js' ;
4850
4951declare const MathJax : any ;
5052if ( typeof MathJax !== 'undefined' && MathJax . loader ) {
@@ -69,6 +71,8 @@ if (typeof MathJax !== 'undefined' && MathJax.loader) {
6971 '[tex]/physics' ,
7072 '[tex]/unicode' ,
7173 '[tex]/verb' ,
74+ '[tex]/numcases' ,
75+ '[tex]/empheq' ,
7276 '[tex]/configmacros' ,
7377 '[tex]/tagformat' ,
7478 '[tex]/textmacros'
@@ -95,6 +99,8 @@ export const AllPackages: string[] = [
9599 'noundefined' ,
96100 'unicode' ,
97101 'verb' ,
102+ 'numcases' ,
103+ 'empheq' ,
98104 'configmacros' ,
99105 'tagformat' ,
100106 'textmacros'
You can’t perform that action at this time.
0 commit comments