我正在尝试排版,\hat{V}
但结果看起来不对。帽子离 V 太近,因此很难辨认 V 上的帽子。有没有办法增加 V 和帽子之间的垂直空间?
谢谢
答案1
已修改,以适用于所有数学风格。
我已将其设置为,更改的值\dyhat
会改变相对于其默认位置的垂直移位。如下所示(适用于所有三种数学样式),第一行移位 0.067ex,第二行移位 0.2ex。负移位是可以接受的。使用可缩放的移位测量(如 ex)将允许结果缩放到不同的数学大小。
\documentclass{article}
\usepackage{stackengine}
\usepackage{scalerel}
\def\stacktype{L}
\stackMath
\def\dyhat{.067ex}
\newcommand\myhat[1]{\ThisStyle{%
\stackon[\dyhat]{\SavedStyle#1}
{\SavedStyle\hat{\phantom{#1}}}}}
\begin{document}
\( \myhat V \)
\(\scriptstyle \myhat V \)
\(\scriptscriptstyle \myhat V \)
\def\dyhat{.2ex}
\( \myhat V \)
\(\scriptstyle \myhat V \)
\(\scriptscriptstyle \myhat V \)
\end{document}