[Tex/LaTex] the command for not modularly congruent

math-modesymbols

The symbol for modularly congruent is ≡, which can be produced with \equiv.

For instance,

18 ≡ 0 (mod 9)

What is the symbol for not modularly congruent, and how do I represent it in TeX?

I have perused some references including http://web.ift.uib.no/Teori/KURS/WRK/TeX/symALL.html and have not found it.

Best Answer

Negation of symbols in LaTeX is typically achieved prepending it with \not. For example

Negating symbols

\documentclass{article}
\begin{document}
$18 \equiv 0\ (\textrm{mod}\ 9) \not\equiv 2\ (\textrm{mod}\ 9)$
\end{document}

For more elaborate, larger or lengthy symbols, you can use the cancel package. In those instances \not may not provide a sufficiently-centred negation. The centernot package also provides a centred \not for symbols with larger horizontal dimension.

The ≢ character is in Unicode as U+2262, and can be entered directly with unicode-math. The command for it is \nequiv in many packages, including unicode-math, pxfonts, txfonts, newpxmath, newtxmath, stix, stix2, mnsymbol and fdsymbol.

Other symbol-lookup techniques are described in How to look up a symbol or identify a math symbol or character?