在TeX的希臘符號的符號字體來標註我用希臘字母的數字在Python的matplotlib包,我用的是以下幾點:使用通過matplotlib
import matplotlib
matplotlib.use('PDF')
import matplotlib.pyplot as plt
from matplotlib import rc
rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})
plt.rcParams['ps.useafm'] = True
rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})
plt.rcParams['pdf.fonttype'] = 42
# plot figure
# ...
# annotate figure
plt.xlabel(r'$\mu$ = 50')
plt.ylabel(r'$\sigma$ = 1.5')
這使得等號,一切向右它的Helvetica字體,正如預期的那樣,並且希臘字母默認爲通常的TeX字體(我相信它是Times New Roman字體)。
我怎樣才能使它成爲希臘字母所使用的字體是「符號「字體呢?對於我來說,不要讓它出現在TeX的默認Times字體中。
感謝您的幫助。
通常的TeX字體不是Times New Roman字體,它是Computer Modern。只是在說'。 – Thomas 2010-01-26 16:46:05
你想要哪種希臘字體?您的Helvetica字體中的希臘字母,希臘字體或Unicode中的希臘字符? 這可能有所幫助:http://stason.org/TULARC/travel/greece/42-How-do-I-write-greek-with-TeX-LaTeX.html – vy32 2010-01-26 16:50:02