메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
Usetex 글꼴 효과 #
이 스크립트는 pdftex.map에 지정된 글꼴 효과가 이제 usetex 모드에서 지원됨을 보여줍니다.
import matplotlib.pyplot as plt
def setfont(font):
return rf'\font\a {font} at 14pt\a '
fig = plt.figure()
for y, font, text in zip(
range(5),
['ptmr8r', 'ptmri8r', 'ptmro8r', 'ptmr8rn', 'ptmrr8re'],
[f'Nimbus Roman No9 L {x}'
for x in ['', 'Italics (real italics for comparison)',
'(slanted)', '(condensed)', '(extended)']],
):
fig.text(.1, 1 - (y + 1) / 6, setfont(font) + text, usetex=True)
fig.suptitle('Usetex font effects')
# Would also work if saving to pdf.
plt.show()