使用“boisik”字体系列中的“#”符号

使用“boisik”字体系列中的“#”符号

我尝试boisik在 pdfLaTex(在 Overleaf 中)的字体系列中使用井号 (#)。也就是说,我想在我的文档中使用\hash而不是\#。但问题是,如果我使用\usepackage(boisik),整个文档中的字体都会发生变化。

我看见不同的答案对这类问题,但所有这些答案可能都是针对其他一些字体系列,例如mathabx等等fourier,但我无法实现这些答案所说的内容。

有人可以帮忙吗?提前致谢。

答案1

您实际上并不想要这样,因为 Boisik 字体仅以位图格式可用。

\documentclass{article}

\DeclareRobustCommand{\hash}{{\fontfamily{bsk}\selectfont\#}}

\begin{document}

The normal \# and the Boisik one \hash

\end{document}

在此处输入图片描述

放大版本:

在此处输入图片描述

您可以通过选择非常高的分辨率来避免这个问题:

\pdfpkmode{dpdfezzz}
\pdfpkresolution=8000

\documentclass{article}

\DeclareRobustCommand{\hash}{{\fontfamily{bsk}\selectfont\#}}

\begin{document}

The normal \# and the Boisik one \hash

\end{document}

在此处输入图片描述

相关内容