\documentclass{article}
\begin{document}
some text with an u with e char: uͤ which does not print
\end{document}
我尝试了不同的字体,但没有找到解决方案。如何才能打印出我能看到的unicode?
答案1
您需要一种具有以下字形的字体:
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Libertinus Serif}
\begin{document}
some text with an u with e char: uͤ which prints
\end{document}