matplotlib窗口标题中的下标(图号)

时间:2018-01-26 18:43:00

标签: python matplotlib

有没有办法在窗口标题(plt.figure(num='Window title'))中写下标。我尝试使用matplotlib数学表达式的标准格式,但它没有像其他文本那样解释它:

plt.figure('$Something_{subscript}$')

enter image description here

1 个答案:

答案 0 :(得分:1)

GUI应用程序的窗口标题与matplotlib无关。您可以检查GUI应用程序支持标记的程度。通常支持unicode,因此像plt.figure(u'H\u2082SO\u2084')这样的东西可以工作并导致

enter image description here