-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Latex axes label issue #105
Comments
thanks for reporting! looks like we'll have to move around our latex |
Any ETA on this? Thanks. |
@benvarkey - You can combine For now, re-arranging the |
It doesn't render with |
I am experiencing the same issue and can confirm this similarly occurs when using plotly offline with MATLAB. |
I have the same issue in offline Jupyter notebooks. When I export the plot to the online web-ui it renders the latex label correctly. |
Is there any plan to fix/implement this? LaTeX rendering is a fairly important feature when generating scientific plots. |
Hey guys, someone on the Front support is wondering about an estimation for when this feature will be fixed. Any ideas? |
I would also love using Latex in plotly offline mode! |
Just wanted to point out to people here that inserting a JavaScript snippet into the notebook fixed the issue for me. Thanks @jjaraalm !!! |
@chriddyp maybe you guys could implement this patch? ❤️ |
Opening a PR here to try out some different solutions: #683 |
Same problem here - LaTeX math labels don't render properly in offline mode (in a Jupyter notebook). Hope a fix is coming soon, thanks! |
Adding my voice, as well: I would love for this to be fixed. |
Same here :) |
I'm having the same issue as well, its pretty frustrating, and its making me not want to use plotly any more. |
@Wes-Skeeter have you tried using the fix mentioned by flo-compbio, see here this fixed the problem for me, but it's just a workaround and I would also love to have a fix in plotly |
Thanks, but unfortunately, this didn't fix it for me :/ I just want to put an overbar on some text labels, not sue why it has to be so complicated. HTML works for things like subscripts, Its frustrating I can't use it for this. |
I'm using plotly in offline mode and HTML is working just fine for me, MWE: import plotly.offline as offline
from plotly.graph_objs import *
offline.init_notebook_mode(connected=True)
layout = Layout(title = '<span style="text-decoration: overline">text</span>')
fig = dict(data = [Scatter()], layout=layout)
offline.iplot(fig) |
What a pity! LaTeX-Code is still not interpreted in offline plots. So I'll have to go back to Matplotlib until this is fixed. |
The offline latex/MathJax issues are going to be resolved by plotly/plotly.js#2994 and #1169. Follow along if you're interested! |
Done in #1243 and will be released in version 3.4.0. LaTeX support requires no API changes for |
ylabel('R$_{xx,ac}$')
worked in matplotlib, didn't work in plotly
The text was updated successfully, but these errors were encountered: