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!
Asked
Active
Viewed 241 times
3
Roland
- 6,655
Ryan Simonelli
- 33
- 2
1 Answers
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

<--? What would be the meaning of waht you're asking for? – Bernard Nov 07 '21 at 21:15p-->¬q? – Bernard Nov 07 '21 at 21:24It's important for what I'm doing that implication and incompatibility are treated as equally basic, and it'd be nice for the notation to reflect that.
– Ryan Simonelli Nov 07 '21 at 21:27