메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
수학 글꼴 모음 #
플롯의 각 개별 텍스트 요소에 대한 글꼴 패밀리를 변경하는 데 사용할 수 있는 새로운 math_fontfamily 매개변수를 보여주는 간단한 예입니다 .
매개변수를 설정하지 않으면 전역 값
rcParams["mathtext.fontset"]
(기본값: 'dejavusans'
)이 사용됩니다.
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(6, 5))
# A simple plot for the background.
ax.plot(range(11), color="0.9")
# A text mixing normal text and math text.
msg = (r"Normal Text. $Text\ in\ math\ mode:\ "
r"\int_{0}^{\infty } x^2 dx$")
# Set the text in the plot.
ax.text(1, 7, msg, size=12, math_fontfamily='cm')
# Set another font for the next text.
ax.text(1, 3, msg, size=12, math_fontfamily='dejavuserif')
# *math_fontfamily* can be used in most places where there is text,
# like in the title:
ax.set_title(r"$Title\ in\ math\ mode:\ \int_{0}^{\infty } x^2 dx$",
math_fontfamily='stixsans', size=14)
# Note that the normal text is not changed by *math_fontfamily*.
plt.show()