\updefault 的默认值

\updefault 的默认值

以下 MWE 的结果up采用最新的 TeX Live 2019。

\documentclass{article}
\begin{document}
  \updefault
\end{document}

为什么 的默认值\updefault从 更改nup

答案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}

输出 latex 20200202:

在此处输入图片描述

第一行的旧输出:

在此处输入图片描述

相关内容