答案1
如果您愿意使用 XeLaTeX 或 LuaLaTeX,您只需要找到支持格拉哥里文的 OpenType 或 TrueType 字体。
我的电脑上有两个。据我所知,Noto 字体可以从以下网址免费下载:https://fonts.google.com/noto/specimen/Noto+Sans+Glagolitic
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Libertinus Serif}
\newfontface{\glagoliticA}{Menaion Unicode}
\newfontface{\glagoliticB}{NotoSansGlagolitic-Regular}[
Extension=.ttf,
Path=/System/Library/Fonts/Supplemental/,
]
\begin{document}
{\glagoliticA ⰳⰾⰰⰳⱁⰾⰹⱌⰰ} (глаголица)
{\glagoliticB ⰳⰾⰰⰳⱁⰾⰹⱌⰰ} (глаголица)
\end{document}