Davide
I'll have to look further into other solutions.
Davide
<style>
.MathJax .mtext {font-family: Helvetica ! important}
</style>
would make mtext use Helvetica. The "! important" is critical
otherwise the settings that MathJax makes will take precedence. You
can use the MathJax styles configuration block to make a similar style
available:
"HTML-CSS": {
styles: {
".MathJax .mtext": {
"font-family": "Helvetica ! important"
}
}
}
I would not recommend editing the HTML-CSS output jax in the way you
have suggested.
Davide