Env: MathJax 1.1

We modified the styles element in default.js to modify some of the display settings. As you see below, the font-size has been set to 50% which causes MathJax to render properly in Firefox (with 50%) but a much higher font size in Chrome.

If we remove the font-size, it appears properly in Chrome but shows up smaller in Firefox.

  1. What would be the right way to manage the font-size, so that it appears properly on all browsers?
  2. What would be the preferred mechanism to add custom changes to MathJax (such as the one given below), so that we don't break much on a future upgrade.

// // This allows you to change the CSS that controls the menu // appearance. See the extensions/MathMenu.js file for details // of the default settings. //

styles : {
    ".MathJax" : {
         "font-family" : "Arial",
         "font-size": "50%"
  }
}
link|improve this question

49% accept rate
feedback

1 Answer

See my post on the MathJax users forum for details.

The font size is set dynamically by MathJax to try to match the surrounding text properly, so you should not be setting the font-size for MathJax explicitly. If that isn't happening properly, I would like to see the situation where it fails so that the font-size- matching can be improved. It may be that other CSS on the page is interfering with that, so I would need to see a complete page where the problem exists.

You should set the "scale" parameter in the HTML-CSS section of your configuration rather than using CSS directly if you want to change the size of the mathematics relative to the surrounding text. You should not set font-size directly, as this will almost surely cause MathJax to fail.

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.