I encountered the following equality symbol in a paper (page 4, Eq 4). I am not sure how it is different from a regular equality (=) symbol.
What does this symbol mean? And how can I write it in latex?
I encountered the following equality symbol in a paper (page 4, Eq 4). I am not sure how it is different from a regular equality (=) symbol.
What does this symbol mean? And how can I write it in latex?
OP comments: "I feel interested in how one would go about writing that symbol"
\documentclass{article}
\usepackage{stackengine}
\def\bangequal{\mathrel{\ensurestackMath{%
\stackengine{1pt}{=}{\scriptstyle!}{O}{c}{F}{F}{S}}}}
\begin{document}
$a \bangequal b$
\end{document}
To get the particularly ugly version where the ! is underlined...
\documentclass{article}
\usepackage{stackengine}
\def\bangequal{\mathrel{\ensurestackMath{%
\stackengine{0pt}{=}{\underline{\scriptstyle!}}{O}{c}{F}{F}{S}}}}
\begin{document}
$a \bangequal b$
\end{document}
! above =. Ugly.
– Sigur
Oct 30 '19 at 00:15
\textcolor{white}{...} around it, then it is not too bad. ;-)
–
Oct 30 '19 at 00:54
(!). – Sigur Oct 29 '19 at 23:59