font1 = {'family': 'SimSun',
'alpha':0.7,
'color': 'purple',
'weight': 'normal',
'size': 16}
font2 = {'family': 'Times New Roman',
'color': 'red',
'weight': 'normal',
'size': 16}
font3 = {'family': 'serif',
'color': 'blue',
'weight': 'bold',
'size': 14}
font4 = {'family': 'Calibri',
'color': 'navy',
'weight': 'normal',
'size': 17}
x = np.linspace(0.0, 5.0, 100)
y = np.cos(2*np.pi*x) * np.exp(-x/3)
plt.plot(x, y, '--')
plt.title('suptitle', fontdict=font1)
plt.text(2, 0.65, r'$\cos(2 \pi x) \exp(-x/3)$', fontdict=font2)
plt.xlabel('Y=time (s)', fontdict=font3)
plt.ylabel('X=voltage(mv)', fontdict=font4)
plt.subplots_adjust(left=0.15)
plt.show()
|