答案1
如果您不需要较小的数学样式,那么这可能会起作用......
\documentclass{article}
\usepackage{stackengine,graphicx}
\stackMath
\newcommand\frightarrow{\scalebox{1}[.4]{$\rightarrow$}}
\newcommand\darrow[1][]{\mathrel{\stackon[1pt]{\stackanchor[1pt]{\frightarrow}{\frightarrow}}{\scriptstyle#1}}}
\begin{document}
$A\darrow[n] B$
\end{document}
这是一个复合替代方案
\documentclass{article}
\usepackage{stackengine,graphicx,amssymb}
\stackMath
\newcommand\frightarrow{\scalebox{1}[.3]{$\rule[.45ex]{2ex}{1.5pt}%
\kern-.2ex{\blacktriangleright}$}}
\newcommand\darrow[1][]{\mathrel{\stackon[1pt]{\stackanchor[1pt]{\frightarrow}{\frightarrow}}{\scriptstyle#1}}}
\begin{document}
$A\darrow[n] B$
\end{document}