[Tex/LaTex] Symbol for “not absolutely continuous” in Latex

symbols

I have trouble finding the symbol which indicates that two measure are not absolutely continuous i.e. the negation of $\mu \ll \nu$. Anyone has an idea how to write this?

Edit 1:

enter image description here

Best Answer

The \centernot package is made for that:

\documentclass{article}
\usepackage{amsmath,centernot}

\newcommand{\nll}{\centernot{\ll}}

\begin{document}

$a\ll b$

$a\nll b$

\end{document}

enter image description here