如何从课堂Bookman
上的字体中获取 Blackboard Bold report
?有相关代码吗?
答案1
amsfonts
为了演示,以下是使用Bookman的结果:
\documentclass{article}
\usepackage{bookman}
\usepackage{amsfonts}
\newcommand*{\alphatest}{A B C D E F G H I J K L M N O P Q R S T U V W X Y Z}
\begin{document}
\[
\mathbb{\alphatest}
\]
\end{document}
以下是单独使用的结果amsfonts
(事实上,它是report
而不是,article
对所使用的字体没有影响):
\documentclass{report}
\usepackage{amsfonts}
\newcommand*{\alphatest}{A B C D E F G H I J K L M N O P Q R S T U V W X Y Z}
\begin{document}
\[
\mathbb{\alphatest}
\]
\end{document}