Symbol for "not absolutely continuous" in Latex

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


txfonts has \nll:

\documentclass{article}

\usepackage{txfonts}

\begin{document}

\[
\nll
\]

\end{document}

enter image description here

MnSymbol also has this letter:

\documentclass{article}


\usepackage{MnSymbol}

\begin{document}

\[
\nll
\]

\end{document}

enter image description here


In the modern toolchain, \not\ll appears to work fine with most Unicode math fonts. You can declare \newcommand\nll{\mathrel{\not\ll}} if you prefer.

\documentclass{article}
\usepackage{unicode-math}

\begin{document}
\( \not\ll \)
\end{document}

Latin Modern Math sample

As always with unicode-math, compile with LuaLaTeX or XeLaTeX.

Tags:

Symbols