使用 LaTeX 排版非拉丁 Unicode 字符

使用 LaTeX 排版非拉丁 Unicode 字符

我正在用 LaTeX 编写一个包,并希望有基本的宏(例如\vulture)来打印几乎所有的埃及象形文字(例如 U+13150

答案1

使用 lualatex (或 xelatex) 您可以直接使用具有 Unicode 顺序的字符的 truetype 或 opentype 字体:

在此处输入图片描述

\documentclass{article}

\usepackage{fontspec}
\setmainfont{Noto Sans}
\newfontfamily\Hiero{NotoSansEgyptianHieroglyphs-Regular.ttf}
\begin{document}

Some text.

{\Hiero

相关内容