[Tex/LaTex] New relation symbol

relation-symbolssymbols

I am defining a new relation in one of my new papers. I want to use the following symbol, because it conveys the meaning of my relation. Is there such a symbol in LaTex ? It is very similar to \leq and \preceq. If not, is there a way to add new symbols by hacking the back-end of LaTeX.

enter image description here

Best Answer

Here's an attempt (better than the first one).

\documentclass{article}
\usepackage{graphicx}
\newcommand{\xle}{%
  \mathrel{\vphantom{\le}%
    \smash{\vcenter{\hbox{\oalign{%
      \noalign{\kern.2ex}
      \rotatebox[origin=l]{25}{$\scriptstyle\to$}\cr
      \noalign{\kern-.95ex}
      \kern-.03em
      \rotatebox[origin=l]{-25}{$\scriptstyle\to$}\cr
      \noalign{\kern.35ex}
      \smash{$-$}\cr
    }}}}%
  }
}

\begin{document}
\fbox{$A\xle B$}\fbox{$A \le C$}

\end{document}

enter image description here