我尝试在字母 phi 顶部写一个宽波浪号,以表示统计中的估计值,但波浪号默认在字母上方是清晰的,如下所示:
我想知道是否有办法降低波浪线,或者甚至允许它在必要时越过 phi 的顶部。我将使用
。
目前情况相当糟糕。
答案1
如果您对波浪号穿过 phi 的横线感到满意,您可以这样做:
\documentclass{article}
\usepackage{amsmath}
\newcommand{\wtphi}{%
\mspace{2mu}%
\widetilde{\mspace{-2mu}\smash[t]{\phi}}%
}
\begin{document}
$\widetilde\phi$\quad $\widetilde{\Delta\widetilde{\phi}}$
$\wtphi$\quad $\widetilde{\Delta\wtphi}$
\end{document}
未穿越:
\documentclass{article}
\usepackage{amsmath}
\newcommand{\wtphi}{%
\mspace{2mu}%
\widetilde{\mspace{-2mu}\rule{0pt}{1.3ex}\smash[t]{\phi}}%
}
\begin{document}
$\widetilde\phi$\quad $\widetilde{\Delta\widetilde{\phi}}$
$\wtphi$\quad $\widetilde{\Delta\wtphi}$
\end{document}
答案2
如果你不想使用amsmath
包(例如,它与其他包冲突),还有另一种方法可以做到这一点
\newcommand{\wtphi}{%
\hspace{0.111em}%
\widetilde{\hspace{-0.251em}\rule{0pt}{1.3ex}\smash{\gvt\phi}}%
}