答案1
我选择了另一个选项,寻找https://ctan.mirror.garr.it/mirrors/ctan/macros/latex/contrib/mathalpha/doc/mathalpha-doc.pdf(mathalfa=mathalpha
)包。你可以看到第 5、6 和 7 页有很多选项书法直立字。就我个人观点而言,您可以选择或,scr=boondox
或者scr=boondoxupr
它与图像非常接近。您的图像的默认字体是 Times New Roman,因此......
\documentclass[a4paper,12pt]{article}
\usepackage{newtxtext,newtxmath}
\usepackage[scr=boondox]{mathalfa}
\begin{document}
$p$ it is the pressure, and if $\mathscr{V}$ is the volume we have:
\begin{equation}
p\mathscr{V}=MRT
\end{equation}
\end{document}
根据用户@Lazy squirrel 的评论进行编辑:我已使用(负空间)删除了M
和之间的空白。R
\!
\documentclass[a4paper,12pt]{article}
\usepackage{newtxtext,newtxmath}
\usepackage[scr=boondox]{mathalfa}
\begin{document}
$p$ it is the pressure, and if $\mathscr{V}$ is the volume we have:
\begin{equation}
p\mathscr{V}=M{\!}RT
\end{equation}
\end{document}