gpt4 book ai didi

python - 如何插入大正斜杠来标记 matplotlib 轴

转载 作者:太空宇宙 更新时间:2023-11-04 02:44:47 24 4
gpt4 key购买 nike

我想知道如何在标记 matplotlib 轴时插入大正斜杠符号。

即使在使用 plt.rcParams 导入 amsmath 包后,在正常 latex 环境中应该起作用的技巧也不起作用。

import matplotlib.pyplot as plt
params = {'text.latex.preamble' : [r'\usepackage{amsmath}']}
plt.rcParams.update(params)
plt.plot([0,1],[0,1])
# Doesn't display properly!
plt.xlabel(r'$\left. \int \limits_{a}^{b} \frac{x}{y} \middle/ \int \limits_c^d \frac{x}{y} \right.$')

我收到以下错误信息:

ValueError: 
\left. \int \limits_{a}^{b} \frac{x}{y} \middle/ \int \limits_c^d \frac{x}{y} \right.
^
Expected "\right" (at char 40), (line:1, col:41)

最佳答案

我刚刚遇到了同样的问题,我找到了一个没有 usetex=True 的解决方案。 Matplotlib 接受 /\left 的结合,所以你可以这样做:

plt.xlabel(r'$ \int_{a}^{b} \frac{x}{y} \left/ \int_c^d \frac{x}{y} \right. $')

结果:

Matplotlib formula with large slash

关于python - 如何插入大正斜杠来标记 matplotlib 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45431391/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com