7
1
mirror of https://gitlab.com/ansol/web-ansol.org.git synced 2024-09-20 00:35:18 +00:00
web-ansol.org/themes/academic/assets/js/mathjax-config.js
2020-06-11 12:46:16 +01:00

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']
}
};