gpt4 book ai didi

python - matplotlib 中 LaTeX 轴标签的粗体字重

转载 作者:IT老高 更新时间:2023-10-28 22:12:04 27 4
gpt4 key购买 nike

matplotlib您可以通过

将轴标签的文本设为粗体
plt.xlabel('foo',fontweight='bold')

你也可以在正确的后端使用 LaTeX

plt.xlabel(r'$\phi$')

然而,当你将它们组合在一起时,数学文本不再是粗体了

plt.xlabel(r'$\phi$',fontweight='bold')

以下 LaTeX 命令似乎也没有任何效果

plt.xlabel(r'$\bf \phi$')
plt.xlabel(r'$\mathbf{\phi}$')

如何在我的轴标签中添加粗体 $\phi$

最佳答案

很遗憾,您不能使用粗体来加粗符号,请参阅 this question在 tex.stackexchange 上。

正如答案所暗示的,您可以使用 \boldsymbol 来加粗 phi:

r'$\boldsymbol{\phi}$'

您需要将 amsmath 加载到 TeX 序言中:

matplotlib.rc('text', usetex=True)
matplotlib.rcParams['text.latex.preamble']=[r"\usepackage{amsmath}"]

关于python - matplotlib 中 LaTeX 轴标签的粗体字重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14324477/

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