使用 mathptmx 数据包时,保留方程式中“Q”符号的 amsmath 字体

使用 mathptmx 数据包时,保留方程式中“Q”符号的 amsmath 字体

我使用 mathptmx 包,但仍想在等式中保留“Q”符号的 amsmath 字体。

\documentclass{article} 
\usepackage{mathptmx} 
\usepackage{amsmath}

\begin{document}
   $Q=1$
\end{document}

结果:在此处输入图片描述

: 我想要 在此处输入图片描述

非常感谢你的帮助。

答案1

\documentclass{article}
\usepackage{mathptmx}

\newcommand \Q {\textit{{\fontfamily{cmr}\selectfont Q}}}

\begin{document}
$\Q$
\end{document}

我已经找到了解决这个问题的方法,感谢MadyYuvi的关注。

相关内容