如何制作箭头指向相反方向的波浪箭头

如何制作箭头指向相反方向的波浪箭头

我想要一个像 这样的箭头符号/rightsquigarrow,但与普通箭头不同,箭头的方向相反。因此,它看起来不像 -->(但有波浪线),而是像 --<(但有波浪线)。谢谢!

答案1

使用 TikZ 构建这样的符号并不难。

\documentclass{article}
\usepackage{amsmath, amssymb}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing}
\newcommand*{\rightsquigarrowrev}{%
    \mathrel{\raisebox{.5mm}{%
        \begin{tikzpicture}
            \draw[-<, line cap=round, decorate, decoration={
                zigzag,
                segment length=3.7,
                amplitude=.8,
                post length=2pt
            }] (0,0) -- (.3,0);
        \end{tikzpicture}%
    }}%
}
\begin{document}
\(A \rightsquigarrow B\)

\(A \rightsquigarrowrev B\)
\end{document}

相关内容