By default, automatic line breaking is disabled so you must specify line
breaks explicitly:
<math>
<mi>x</mi><mo>+</mo><mi>x</mi><mo>+</mo><mi>x</mi><mo
linebreak="newline">+</mo><mi>x</mi><mo>+</mo><mi>x</mi><mo>+</mo><mi>x</mi>
</math>
To enable automatic line breaking modify your configuration file (see
http://docs.mathjax.org/en/latest/options/HTML-CSS.html,
http://docs.mathjax.org/en/latest/options/SVG.html), for example:
<script type="text/javascript"
src="
http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
"HTML-CSS": {
linebreaks: {automatic: true}
},
"SVG": {
linebreaks: {automatic: true}
}
});
</script>
</head>
<body>
<div style="width: 5em">
<math>
<mi>x</mi><mo>+</mo><mi>x</mi><mo>+</mo><mi>x</mi><mo>+</mo><mi>x</mi><mo>+</mo><mi>x</mi><mo>+</mo><mi>x</mi>
</math>
</div>
...
On 30/05/2013 12:29, Simbu R wrote:
> Hi fred,
> My input is mathml and i have use mathjax for browser view.
> by simbu
>