I am using this answer to make transversality symbol. It gives
as I am using amssymb. But, if I use the package mathabx and slightly modify(changed package, \lineskip-.57ex) the answer, it shows
.
Now, there is a clash between amssymb and mathabx.
I want to import this shape from
mathabxfor the latter symbol while working with the packageamssymb. In other words, I want to usemathabxto produce the symbolonly, any other symbols as usual from
amssymb.
Modified code for the symbol
:
\usepackage{amsmath,mathabx}
\newcommand{\transv}{\mathrel{\text{\tpitchfork}}}
\makeatletter
\newcommand{\tpitchfork}{%
\vbox{
\baselineskip\z@skip
\lineskip-.57ex
\lineskiplimit\maxdimen
\m@th
\ialign{##\crcr\hidewidth\smash{$-$}\hidewidth\crcr$\pitchfork$\crcr}
}%
}
\makeatother
\begin{document}
$$\Huge\transv $$
\end{document}
