如何在预定义环境中将字体设置为默认字体?

如何在预定义环境中将字体设置为默认字体?

moderncv环境\cventry为其第三个参数定义了倾斜的字体:

\renewcommand*{\cventry}[7][.25em]{%
  \cvitem[#1]{#2}{%
    {\bfseries#3}%
    \ifthenelse{\equal{#4}{}}{}{, {\slshape#4}}%
    \ifthenelse{\equal{#5}{}}{}{, #5}%
    \ifthenelse{\equal{#6}{}}{}{, #6}%
    .\strut%
    \ifx&#7&%
    \else{\newline{}\begin{minipage}[t]{\linewidth}\small#7\end{minipage}}\fi}}

我想保留倾斜的字体,但有办法将其与默认字体插入,这样我就可以写类似

\cventry{year}{project}{SLANTED_company1 {\sfdefault AND} SLANTED_company2}{city}{country}{description} 

所以输出将是“SLANTED_company1SLANTED_company2“。

我怎样才能做到这一点?

答案1

\textup(直立)取消倾斜的形状,以便您可以使用\textup{\textsf{and}}

相关内容