在数学模式下通过箭头穿过文本

在数学模式下通过箭头穿过文本

所以我知道该cancel包允许您在数学模式下在文本中放置一个对角箭头,但是我怎样才能使用水平箭头实现相同的结果?

答案1

也许是这样的,使用\xrightarrow

\documentclass{article}
\usepackage{amsmath}

\newcommand{\arrowcancel}[1]{%
  \mathrel{%
    \sbox0{$\mspace{3mu}{#1}\mspace{6mu}$}%
    {\vphantom{#1}
     \ooalign{%
       $\xrightarrow{\hspace{\wd0}}$\cr
       \hidewidth\box0 \hidewidth\cr
     }%
    }%
  }%
}

\begin{document}

$x\arrowcancel{abc}y$

\end{document}

在此处输入图片描述

相关内容