fix to make mathjax work in notebook page

This commit is contained in:
Pim Nelissen
2026-01-28 15:07:58 +01:00
parent 2551f854d6
commit 14e49e63aa
2 changed files with 5 additions and 5 deletions

View File

@ -1,12 +1,11 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
inlineMath: [['$', '$'], ["\\(", "\\)"]],
displayMath: [['$$', '$$'], ["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex"
}
};