使用 musixtex 在数学模式中使用三种不同的书法字体样式

使用 musixtex 在数学模式中使用三种不同的书法字体样式

这个问题可能是@egreg在这个链接中给出的答案的延续 数学模式下两种不同的书法字体样式

在我的书中,我同时使用\mathcal{}\pazocal{}命令来表示书法数学符号。今天下午我看到了包里还有书法字体

是否可以使用以下宏在数学模式下声明第三个书法数学符号像这样命名\DEP(手册第 92 页):

在此处输入图片描述

我只需要和其他字母如果它们存在(但我怀疑它们是否存在),我该怎么做而不干扰命令\mathcal\pazocal

答案1

字体为musix24,字符槽为34。

\documentclass{article}
\usepackage{amsmath}

% the font is musix24, but it has to be scaled
\DeclareFontFamily{U}{musix}{}
\DeclareFontShape{U}{musix}{m}{n}{<-> s*[1.7] musix24}{}
% the character has zero width, so we need an explicit space
\DeclareRobustCommand{\anotherP}{%
  \mspace{2mu}% a small sidebearing
  \text{\usefont{U}{musix}{m}{n}\symbol{34}\hspace{1em}}%
  \mspace{2mu}% a small sidebearing
}

\begin{document}

$\mathcal{P}\ne\anotherP$

% show the bounding box
\fboxsep=0pt\fbox{$\anotherP$}\fbox{$\mathcal{P}$}

\end{document}

在此处输入图片描述

相关内容