XeTeX 和 LuaTeX 中的符号“¿”在 PDF 中显示为“£”

XeTeX 和 LuaTeX 中的符号“¿”在 PDF 中显示为“£”

在此示例代码中:

\documentclass{apa7}

\title{¿¿¿¿}
\shorttitle{¿¿}
\author{Author}
\affiliation{Independent}

\begin{document}
\maketitle
\end{document}

所有¿符号都更改为£。我在 MiKTeX 和 Overleaf 中尝试过此操作,但这只发生在 XeTeX 和 LuaTeX 中。什么可能导致错误,我该如何修复它?

答案1

要尝试使用apa7XeLaTeX 或 LuaLaTeX 下的文档类,您需要使用类选项加载它nofontenc

\documentclass[nofontenc]{apa7}
\usepackage{fontspec}
\title{¿¿¿¿}
\shorttitle{¿¿}
\author{Author}
\affiliation{Independent}

\begin{document}
\maketitle
\end{document}

相关内容