[Tex/LaTex] How to typeset contradiction symbol

math-mode

By contradiction symbol I mean this

enter image description here

This is what I tried

\documentclass{article}
\begin{document}
\[
\Rightarrow\Leftarrow
\]
\end{document}

But there is some space between the head of two arrows.

Best Answer

You might add a negativ space \! which results in no space between the two symbols:

\documentclass{article}
\begin{document}
\[
\Rightarrow\!\Leftarrow
\]
\end{document}

As @Rethliopuks noted in the comments, the package tipa disables the usage of \! in mathmode as negative space. If you use this package (or any other package which disables \!) you might use

\Rightarrow\mskip-\thinmuskip\Leftarrow

instead for the same results (\mskip-\thinmuskip is the default definition of \!).