最佳答案
从matplotlib第2版开始,
没有必要使用乳胶(这需要工作乳胶安装).可以使用普通的MathText以粗体呈现标题的一部分.
原文链接:https://www.f2er.com/python/439498.html没有必要使用乳胶(这需要工作乳胶安装).可以使用普通的MathText以粗体呈现标题的一部分.
import matplotlib.pyplot as plt
number = 2017
plt.title("This is title number: " + r"$\bf{" + str(number) + "}$")
plt.show()