Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

mathjax customization

Project: Calculus 1
Views: 66
1
MathJax.Hub.Config({
2
3
TeX: {
4
extensions: ["autoload-all.js", “https://www.matheno.com/MathJax/extensions/img.js"],
5
Macros: {
6
cmark: "{\\color{green}{\\unicode{x2713}}}",
7
xmark: "{\\color{red}{\\unicode{x2717}}}"
8
},
9
noUndefined: { disabled: true },
10
noErrors: { disabled: true }
11
},
12
13
tex2jax: {
14
inlineMath: [
15
['$','$'], ['\\(','\\)']
16
],
17
processEscapes: true,
18
displayMath: [
19
['$$','$$'], ['\\[','\\]']
20
],
21
balanceBraces: true,
22
}
23
24
});
25
26
MathJax.Ajax.loadComplete("https://www.matheno.com/MathJax/config/local.js");
27
28