Bold font weight for LaTeX axes label in matplotlib(matplotlib 中 LaTeX 轴标签的粗体字重)
问题描述
在 matplotlib
中,您可以将轴标签的文本设置为粗体
In matplotlib
you can make the text of an axis label bold by
plt.xlabel('foo',fontweight='bold')
你也可以在正确的后端使用 LaTeX
You can also use LaTeX with the right backend
plt.xlabel(r'$phi$')
然而,当你将它们组合在一起时,数学文本不再是粗体了
When you combine them however, the math text is not bold anymore
plt.xlabel(r'$phi$',fontweight='bold')
以下 LaTeX 命令似乎也没有任何效果
Nor do the following LaTeX commands seem to have any effect
plt.xlabel(r'$f phi$')
plt.xlabel(r'$mathbf{phi}$')
如何在我的轴标签中添加粗体 $phi$
?
推荐答案
很遗憾,您不能使用粗体字体来加粗符号,请参阅 this question on tex.stackexchange.
Unfortunately you can't bold symbols using the bold font, see this question on tex.stackexchange.
正如答案所暗示的,您可以使用 oldsymbol
来加粗 phi:
As the answer suggests, you could use oldsymbol
to bold phi:
r'$oldsymbol{phi}$'
您需要将 amsmath
加载到 TeX 序言中:
You'll need to load amsmath
into the TeX preamble:
matplotlib.rc('text', usetex=True)
matplotlib.rcParams['text.latex.preamble']=[r"usepackage{amsmath}"]
这篇关于matplotlib 中 LaTeX 轴标签的粗体字重的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:matplotlib 中 LaTeX 轴标签的粗体字重


基础教程推荐
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01