[Tex/LaTex] Symbol for logical equivelence

math-modesymbols

I'm trying to use this symbol in a LaTeX document I'm writing but I can't for the life of me, find how to write it in LaTeX:

enter image description here

The symbol means that two expressions are logicically equivalent (i.e. A |==| B)Can anybody identify the missing symbol?

Best Answer

Without the use of packages, you could do this:

\documentclass{article}
\def\logequiv{\mathrel{\vert\mkern-3mu{=}\mkern-3mu{=}\mkern-3mu\vert}}
\begin{document}
$ A \logequiv B$
\end{document}

enter image description here

If you didn't like the height of the \verts, you could do this instead:

\documentclass{article}
\def\logequiv{\mathrel{%
  \rule{.3pt}{1.3ex}\mkern-1mu{=}\mkern-8mu{=}\mkern-2mu\rule{.3pt}{1.3ex}}}
\begin{document}
$ A \logequiv B$
\end{document}

enter image description here