Davide P. Cervone
Davide P. Cervone
The `svg.js` file that you are seeing coming from jsdelivr is **not** `output/svg.js`, but rather `mathjax-newcm/svg.js`. You need to put the `mathjax-newcm` directory somewhere on your server and set `fontPath`...
> Is there a way to put them into one directory? The font distributions can be quite large, and we have not included them in the core MathJax package to...
FYI, you can install the font extensions on your server as well, and configure a loader path for `mathjax-mhchem-extension` to point to the location of the package. The other extensions...
Use something like ``` js MathJax = { loader: { paths: { 'mathjax-mhchem-extension': '', } } }; ```
Yes, the new fonts in v4 have much greater coverage, and are broken down into a number of smaller pieces. But MathJax v4 does include the older mathjax-tex font, which...
PS, some TeX extensions need their own fonts (like `mhchem` and `bbm`), so if you plan to use those locally, you would need to make them available as well and...
The needed font files can be obtained from: * https://cdn.jsdelivr.net/npm/@mathjax/mathjax-tex-font@4/svg.js * https://cdn.jsdelivr.net/npm/@mathjax/mathjax-mhchem-font-extension@4/svg.js or you could get them from the npm packages `@mathjax/mathjax-tex-font` and `@mathjax/mathjax-mhchem-font-extension`. I have put together a minimal...
> Thanks a ton! We're using `startup.js` Ok, then the file list will need to be updated, but first I need answers to a few questions: * Do you want...
OK, here is the file list for the minimal off-line app that you describe: ``` minimal/mathjax/ui/safe.js minimal/mathjax/core.js minimal/mathjax/input/asciimath.js minimal/mathjax/input/tex.js minimal/mathjax/startup.js minimal/mathjax/output/svg.js minimal/fonts/mathjax-tex-font/svg.js ``` It is essentially the same as you...
Your LaTeX example is invalid (in actual LaTeX) for two reasons: (1) you don't have enough entries in the template for the number of columns in your array, and (2)...