\dfrac과 \frac의 차이점 #

이 예에서는 \dfrac 및 \frac TeX 매크로 간의 차이점을 설명합니다. 특히 Mathtex를 사용할 때 표시 스타일과 텍스트 스타일 분수의 차이입니다.

버전 2.1의 새로운 기능.

메모

LaTeX 엔진(text.usetex : True)에서 \dfrac을 사용하려면 지원되지 않는 기능인 text.latex.preamble rc와 함께 amsmath 패키지를 가져와야 합니다. 따라서 LaTeX 엔진에서 이 동작을 수행하려면 \frac 매크로 앞에 \displaystyle 옵션을 사용하는 것이 더 나을 것입니다.

dfrac 데모
import matplotlib.pyplot as plt

fig = plt.figure(figsize=(5.25, 0.75))
fig.text(0.5, 0.3, r'\dfrac: $\dfrac{a}{b}$',
         horizontalalignment='center', verticalalignment='center')
fig.text(0.5, 0.7, r'\frac: $\frac{a}{b}$',
         horizontalalignment='center', verticalalignment='center')
plt.show()

Sphinx-Gallery에서 생성한 갤러리