2017-07-28 08:19:06 +02:00
|
|
|
window.MathJax = {
|
2020-11-03 13:05:10 +01:00
|
|
|
tex: {
|
|
|
|
displayMath: [["\\[", "\\]"]],
|
|
|
|
processRefs: false,
|
|
|
|
processEnvironments: false,
|
2020-11-15 20:56:50 +01:00
|
|
|
packages: {
|
|
|
|
'[+]': [
|
|
|
|
'noerrors',
|
|
|
|
'mhchem',
|
|
|
|
],
|
|
|
|
}
|
2020-11-03 13:05:10 +01:00
|
|
|
},
|
|
|
|
startup: {
|
2020-11-15 20:56:50 +01:00
|
|
|
typeset: false,
|
|
|
|
pageReady: () => {
|
|
|
|
console.log('page is ready');
|
|
|
|
return MathJax.startup.defaultPageReady();
|
|
|
|
},
|
2020-11-03 13:05:10 +01:00
|
|
|
},
|
|
|
|
options: {
|
|
|
|
renderActions: {
|
|
|
|
addMenu: [],
|
|
|
|
checkLoading: []
|
2017-09-13 05:08:43 +02:00
|
|
|
},
|
2020-11-03 13:05:10 +01:00
|
|
|
ignoreHtmlClass: 'tex2jax_ignore',
|
2020-11-15 20:56:50 +01:00
|
|
|
processHtmlClass: 'tex2jax_process',
|
2020-11-03 13:05:10 +01:00
|
|
|
},
|
|
|
|
loader: {
|
2020-11-15 13:58:51 +01:00
|
|
|
load: [
|
|
|
|
'[tex]/noerrors',
|
|
|
|
'[tex]/mhchem',
|
|
|
|
]
|
2020-11-03 13:05:10 +01:00
|
|
|
}
|
2017-07-28 08:19:06 +02:00
|
|
|
};
|