-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Long math expression in output is not wrapped unlike notebook 6 #7055
Comments
Just for context, this is a know issue in MathJax 3 and will probably be resolved by upgrading |
I am not sure if this is the same issue with jupyterlab/jupyterlab#14570. The math expression does not use On the other hand, I could confirm that it is an issue of mathax3 vs mathjax2. No problem with Notebook 7 itself. Thank you for attention. |
Isn't it possible to fix this by an appropriate CSS styling of I noticed that placing and evaluating an html cell in the notebook, like this: %%html
<style>
mjx-container {
overflow-x: auto;
overflow-wrap: break-word;
max-width: 50%;
}
</style> does make the window to show a displayed LaTeX formula narrow (50% width, as requested), but does not force formula wrapping. It could be a bug/missing feature in MathJax-3, I don't know. |
apart from performance impact, it breaks off-line display of MathJax. Not sure whether this can be considered a bug in |
Hi,
Testing notebook 7 with SageMath, we noticed long math expression rendered by MathJax 3 is not wrapped, unlike notebook 6.
See sagemath/sage#36129 (comment)
I hope this behavioral change is not intended. I think it is a bug.
I checked the issue on Chrome browser both with notebook 7.0.3 and jupyterlab 4.0.6
The text was updated successfully, but these errors were encountered: