[Tex/LaTex] $\models$ vice-versa as semantically equivalent

math-moderelation-symbolssymbols

How to get the $\models$-symbol vice-versa to form a symbol for semantically equivalent like the following: =||=

Best Answer

\models in the standard fonts is a made up symbol

\DeclareRobustCommand
  \models{\mathrel{|}\joinrel\Relbar}

So you could do a matching combination:

\documentclass{article}


%\DeclareRobustCommand
%  \models{\mathrel{|}\joinrel\Relbar}
\DeclareRobustCommand
  \sledommodels{\Relbar\joinrel\mathrel{\|}\joinrel\Relbar}

\begin{document}

\[A \models B\]
\[A \sledommodels B\]

\end{document}

result