排版汉字书法

排版汉字书法

LaTeX 是否允许我排版如下的中文书法字体?如果可以,如何排版?是否有与本例中使用的字体类似的字体?

enter image description here

答案1

印刷术的四种基本字体是宋(或明)、黑、楷、仿宋,其中楷为书法字体。

一套免费的简体中文 OpenType 字体,范多尔字体可在 CTAN(TeX Live、MiKTeX)中使用。

% !TeX encoding = UTF-8
% !TeX program = xelatex
\documentclass{article}
\usepackage{xeCJK}
\newCJKfontfamily\kaishu{FandolKai-Regular.otf}
\newCJKfontfamily\bkai{BKAI00MP.TTF}
\begin{document}
\kaishu 楷书 (FandolKai-Regular)

\bkai 楷書 (AR PL KaitiM Big5)
\end{document}

enter image description here

对于繁体中文,文鼎 (Arphic) 发布了免费的中楷字体 (AR PL KaitiM Big5),该字体可在大多数 Linux 发行版中使用。

enter image description here

市面上也有很多商业中文书法字体,但需要购买。例如,微软Office中文版附带有一套字体集。

\documentclass{article}
\usepackage{xeCJK}
\begin{document}
\CJKfontspec{STXingkai} 华文行楷 (STXingkai)

\CJKfontspec{FZShuTi} 方正舒体 (FZShuTi)
\end{document}

enter image description here

答案2

您应该找到一种包含这些字形并具有所需样式的字体。这只是来自名为明朝皇室这是TrueType 格式,并可供 XeTeX 使用:

\documentclass{article}
\usepackage{fontspec}
\newfontfamily{\imp}{Ming Imperial}

\begin{document}

\imp\noindent\Huge{a\\b\\c\\d\\e\\f\\g\\h}

\end{document}

这是部分结果:

Chinese Calligraphy with XeTeX

如果你有时间和勇气,你可以用FontForge

相关内容