我正在用 LaTeX 编写一份数学文档,我想为字母“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
使用newtxtext
和newtxmath
包来获得下面类似的图像。
%% 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}