I have recently started a blog, in which I talk about programming, reading, science, and math. Now, for the programming part, I have installed SyntaxHighlighter, but I am rather confused with what I should use for math. I'm thinking about using MathJax, since I'm used to it and it's pretty good. The issue is, MathJax will interfere with other stuff. For example, it can interfere with any PHP code (which has lots of dollar signs) that I use on a programming post.

Now I want to keep the inline/block dollar signs, but I don't want it to blow up other stuff. I was thinking about associating MathJax with a certain CSS class, so that I can enclose all sections which use math extensively with those tags. By this, I mean that I can still type normally within those divs (without having it math-ified), but I can use the dollar signs and get math code. Outside the divs, any dollar signs will be left alone.

Does anyone know a configuration option that lets me do this? I know JS, but I can't find any options in the documentation. Thought I'd ask here before plowing through the code.

link|improve this question

75% accept rate
Sorry, this is purely a MathJax issue, and isn't related to TeX. Please see the faq. – Mark S. Everitt Feb 15 at 5:34
@MarkS.Everitt Should I move it to StackOverflow? – Manishearth Feb 15 at 5:35
1  
You can request that if you like, but don't cross post. Let a moderator do the move. Incidentally, you may want to look into ignoreClass: "tex2jax_ignore" for your code blocks. See here. – Mark S. Everitt Feb 15 at 5:40
Thanks, right below that there's a processClass: "tex2jax_process". Question answered. – Manishearth Feb 15 at 5:43
feedback

migrated from tex.stackexchange.com Feb 15 at 7:51

This question came from our site for users of TeX, LaTeX, ConTeXt, and related typesetting systems.

2 Answers

up vote 2 down vote accepted

add class="tex2jax_ignore" to your document <body> tag, and then use class="tex2jax_process" on the containers for the parts of your page where you want to include mathematics. As others have pointed out, you can configure the class names to use for these features. E.g.

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
  tex2jax: {
    inlineMath: [['$','$'],['\\(','\\)']],
    processClass: "mathjax",
    ignoreClass: "no-mathjax"
  }
});
</script>

Then your page would be

<html>
<head>
  ...
</head>
<body class="no-mathjax">
  ...
  <div class="mathjax">
  ... (math goes here) ...
  </div>
  ...
</body>
</html>

Hope that helps.

Davide

link|improve this answer
feedback

Credit: @MarkS.Everitt

http://www.mathjax.org/docs/1.1/options/tex2jax.html

There is a configuration option, processClass: "tex2jax_process" The final configuration becomes:

tex2jax: {

inlineMath: [['$','$'], ['\\(','\\)']],'

ignoreClass: "[a-zA-Z1-9]*",

processClass: "math"

}
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.