哪里可以找到好的阿婆?

哪里可以找到好的阿婆?

“埃及学 ayin” 是用于转录古埃及语的字母,看起来有点像 C 和左引号的交叉。(特别是,它往往比基线高出一点,曲线的底部比顶部短,与 C 不同。)

是否有任何软件包提供与标准 LaTeX 字体 (Computer Modern/Latin Modern/etc) 相协调的良好 ayin?我知道我可以切换到 Noto 之类的字体(我在下面的示例中使用了它),但如果有人设计出一种与其他字母相配的 ayin 就更好了。

(左边是 C,右边是 ayin。) C 和 ayin 的比较

答案1

该命令albatross "0xA725"显示您已安装的所有支持 ꜥ (U+A725) 的字体列表。TeX 附带的字体包括 Charis SIL、Doulos SIL、Gentium Plus 和 DejaVu Sans。Junicode 的 minescule 和 majescule 具有相同的字形,而您说您已经尝试过 Noto。

其中,我认为 Doulos SIL 与 Computer Modern 最匹配:

\documentclass{article}
\tracinglostchars=2 % Warn if the current font lacks a character!
\usepackage{fontspec}
\usepackage{newunicodechar}

\newfontfamily\egyptologyfont{Doulos SIL}[Scale=MatchUppercase]
\newcommand\ayin{{\egyptologyfont\symbol{"A725}}}
\newcommand\Ayin{{\egyptologyfont\symbol{"A724}}}
\newunicodechar{^^^^a725}{\ayin} % Ꜥ
\newunicodechar{^^^^a724}{\Ayin} % ꜥ

\begin{document}
C c {\Ayin} {\ayin} Ꜥ ꜥ r
\end{document}

拉丁现代 + Doulos SIL 样本

相关内容