Davide P. Cervone
Davide P. Cervone
A quick Google search for ["gatsbyjs MathJax"](https://www.google.com/search?client=safari&rls=en&q=gatsbyjs+mathjax&ie=UTF-8&oe=UTF-8) suggests that there are two different plugins for MathJax in gatsbyjs, [gatsby-remark-mathjax](https://www.gatsbyjs.com/plugins/gatsby-remark-mathjax/) and [gatsby-remark-mathjax-ssr](https://www.gatsbyjs.com/plugins/gatsby-remark-mathjax-ssr/), and there is a [tutorial](https://zhoumingjun.github.io/post/2018-09-04-enable-mathjax-in-gatsby/) for the first one...
> Will they also have server-side rendering examples? No, the server-side examples are here, and the browser-based examples are there. Good luck!
@smalltimer, sorry for the delay in getting to your question. Can you supply the code that you currently have? It is hard to give you advice without knowing where you...
Just to be clear, collapsible does not make *everything* collapsible, only those subexpressions that are complicated enough. So `y = x + 1` doesn't actually become collapsible. Also, collapsible doesn't...
Note that `\overbrace{1+2}` works as expected, so the empty braces seem to be the issue.
I'm not able to reproduce the result. It looks like there may be a minimum font size that is preventing MathJax from reducing the exponents to their proper size. It...
> I can confirm it is caused by chrome's minimum font setting for Chinese. Thanks for the updated information. As you point out, there is nothing MathJax can do about...
An alternative that you might consider is the use of SVG output rather than CHTML output. Since that uses paths (at least for the characters in the MathJax fonts), that...
I'm not able to reproduce the issue. Running `tex2svg --fontCache global` on ``` Test $$x+1$$ ``` produces a file that displays properly for me in Safari 14.1.2 on Mac OS...
Your original code uses the direct importing of MathJax modules (as illustrated in the [direct](https://github.com/mathjax/MathJax-demos-node/tree/master/direct) examples of the MathJax node demos), and you are now trying to mix that with...