带有 unicode-math 的双笔画字体与 Linux Libertine 相匹配

带有 unicode-math 的双笔画字体与 Linux Libertine 相匹配

读完这个问题后,带有 unicode-math 的双笔画字体,如 dsfont,我记得 OpenOffice 自带的字体(Linux 自由人 G) 有一个漂亮的(但我不知道是否有用)双笔画字母表。

我们如何将 Linux Libertine OpenType 与 XeTeX 结合使用并从该字体中获取双笔画字母。

你可以看到双笔画字母这个文件,位于第二页底部。

答案1

\documentclass{article}
\usepackage{unicode-math}
\usepackage{libertine}
\setmathfont{XITS Math}
\setmathfont[range=\mathbb]{Linux Libertine O}    
\begin{document}

Some text with the libertine font.

$\BbbA\BbbB\BbbC\BbbD\BbbE\BbbF\BbbG$ % from XITS

$\mathbb{A}\mathbb{B}\mathbb{C}\mathbb{D}\mathbb{E}\mathbb{F}$
\end{document}

在此处输入图片描述

相关内容