amsthm 无法与 unicode-math 正确配合使用

amsthm 无法与 unicode-math 正确配合使用

我正在尝试使用unicode-mathamsthm我正在使用以下代码:

\documentclass{article}

\usepackage{amsthm}
\usepackage[math-style=TeX]{unicode-math}

\newtheorem{question}{Question}

\begin{document}
    \begin{question}
        My question
    \end{question}
\end{document}

产生的输出如下所示:

? My question

有办法解决这个问题吗?谢谢!

答案1

unicode-math有点勇敢地定义\question?你可以在之后恢复你的定义(或者只是使用不同的名字)

\documentclass{article}

\usepackage{amsthm}
\usepackage[math-style=TeX]{unicode-math}

\newtheorem{question}{Question}
\let\savedquestion\question

\begin{document}
\let\question\savedquestion

    \begin{question}
        My question
    \end{question}
\end{document}

相关内容