mathjax-config.js 487 B

12345678910111213141516
  1. // MathJax Configuration
  2. //
  3. // v2 to v3 upgrade notes:
  4. // - The CommonHTML.linebreaks option is not yet implemented (but may be in a future release)
  5. // - The TeX.noUndefined.attributes option is not yet implemented (but may be in a future release)
  6. window.MathJax = {
  7. tex: {
  8. inlineMath: [['$', '$'], ['\\(', '\\)']],
  9. displayMath: [['$$', '$$'], ['\\[', '\\]']],
  10. processEscapes: false,
  11. packages: {'[+]': ['noerrors']}
  12. },
  13. loader: {
  14. load: ['[tex]/noerrors']
  15. }
  16. };