mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
33 lines
555 B
JavaScript
33 lines
555 B
JavaScript
window.MathJax = {
|
|
tex: {
|
|
displayMath: [["\\[", "\\]"]],
|
|
processRefs: false,
|
|
processEnvironments: false,
|
|
packages: [
|
|
'base',
|
|
'ams',
|
|
'noerrors',
|
|
'noundefined',
|
|
'mhchem',
|
|
'require',
|
|
]
|
|
},
|
|
startup: {
|
|
typeset: false
|
|
},
|
|
options: {
|
|
renderActions: {
|
|
addMenu: [],
|
|
checkLoading: []
|
|
},
|
|
ignoreHtmlClass: 'tex2jax_ignore',
|
|
processHtmlClass: 'tex2jax_process'
|
|
},
|
|
loader: {
|
|
load: [
|
|
'[tex]/noerrors',
|
|
'[tex]/mhchem',
|
|
'[tex]/require',
|
|
]
|
|
}
|
|
};
|