「弱い星の収束」を表す記号

「弱い星の収束」を表す記号

弱い星の収束記号、つまり星の記号を上に入力するにはどうすればいいですか\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}

ここに画像の説明を入力してください

答え2

LaTeX カーネルはマクロ を提供します\stackrel。PlainTeX は命令 を提供します\buildrel

ここに画像の説明を入力してください

\documentclass{article}
\begin{document}
$a\stackrel{\ast}{\rightharpoonup}b$

$a\buildrel\ast\over\rightharpoonup b$
\end{document}

関連情報