我正在尝试在 LaTeX 中使用埃及音译字母,例如 Ꜣ,在 unicode 中为 U+A722。在 LaTeX 中使用 unicode 字母的常用解决方法在这种情况下不起作用,我不知道是否有任何快速解决方法,但我对每条建议都感到高兴。
非常感谢!
答案1
因此,这是诀窍:
\documentclass{article}
\usepackage{fontspec}
\setmainfont{DejaVu Sans}
\begin{document}
\section{unicode test}
Ꜣ
\end{document}
然后用 xelatex 编译它。感谢 jon 的建议!