I want to design a new operator like the below, where a '⋖' is on the top of a '⋗'
I tried the following ones, but the vertical spacing between the two operators is still too large. I am wondering how can I reduce the space.
\documentclass{article}
\begin{document}
$_{\gtrdot}^{\lessdot}$
$\overset{\scalebox{1.06}[1.06]{\lessdot}{\gtrdot}$
$\gtrdot \above 0pt \lessdot$
$\gtrdot \atop \lessdot$
\end{document}
I then tried the following solution using the stackengine package suggested by samcarter_is_at_topanswers.xyz, but failed to put the operators horizontally aligned.
\documentclass{article}
\usepackage{stackengine}
\begin{document}
$\gtrdot$ \stackunder[-1.5pt]{$\gtrdot$}{$\lessdot$}
\end{document}



