2

I checked many instructions on how to set LaTeX in blogspot. I went to "add a gadget", "Configure HTML/JavaScript", and How to use LaTeX on blogspot?.

Then I posted this code:

<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js">
MathJax.Hub.Config({
 extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
 jax: ["input/TeX", "output/HTML-CSS"],
 tex2jax: {
     inlineMath: [ ['$','$'], ["\\(","\\)"] ],
     displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
 },
 "HTML-CSS": { availableFonts: ["TeX"] }
});
</script>

But nothing happened successfully.

What would be a screenshot of the process?

Community
  • 1
  • 1
css_wp
  • 193
  • 1
  • 3
  • 11
  • Unfortunately, mathjax doesn't use the TeX engine at all. This question is therefore out of the scope of this site. – ArTourter Feb 21 '13 at 11:27
  • 2
    This looks like a MathJaX configuration problem which isn't therefore related to TeX itself. It is therefore off-topic for this site where questions are meant to be about TeX. You could try it on StackOverflow. – Andrew Stacey Feb 21 '13 at 11:27
  • It works for me, make sure you've placed the code between `` and ``. A tip: If you indent lines by 4 spaces, they'll be [marked as a code sample](http://meta.tex.stackexchange.com/q/1192). You can also highlight the code and click the "code" button (with "{}" on it). – Silke Feb 21 '13 at 11:28
  • Note from the future: cdn.mathjax.org is nearing its end-of-life, check https://www.mathjax.org/cdn-shutting-down for migration tips (and perhaps update your post for future readers). – Peter Krautzberger Apr 21 '17 at 07:40

1 Answers1

0

Try removing the extra comma after the displayMath delimiters. These extra commas often confuse Internet Explorer, so if you are using Internet Explorer as your browser, that might be the issue.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Davide Cervone
  • 11,211
  • 1
  • 28
  • 48