I ran into problems when installing MathJax. I use the following code.
++START CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
}
});
</script>
<script type="text/javascript" src="file///d:/MathJax/MathJax.js?config=default"></script>
</head>
<body>
$a = b$ and $c = d$.
</body>
</html>
++END CODE
My MathJax.js is indeed at d:\Mathjax\MathJax.js (Windows notation).
The testing of the installation went also fine. I tested all there was to be tested according the
documentation (index.html etc.).
The URL "file///d:/MathJax/MathJax.js?config=default" is also correct.
I tested it in my browser by putting that URL in the URL bar. It is going fine also.
But I still do not succeed.
By the way. If I use the URL of the server of MathJax, then everything runs fine.
I am running windows 7 with the browser Firefox 21.0.
I tested this code also in TopStyle which uses IE as testing browser. It still does not work.