파이썬 Latex를 사용하여 렌더링 할 때 matplotlib 플롯에서 축 눈금 글꼴을 어떻게 변경합니까?
다음 코드에서 생성 된 축 눈금 표시 레이블의 글꼴은 Helvetica가 아니지만 여전히 기본 serif Computer Modern입니다. 어떤 제안이라도 대단히 감사합니다. from matplotlib import rc, font_manager from numpy import arange, cos, pi from matplotlib.pyplot import figure, axes, plot, xlabel, ylabel, title, grid, savefig, show sizeOfFont = 12 fontProperties = {'family':'sans-serif','sans-serif':['Helvetica'], 'weight' : 'normal', 'size' : sizeOfFont} ticks_..
2021. 2. 7.