Skip to content Skip to sidebar Skip to footer

Blog With Mathjax Seen On A Cellphone

I'm using mathjax in my blogspot blog and it works well when seen in a computer, but formulas don't transform when seen on a cellphone. I found this other blogspot blog where its f

Solution 1:

This is happening because the Mathjax script (as seen below) is not loading in the mobile template.

<scriptsrc='//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML,http://flengyel.github.io/mathjaxconfig.js,http://sonoisa.github.io/xyjax_ext/xypic.js'type='text/javascript'>MathJax.Hub.Config({
    extensions: ["tex2jax.js"],
    jax: ["input/TeX", "output/HTML-CSS"],
    tex2jax: {
        inlineMath: [
            ['$', '$'],
            ["\\(", "\\)"]
        ],
        displayMath: [
            ['$$', '$$'],
            ["\\[", "\\]"]
        ],
    },
    "HTML-CSS": {
        availableFonts: ["TeX"]
    }
});
</script>

To make it work on Mobile templates, you will have to enable Custom mobile template by going into Theme > Gear Icon > Selecting Custom from the Choose mobile theme dropdown, Refer to the image below -

Enable Custom mobile template on Blogger

Post a Comment for "Blog With Mathjax Seen On A Cellphone"