mirror of
https://gitlab.com/ansol/web-ansol.org.git
synced 2024-11-21 22:01:31 +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']
|
|
}
|
|
};
|