Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib 출력에서 ​​LaTex 출력과 동일한 글꼴을 얻는 방법은 무엇입니까?

<시간/>

matplotlib에서 굵은 글꼴 두께 LaTeX 축 레이블을 만들기 위해 다음 단계를 수행할 수 있습니다.-

  • x에 대한 데이터 포인트를 생성합니다.
  • y, 즉 y=sin(x)에 대한 데이터 포인트 생성 .
  • LaTex 표현으로 곡선 x와 y를 플로팅합니다.
  • 레이블을 활성화하려면 legend()를 사용하세요. 방법.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
from matplotlib import pyplot as plt, font_manager as fm
fprop = fm.FontProperties(fname='/usr/share/fonts/truetype/malayalam/Karumbi.ttf')
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(1, 10, 1000)
y = np.sin(x)
plt.plot(x, y, label=r'$\sin (x)$', c="red", lw=2)
plt.title(label=r'$\sin (x)$', fontproperties=fprop)
plt.show()

출력

Matplotlib 출력에서 ​​LaTex 출력과 동일한 글꼴을 얻는 방법은 무엇입니까?