使用 erewhon 和 mathdesign 使小型大写字母发挥作用

使用 erewhon 和 mathdesign 使小型大写字母发挥作用

我使用 软件包erewhon来处理 Utopia 和mathdesign随附的数学字体。mathdesign但是,如果我使用 ,\textsc并且\scshape不再起作用:文档可以顺利编译,忽略这些命令。我怎样才能让它们与这两个软件包一起工作?

\documentclass{article}
\usepackage[utopia]{mathdesign}
\usepackage{erewhon}
\begin{document}
\scshape
Be small caps!
\end{document}

答案1

mathdesign包重新定义\scdefaultfsc用于其自己的字体管理,这是您想要避免的,因为您只需要数学字体。将其恢复为标准。

\documentclass{article}
\usepackage[utopia]{mathdesign}
\usepackage{erewhon}

\renewcommand{\scdefault}{sc}

\begin{document}
\scshape
Be small caps!
\end{document}

在此处输入图片描述

您应该考虑使用\usepackage{fourier},而不是\usepackage[utopia]{mathdesign}

相关内容