我正在寻找一种带有万字的草书繁体中文字体,该字体的风格类似于标准台湾或广东麻将牌上的万字。到目前为止,我只找到了非草书字体。
答案1
你可以尝试使用以下繁体中文字体这里或者这里。例如,温森蒂(这只是免费供个人使用)。
\documentclass{minimal}
\usepackage{fontspec}
\usepackage{newunicodechar}
\newfontfamily\hantfont{SentyWen}[
Scale=MatchUppercase,
Script=CJK,
Language={Chinese Traditional} ]
\newunicodechar{^^^^842c}{{\hantfont\symbol{"842C}}} % 萬
\begin{document}
萬
\end{document}
如果愿意的话,您还可以给它起一个别名。
\newcommand\texttenthousand{{\hantfont\symbol{"842C}}}
\newunicodechar{^^^^842c}{\texttenthousand\relax} % 萬
该模板可以轻松修改以测试任何字体的任何字形。
答案2
只是为了给 Davislor 的优秀答案添加更多信息,彭克雷-B和艾恩冈是根据 GPL 许可证发布的书法字体(下载文件包括 GPL2.0 和 GPL3.0),因此可以用于商业用途。
\documentclass{standalone}
\usepackage{fontspec}
\usepackage{xcolor}
%Other font features aren't working with (Xe/Lua)TeX
\newfontfamily\TestA{I.PenCrane-B}[Scale=MatchUppercase]
\newfontfamily\TestB{I.Ngaan}[Scale=MatchUppercase]
\begin{document}
\textcolor[rgb]{0.8,0,0}{{\TestA 萬} {\TestB 萬}}
\end{document}