结合 slantsc 和 cfr-lm 包

结合 slantsc 和 cfr-lm 包

我对斜体和倾斜的小写字母感兴趣。

我发现使用 slantsc 包可以轻松实现倾斜小型大写字母,而 cfr-lm 包则提供斜体小型大写字母。

不幸的是,我认为这些包在没有进一步配置的情况下很少发生冲突。导入的正确顺序是什么?

几乎解决该问题的顺序(但我需要第一种情况)如下:

\documentclass{article}

\usepackage{slantsc}
\usepackage{cfr-lm}


\begin{document}
slanted:
\begin{enumerate}
  \item \textsl{\textsc{Slanted Small-caps}}
  \item \textsc{\textsl{Small-caps Slanted}}
\end{enumerate}

italic:
\begin{enumerate}
  \item \textit{\textsc{Italic Small-caps}}
  \item \textsc{\textit{Small-caps Italic}}
\end{enumerate}

\end{document}

非常感谢您的任何提示。

答案1

slantsc相当老旧(从 2012 年开始)。在最近的 LaTeX 版本中,字体系统已进行了更改,允许使用倾斜/斜体小写字母而无需技巧。所以我建议不再使用此包。

使用当前的 LaTeX ( LaTeX2e <2020-02-02> patch level 5),我无需slantsc

\documentclass{article}

\usepackage{cfr-lm}


\begin{document}
slanted:
\begin{enumerate}
  \item \textsl{\textsc{Slanted Small-caps}}
  \item \textsc{\textsl{Small-caps Slanted}}
\end{enumerate}

italic:
\begin{enumerate}
  \item \textit{\textsc{Italic Small-caps}}
  \item \textsc{\textit{Small-caps Italic}}
\end{enumerate}

\end{document}

在此处输入图片描述

相关内容