Cannot display latex correctly in make_subplots
未关闭
还没有人认领这个 Issue。
bug
P3
- 主要语言
- Python
- 星标
- 18.8k
- 派生
- 2.8k
- 平均合并
- 16 小时 26 分钟
- 30 天内合并 PR
- 21
描述
I am using make_subplots and insert latex math expression but it displays incorrectly.
Here is my sample code:
import plotly.graph_objs as go
from plotly.subplots import make_subplots
fig = make_subplots(rows=1, cols=2)
trace1 = go.Scatter(x=[1, 2, 3], y=[4, 5, 6])
trace2 = go.Scatter(x=[20, 30, 40], y=[50, 60, 70])
fig.add_trace(trace1, row=1, col=1)
fig.add_trace(trace2, row=1, col=2)
fig.update_layout(
xaxis=dict(title='$x^2$'),
xaxis2=dict(title='$\\sqrt{x}$')
)
fig.show()
Here is my output:
As you can see, it does not display correctly.
My setup:
OS: Ubuntu 20.04
Python: 3.10.9
Plotly: 5.16.1
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先使用 Plotly 5.16.1 运行提供的 Python 示例,并比较 make_subplots 的两个坐标轴标题的渲染方式。跟踪 make_subplots 使用的标题渲染入口点,然后验证两个 LaTeX 表达式都能在生成的图中正确显示。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- latex, python
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100