我正在尝试使用 latex 用中文写出这个字符“爫”。但我只得到了一个正方形
答案1
(评论太长,因此作为答案发布)
您对 xeCJK 机制和青松手写字体包的依赖程度如何?如果您的答案是“不太依赖”,则可以考虑将该fontspec
包与合适的 Opentype 字体一起加载。例如,Noto Serif SC
和Noto Serif TC
都具有所需的字形。
顺便说一句,fontspec
XeLaTeX 和 LuaLaTeX 都可以使用。
%!TeX program = XeLaTeX
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Noto Serif SC} % https://fonts.google.com/noto/specimen/Noto+Serif+SC
% or should it be 'Noto Serif TC'?
\begin{document}
爫
\end{document}