公式内的斜体脚注编号(使用 newtx/newpx 字体)

公式内的斜体脚注编号(使用 newtx/newpx 字体)

我在数学模式中使用脚注,使用命令\footnotemark。当我使用newtxtext/newtxmathnewpxtext/newpxmath字体包时,只要方程式位于定理环境中,脚注编号就会以斜体显示;否则,编号不会以斜体显示。

最小工作(非)示例(MWNE):

\documentclass[12pt]{article}
\usepackage{mathtools}
\usepackage{newpxtext,newpxmath}
\newtheorem{theo}{Theorem}
\begin{document}
\begin{theo}
\[\frac{\sin x}x=\sin=\bullet\footnotemark\]
\footnotetext{Spanish: ``Pecado''.}
\end{theo}
\addtocounter{footnote}{-1} %decreases footnote counter by 1
\[\frac{\cos x}x=\cos=\bullet\footnotemark\]
\footnotetext{Bad Spanish: ``Patada''.}
\end{document}

在此处输入图片描述

以下是相应脚注的图片:

在此处输入图片描述

删除上述字体包后,脚注编号会显示非斜体。如何解决此问题?

相关内容