在 Chrome 中显示时字体更大
Env:MathJax 1.1
我们修改了default.js中的styles元素来修改一些显示设置。如下所示,字体大小已设置为 50%,这导致 MathJax 在 Firefox 中正确呈现(50%),但在 Chrome 中字体大小要大得多。
如果我们删除字体大小,它在 Chrome 中显示正常,但在 Firefox 中显示较小。
- 管理字体大小的正确方法是什么,以便它在所有浏览器上正确显示?
- 向 MathJax 添加自定义更改的首选机制是什么(例如下面给出的),以便我们在未来的升级中不会造成太大破坏。
// // 这允许您更改控制菜单的 CSS // 外貌。有关详细信息,请参阅 extensions/MathMenu.js 文件 // 默认设置。 //
styles : {
".MathJax" : {
"font-family" : "Arial",
"font-size": "50%"
}
}
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.
- What would be the right way to manage the font-size, so that it appears properly on all browsers?
- 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%"
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关详细信息,请参阅我在 MathJax 用户论坛上的帖子。
See my post on the MathJax users forum for details.