Plotly 在实现 $...$

问题描述 投票:0回答:1

这是来自plotly网站的示例:Latex in Python,与示例不同,我的代码只是不会显示渲染的公式:

import plotly.express as px

fig = px.line(x=[1, 2, 3, 4], y=[1, 4, 9, 16], title=r'$\alpha_{1c} = 352 \pm 11 \text{ km s}^{-1}$')
fig.update_layout(
    xaxis_title=r'$\sqrt{(n_\text{c}(t|{T_\text{early}}))}$',
    yaxis_title=r'$d, r \text{ (solar radius)}$'
)
fig.show()

我的结果:

python plotly plotly-python
1个回答
0
投票

plotly git issues 中发布了一个解决方法: https://github.com/microsoft/vscode-jupyter/issues/8131#issuecomment-1589961116

这在 Jupyter-lab 中对我有用

© www.soinside.com 2019 - 2024. All rights reserved.