以前論文中做圖遇到的,其實也很簡單。code
關鍵的代碼以下:utf-8
ax.set_xlabel('Temperature ($^\circ$C)')
完整的樣例代碼以下:ci
# -*- coding: utf-8 -*- import matplotlib.pyplot as plt x = range(10,60,1) y = range(-100, 0, 2) fig = plt.figure() ax = fig.add_subplot(111) ax.plot(x,y) ax.set_xlabel('Temperature ($^\circ$C)')
最終的圖像以下:文檔
提醒:關於其餘特殊符號的繪製,請參考matplotlib
的官方文檔中關於text
部分的內容。import