[Tex/LaTex] Detexify couldn’t help me find >— and —<, can you

arrowssymbols

These symbols are like arrow, except the arrow heads are inverted. Some ASCII art: >– or –<

Could you help?

Best Answer

I couldn't find any existing symbols. But, one option would be to use tikz to draw them:

enter image description here

Code:

\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}

\newcommand{\toReversed}{\mathrel{\tikz [x=1.4ex,y=1.4ex,line width=.14ex, baseline] {\draw (0,0.5) -- (1,0.5); \draw [<-] (0.95,0.5) -- (1,0.5);}}}%
\newcommand{\fromReversed}{\mathrel{\tikz [x=1.4ex,y=1.4ex,line width=.14ex, baseline] {\draw (0,0.5) -- (1,0.5); \draw [<-] (0.05,0.5) -- (0,0.5);}}}%

\begin{document}
$A \toReversed B \fromReversed C$
\end{document}