using "tex-...-full.js" still needs extensions being loaded and added ...
Created by: parhizkari
The following minimal test code doesn't typeset the equations:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width">
<title>MathJax v3 with TeX input and SVG output</title>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$']],
tagFormat: {
number: function(n){
return String(n).replace(/0/g,"00");
}
}
},
svg: {fontCache: 'global'}
};
</script>
<script id="MathJax-script" async src="tex-svg-full.js"></script>
</head>
<body>
When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</body>
</html>
The problem is resolved if one adds the extension, loads it inside the loader, and adds it as a package to the config setup of Mathjax; but isn't "...-full.js" package expected to be single-file solutions?