从这个 MWE 开始,
\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{newtxtext,newtxmath}
\begin{document}
\[\tilde{\dot{u}}=-i \omega \tilde{u}\]
\[\widetilde{\dot{u}}=-i \omega \widetilde{u}\]
\end{document}
生成此图像:
读到这个问题,mathabx 和 mathtools:\widetilde{} 和 \dot{} 问题,我试图了解是否存在像\tilde
、 或 这样的符号\widetilde
(没有宏),其覆盖范围比u
或另一个字母更大。
事实上,对于符号\dot
,你可以看到它\tilde
很小,而且字母的覆盖范围很小u
。而如果我使用\widetilde
它,它看起来比点高,但长度太大。
答案1
读了第 15 页的指南,感觉非常好(我显然读得不是很好),http://tug.ctan.org/fonts/mtp2lite/texmf/doc/fonts/mtpro2/mtpro2.pdf
还有其他命令:\wwhat
、\wwtilde
等等。我使用这两个命令来处理我的问题。我非常满意,在这里我插入了我的 MWE,希望它对某些人有用。
\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{newtxtext}
\usepackage[lite]{mtpro2}
\begin{document}
\begin{equation}
\tilde{\dot{u}}=-i \omega \tilde{u}
\end{equation}
\begin{equation}
\widehat{\dot{u}}=-i \omega \widehat{u}
\end{equation}
\begin{equation}
\widetilde{\dot{u}}=-i \omega \widetilde{u}
\end{equation}
\begin{equation}
\wwhat{\dot{u}}=-i \omega \wwhat{u}
\end{equation}
\begin{equation}
\wwtilde{\dot{u}}=-i \omega \wwtilde{u}
\end{equation}
\end{document}