약한 별 수렴 기호, 즉 별 기호를 어떻게 입력합니까 \rightharpoonup
?
시도했지만 \xrightharpoon{\ast}
작동하지 않습니다.
답변1
\overset
( 패키지) 를 사용하는 것이 amsmath
귀하의 질문에 대한 정식 답변입니다. 그러나 수직 간격에 다른 값이 필요한 경우 패키지를 사용하여 stackengine
이를 달성할 수 있습니다.
\documentclass{article}
\usepackage{amsmath,stackengine}
\begin{document}
$a \overset{\ast}{\rightharpoonup} b$
$a \mathrel{\ensurestackMath{\stackon[1pt]{\rightharpoonup}{\scriptstyle\ast}}} b$
\end{document}