这是来自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()
plotly git issues 中发布了一个解决方法: https://github.com/microsoft/vscode-jupyter/issues/8131#issuecomment-1589961116
这在 Jupyter-lab 中对我有用