I am trying to do something relatively simple:
I want to be able to increase the font of one letter (say, the LaTeX variable, say, up to 30) and save the other letters in the label of a particular font (say, 20).
Does anyone have a quick fix? It seems rather complicated to me. I tried using { } for each "item" in the label
plt.plot(a,b,'g',linewidth=3.5, label = 'a') plt.plot(c,d,'r',linewidth=3.5, label = 'c') plt.legend(labelspacing = 1.0,loc=1,prop={'size':40}) plt.xlabel({'a',fontsize=50},{ 'N',fontsize = 20}) plt.ylabel('%',fontsize =30)
Thanks!
source share