这个问题可能是@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}