是否有免费的软件包可以获取 Type1 字体的非直立(即斜体或倾斜)黑板符号?
很容易获得四个属性中的三个(即黑板斜体字体,http://www.pctex.com/mtpro2.html),但我没能找到一个兼具这四个属性的包。如果有某种可以替代黑板的包,并且看起来像一个集合符号,那就太好了。
答案1
您可以通过坐标变换使用假倾斜字体。
\documentclass{article}
\usepackage{amssymb}
\newcommand\fakeslant[1]{%
\pdfliteral{1 0 0.167 1 0 0 cm}#1\pdfliteral{1 0 -0.167 1 0 0 cm}}
\newcommand\mathbbsl[1]{\mathbb{\fakeslant{#1}}}
\begin{document}
$\mathbbsl{ABC}$
\end{document}
需要 pdfTeX 或 LuaTeX。
对于 latex+dvipdfmx 或 XeTeX,你可以使用\special{pdf: literal ...}
而不是\pdfliteral{...}
. 即
\newcommand\fakeslant[1]{%
\special{pdf: literal 1 0 0.167 1 0 0 cm}#1\special{pdf: literal 1 0 -0.167 1 0 0 cm}}