mathjax.js 301 B

12345678910111213141516
  1. window.MathJax = {
  2. tex: {
  3. inlineMath: [["\\(", "\\)"]],
  4. displayMath: [["\\[", "\\]"]],
  5. processEscapes: true,
  6. processEnvironments: true
  7. },
  8. options: {
  9. ignoreHtmlClass: ".*|",
  10. processHtmlClass: "arithmatex"
  11. }
  12. };
  13. document$.subscribe(() => {
  14. MathJax.typesetPromise()
  15. })