답변1
이탤릭체가 아닌 기울어진 문자를 원할 것 같습니다.
\documentclass{article}
\DeclareSymbolFont{slantedletters}{OT1}{cmr}{m}{sl}
\SetSymbolFont{slantedletters}{bold}{OT1}{cmr}{bx}{sl}
\DeclareMathSymbol{a}{\mathalpha}{slantedletters}{`a}
\begin{document}
$a+b=c$ (normal)
{\boldmath $a+b=c$} (boldmath)
$\mathnormal{a}+b=c$ (normal math italic)
$\mathbf{a}+b=c$ (normal mathbold)
\end{document}
위의 a
수학 모드 변경은 항상 2층 버전을 제공합니다. 대신 기본적으로 정상으로 설정하려면 특수 명령을 정의할 수 있습니다.
\documentclass{article}
\DeclareMathAlphabet{\mathsl}{OT1}{cmr}{m}{sl}
\SetMathAlphabet{\mathsl}{bold}{OT1}{cmr}{bx}{sl}
\newcommand{\dsa}{\mathsl{a}}
\begin{document}
$a+b=c$ (normal)
$\dsa+b=c$ (two-story)
{\boldmath $a+b=c$} (boldmath)
{\boldmath $\dsa+b=c$} (boldmath)
\end{document}