mirror of
https://gitlab.com/ansol/web-ansol.org.git
synced 2024-11-22 22:31:32 +00:00
17 lines
487 B
JavaScript
17 lines
487 B
JavaScript
|
// MathJax Configuration
|
||
|
//
|
||
|
// v2 to v3 upgrade notes:
|
||
|
// - The CommonHTML.linebreaks option is not yet implemented (but may be in a future release)
|
||
|
// - The TeX.noUndefined.attributes option is not yet implemented (but may be in a future release)
|
||
|
window.MathJax = {
|
||
|
tex: {
|
||
|
inlineMath: [['$', '$'], ['\\(', '\\)']],
|
||
|
displayMath: [['$$', '$$'], ['\\[', '\\]']],
|
||
|
processEscapes: false,
|
||
|
packages: {'[+]': ['noerrors']}
|
||
|
},
|
||
|
loader: {
|
||
|
load: ['[tex]/noerrors']
|
||
|
}
|
||
|
};
|