字母 Q 的书法风格数学字体

字母 Q 的书法风格数学字体

我正在用 LaTeX 编写一份数学文档,我想为字母“Q”使用独特的书法字体。但是,标准书法数学字体与我心中的风格并不完全匹配。我希望字母 Q 与下图相匹配: Q 学习公式

代码如下:

\documentclass{article}
\usepackage{amsmath,amssymb,amsfonts}

\begin{document}
    
\begin{equation}
    \delta_t = r_t + \gamma Q(s_{t+1},a_{t+1})-Q(s_t,a_t)
\end{equation}

\end{document}

我尝试过各种选项,比如使用 \mathcal{} 命令来处理书法字体,但都无法为字母“Q”产生所需的效果。我对使用外部基于图像的解决方案不感兴趣,因为我希望字母在 LaTeX 文档中保持完全可扩展。任何帮助我都非常感谢。谢谢!

答案1

使用newtxtextnewtxmath包来获得下面类似的图像。

在此处输入图片描述

%% Compile and read me!
\documentclass[a4paper,12pt]{article}

\usepackage{newtxtext,newtxmath}

\begin{document}
    
\begin{equation}
    \delta_t = r_t + \gamma Q(s_{t+1},a_{t+1})-Q(s_t,a_t)
\end{equation}

\end{document}

如果您使用mathptmx包,您可以获得所需的相同图片。

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage[OT1]{fontenc}
\usepackage{mathptmx}

\begin{document}
    
\begin{equation}
    \delta_t = r_t + \gamma Q(s_{t+1},a_{t+1})-Q(s_t,a_t)
\end{equation}

\end{document}

相关内容