python – 使matplotlib标题的一部分加粗和不同的颜色

前端之家收集整理的这篇文章主要介绍了python – 使matplotlib标题的一部分加粗和不同的颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想将标题的一部分改为粗体.例如:

plt.title("This is title number: " + str(number))

鉴于上面的标题,我如何加粗str(数字)部分.

最佳答案
从matplotlib第2版开始,
没有必要使用乳胶(这需要工作乳胶安装).可以使用普通的MathText以粗体呈现标题的一部分.

import matplotlib.pyplot as plt
number = 2017
plt.title("This is title number: " + r"$\bf{" + str(number) + "}$")
plt.show()

enter image description here

原文链接:https://www.f2er.com/python/439498.html

猜你在找的Python相关文章