以下 MWE 的结果up
采用最新的 TeX Live 2019。
\documentclass{article}
\begin{document}
\updefault
\end{document}
为什么 的默认值\updefault
从 更改n
为up
?
答案1
在新的 latex 中\itshape
,和\scshape
已被拆分。它们现在可以(如果字体具有形状)单独设置。此更改意味着\updefault
仅描述倾斜度(up
)。新命令\normalshape
可用于重置两者。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
{ \itshape Abc \scshape Abc \upshape Abc }
{ \itshape Abc \scshape Abc \normalshape Abc }
\end{document}