我试图用matplotlib生成一个图,我使用'stix'字体(rcParams 'mathtext. fontset ']= ' stix '),以便从文本到数学文本有平滑的字体大小过渡。然而,我的一些数学符号我想用斜体(标量值)和一些斜体AND粗体(Tensor)我不想通过使用乳胶渲染的解决方案,因为其他事情都搞砸了。
我将给予你一个小例子来描述这个问题:
from numpy import *
from matplotlib.pyplot import *
# Chaning font to stix
rcParams['mathtext.fontset'] = 'stix'
# Some data to constract this plotting example
datax=[0,1,2]
datay=[8,9,10]
datay2=[8,15,10]
fig, ay = subplots()
ay.plot(datax, datay, color="0.", ls='-', label= r"$F_{\alpha}$")
ay.plot(datax, datay2, color="0.", ls='-', label=r"$\mathbf{F_{\alpha}}$")
# Now add the legend with some customizations.
legend = ay.legend(loc='left', shadow=True)
#frame = legend.get_frame()
#frame.set_facecolor('0.90')
xlabel(r"x label",fontsize=18)
ylabel(r'y label', fontsize=18)
grid()
show()
如果你运行代码,第一个标签是斜体,第二个标签是粗体。我如何才能实现第二个标签是粗体和斜体?
Problem with math text to be Italic and bold
3条答案
按热度按时间xkrw2x1b1#
需要一些更具体的
mathtext
参数:请注意,我在轴标签中也使用了
mathbf
。可能会将标签的其余部分更改为STIX字体,您可以定义非斜体-非粗体的情况:请参阅“自定义字体”下的docs。matplotlib Gallery中至少有两个例子可能会有所帮助:一个是字体家族,另一个是提醒我们哪些是STIX字体。
cczfrluj2#
从matplotlib 3.8版本开始,有
\mathbfit
命令:ahy6op9u3#
所以MatplotLib使用LaTeX语法,所以我最好的猜测是,你可以使用LaTeX语法来获得斜体和粗体,这是
所以在你的情况下