3

I'd like to have an arrow symbol that's like /rightsquigarrow, but, instead of a normal arrow, the head goes in the opposite way. So, rather than looking like --> (but squiggly), looks like --< (but squiggly). Thanks!

Roland
  • 6,655

1 Answers1

4

It is not so hard to construct such a symbol using 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}

Vincent
  • 20,157