글꼴은 어떻게 변경할 수 있나요?수학그리고텍스트문서 섹션의 일부인가요?
기본 패키지(LaTeX) 또는 시스템 글꼴(XeLaTex)을 사용하시나요?
답변1
XeLaTeX 또는 LuaLaTeX를 사용할 수 있는 경우 \begingroup
및 \endgroup
명령문을 사용하여 명령 범위를 제한 할 수 있습니다 \setmainfont
. 수학 글꼴 "로컬"의 변경 사항을 (TeX) 그룹에 유지하려면 \setmathfont
직접 사용하지 마십시오. 대신, 서문에 모든 수학 버전을 설정하고 \mathversion
문서 본문에 지시어를 사용하세요.
XeLaTeX 또는 LuaLaTeX로 컴파일할 MWE(최소 작업 예제)입니다.
\documentclass{article}
\usepackage{unicode-math} % load 'fontspec' automatically
\setmathfont{Latin Modern Math}[version=LM]
\setmathfont{XITS Math}[version=XITS]
\newcommand\qbf{The quick brown fox jumps over the lazy dog.\quad $E=mc^2$.\par}
\begin{document}
\setmainfont{Latin Modern Roman}
\mathversion{LM}
\qbf
\begingroup
\setmainfont{XITS} % Times Roman clone
\mathversion{XITS}
\qbf
\endgroup
\qbf % back to Latin Modern font family for both text and math
\end{document}