Symbol for “not absolutely continuous” in LatexHow to write the symbol in Baby Rudin for the set of bounded continuous functions on metric space XHow to write Rudin's symbol for absolute continuity of measures?Symbol for “rotate around axis”name of logical negation symbol ¬Logical symbol for exclusive disjunction: fwwfStrange alignment when using tilde as the not operator in logicSymbol for logical equivelenceApproximately equivalent symbol?how to type sigma symbol?How to type this symbol like a 'V' in Latex
Find smallest index that is identical to the value in an array
How hard is it to sell a home which is currently mortgaged?
What shortcut does ⌦ symbol in Camunda macOS app indicate and how to invoke it?
What is the line crossing the Pacific Ocean that is shown on maps?
Sir Alex Ferguson advice OR Sir Alex Ferguson's advice
How should I behave to assure my friends that I am not after their money?
“Faire” being used to mean “avoir l’air”?
Three column layout
If my Scout rogue has used his full movement on his turn, can he later use the reaction from the Skirmisher feature to move again?
How would a order of Monks that renounce their names communicate effectively?
Symbol for "not absolutely continuous" in Latex
Is this the golf ball that Alan Shepard hit on the Moon?
Dold-Kan correspondence in the category of symmetric spectra
How exactly is a normal force exerted, at the molecular level?
Did Chinese school textbook maps (c. 1951) "depict China as stretching even into the central Asian republics"?
Derivative of an algebraic power series in positive characteristic
Are Finite Automata Turing Complete?
If protons are the only stable baryons, why do they decay into neutrons in positron emission?
Is there any set of 2-6 notes that doesn't have a chord name?
Anagram Within an Anagram!
How do I find and plot the intersection of these three surfaces?
If a high rpm motor is run at lower rpm, will it produce more torque?
Do sudoku answers always have a single minimal clue set?
MH370 blackbox - is it still possible to retrieve data from it?
Symbol for “not absolutely continuous” in Latex
How to write the symbol in Baby Rudin for the set of bounded continuous functions on metric space XHow to write Rudin's symbol for absolute continuity of measures?Symbol for “rotate around axis”name of logical negation symbol ¬Logical symbol for exclusive disjunction: fwwfStrange alignment when using tilde as the not operator in logicSymbol for logical equivelenceApproximately equivalent symbol?how to type sigma symbol?How to type this symbol like a 'V' in Latex
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
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:

symbols
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
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:

symbols
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Can you add an image?
– gigi
8 hours ago
Just added one, sorry for my drawing skills.
– Gabriel
8 hours ago
add a comment |
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:

symbols
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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:

symbols
symbols
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 8 hours ago
Gabriel
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 8 hours ago
GabrielGabriel
283 bronze badges
283 bronze badges
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Gabriel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Can you add an image?
– gigi
8 hours ago
Just added one, sorry for my drawing skills.
– Gabriel
8 hours ago
add a comment |
Can you add an image?
– gigi
8 hours ago
Just added one, sorry for my drawing skills.
– Gabriel
8 hours ago
Can you add an image?
– gigi
8 hours ago
Can you add an image?
– gigi
8 hours ago
Just added one, sorry for my drawing skills.
– Gabriel
8 hours ago
Just added one, sorry for my drawing skills.
– Gabriel
8 hours ago
add a comment |
6 Answers
6
active
oldest
votes
The centernot package is made for that:
documentclassarticle
usepackageamsmath,centernot
newcommandnllcenternotll
begindocument
$all b$
$anll b$
enddocument

add a comment |
You can build the symbol by superimposing the ll with a /:
documentclassarticle
makeatletter
newcommandnllmathrelmathpalette@nll
def@nll#1#2m@thooalignhfil$#1ll$hfilcrhfil$#1/$hfilcr
makeatother
begindocument
(munllnu)
(a^munllnu)
(a^b^munllnu)
enddocument
add a comment |
txfonts has nll:
documentclassarticle
usepackagetxfonts
begindocument
[
nll
]
enddocument

MnSymbol also has this letter:
documentclassarticle
usepackageMnSymbol
begindocument
[
nll
]
enddocument

New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Nice findings :-) However thetxfontspackage is deprecated for a while now. You should replace that withnewtxtextandnewtxmathfor text and math fonts, respectively.
– Phelype Oleinik
7 hours ago
add a comment |
A simple solution for the default font:
documentclassarticle
newcommandnllmathrelnotmkern -7mull
begindocument
$ munll nu $
enddocument

add a comment |
In the modern toolchain, notll appears to work fine with most Unicode math fonts. You can declare newcommandnllmathrelnotll if you prefer. This has the extra advantage that you can copy and paste it.
documentclassarticle
usepackageunicode-math
begindocument
( notll )
enddocument

As always with unicode-math, compile with LuaLaTeX or XeLaTeX.
add a comment |
Using a macro negll to obtain your symbol:

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
newcommandnegllmakebox[0pt][l]$mkern10mu/$ll
begindocument
$negll$
enddocument
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Gabriel is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f497053%2fsymbol-for-not-absolutely-continuous-in-latex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
The centernot package is made for that:
documentclassarticle
usepackageamsmath,centernot
newcommandnllcenternotll
begindocument
$all b$
$anll b$
enddocument

add a comment |
The centernot package is made for that:
documentclassarticle
usepackageamsmath,centernot
newcommandnllcenternotll
begindocument
$all b$
$anll b$
enddocument

add a comment |
The centernot package is made for that:
documentclassarticle
usepackageamsmath,centernot
newcommandnllcenternotll
begindocument
$all b$
$anll b$
enddocument

The centernot package is made for that:
documentclassarticle
usepackageamsmath,centernot
newcommandnllcenternotll
begindocument
$all b$
$anll b$
enddocument

answered 7 hours ago
egregegreg
750k89 gold badges1964 silver badges3305 bronze badges
750k89 gold badges1964 silver badges3305 bronze badges
add a comment |
add a comment |
You can build the symbol by superimposing the ll with a /:
documentclassarticle
makeatletter
newcommandnllmathrelmathpalette@nll
def@nll#1#2m@thooalignhfil$#1ll$hfilcrhfil$#1/$hfilcr
makeatother
begindocument
(munllnu)
(a^munllnu)
(a^b^munllnu)
enddocument
add a comment |
You can build the symbol by superimposing the ll with a /:
documentclassarticle
makeatletter
newcommandnllmathrelmathpalette@nll
def@nll#1#2m@thooalignhfil$#1ll$hfilcrhfil$#1/$hfilcr
makeatother
begindocument
(munllnu)
(a^munllnu)
(a^b^munllnu)
enddocument
add a comment |
You can build the symbol by superimposing the ll with a /:
documentclassarticle
makeatletter
newcommandnllmathrelmathpalette@nll
def@nll#1#2m@thooalignhfil$#1ll$hfilcrhfil$#1/$hfilcr
makeatother
begindocument
(munllnu)
(a^munllnu)
(a^b^munllnu)
enddocument
You can build the symbol by superimposing the ll with a /:
documentclassarticle
makeatletter
newcommandnllmathrelmathpalette@nll
def@nll#1#2m@thooalignhfil$#1ll$hfilcrhfil$#1/$hfilcr
makeatother
begindocument
(munllnu)
(a^munllnu)
(a^b^munllnu)
enddocument
answered 8 hours ago
Phelype OleinikPhelype Oleinik
30k6 gold badges50 silver badges101 bronze badges
30k6 gold badges50 silver badges101 bronze badges
add a comment |
add a comment |
txfonts has nll:
documentclassarticle
usepackagetxfonts
begindocument
[
nll
]
enddocument

MnSymbol also has this letter:
documentclassarticle
usepackageMnSymbol
begindocument
[
nll
]
enddocument

New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Nice findings :-) However thetxfontspackage is deprecated for a while now. You should replace that withnewtxtextandnewtxmathfor text and math fonts, respectively.
– Phelype Oleinik
7 hours ago
add a comment |
txfonts has nll:
documentclassarticle
usepackagetxfonts
begindocument
[
nll
]
enddocument

MnSymbol also has this letter:
documentclassarticle
usepackageMnSymbol
begindocument
[
nll
]
enddocument

New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Nice findings :-) However thetxfontspackage is deprecated for a while now. You should replace that withnewtxtextandnewtxmathfor text and math fonts, respectively.
– Phelype Oleinik
7 hours ago
add a comment |
txfonts has nll:
documentclassarticle
usepackagetxfonts
begindocument
[
nll
]
enddocument

MnSymbol also has this letter:
documentclassarticle
usepackageMnSymbol
begindocument
[
nll
]
enddocument

New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
txfonts has nll:
documentclassarticle
usepackagetxfonts
begindocument
[
nll
]
enddocument

MnSymbol also has this letter:
documentclassarticle
usepackageMnSymbol
begindocument
[
nll
]
enddocument

New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 8 hours ago
New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 8 hours ago
gigigigi
31210 bronze badges
31210 bronze badges
New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
gigi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Nice findings :-) However thetxfontspackage is deprecated for a while now. You should replace that withnewtxtextandnewtxmathfor text and math fonts, respectively.
– Phelype Oleinik
7 hours ago
add a comment |
Nice findings :-) However thetxfontspackage is deprecated for a while now. You should replace that withnewtxtextandnewtxmathfor text and math fonts, respectively.
– Phelype Oleinik
7 hours ago
Nice findings :-) However the
txfonts package is deprecated for a while now. You should replace that with newtxtext and newtxmath for text and math fonts, respectively.– Phelype Oleinik
7 hours ago
Nice findings :-) However the
txfonts package is deprecated for a while now. You should replace that with newtxtext and newtxmath for text and math fonts, respectively.– Phelype Oleinik
7 hours ago
add a comment |
A simple solution for the default font:
documentclassarticle
newcommandnllmathrelnotmkern -7mull
begindocument
$ munll nu $
enddocument

add a comment |
A simple solution for the default font:
documentclassarticle
newcommandnllmathrelnotmkern -7mull
begindocument
$ munll nu $
enddocument

add a comment |
A simple solution for the default font:
documentclassarticle
newcommandnllmathrelnotmkern -7mull
begindocument
$ munll nu $
enddocument

A simple solution for the default font:
documentclassarticle
newcommandnllmathrelnotmkern -7mull
begindocument
$ munll nu $
enddocument

answered 8 hours ago
BernardBernard
182k7 gold badges83 silver badges216 bronze badges
182k7 gold badges83 silver badges216 bronze badges
add a comment |
add a comment |
In the modern toolchain, notll appears to work fine with most Unicode math fonts. You can declare newcommandnllmathrelnotll if you prefer. This has the extra advantage that you can copy and paste it.
documentclassarticle
usepackageunicode-math
begindocument
( notll )
enddocument

As always with unicode-math, compile with LuaLaTeX or XeLaTeX.
add a comment |
In the modern toolchain, notll appears to work fine with most Unicode math fonts. You can declare newcommandnllmathrelnotll if you prefer. This has the extra advantage that you can copy and paste it.
documentclassarticle
usepackageunicode-math
begindocument
( notll )
enddocument

As always with unicode-math, compile with LuaLaTeX or XeLaTeX.
add a comment |
In the modern toolchain, notll appears to work fine with most Unicode math fonts. You can declare newcommandnllmathrelnotll if you prefer. This has the extra advantage that you can copy and paste it.
documentclassarticle
usepackageunicode-math
begindocument
( notll )
enddocument

As always with unicode-math, compile with LuaLaTeX or XeLaTeX.
In the modern toolchain, notll appears to work fine with most Unicode math fonts. You can declare newcommandnllmathrelnotll if you prefer. This has the extra advantage that you can copy and paste it.
documentclassarticle
usepackageunicode-math
begindocument
( notll )
enddocument

As always with unicode-math, compile with LuaLaTeX or XeLaTeX.
edited 21 mins ago
answered 28 mins ago
DavislorDavislor
8,69716 silver badges37 bronze badges
8,69716 silver badges37 bronze badges
add a comment |
add a comment |
Using a macro negll to obtain your symbol:

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
newcommandnegllmakebox[0pt][l]$mkern10mu/$ll
begindocument
$negll$
enddocument
add a comment |
Using a macro negll to obtain your symbol:

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
newcommandnegllmakebox[0pt][l]$mkern10mu/$ll
begindocument
$negll$
enddocument
add a comment |
Using a macro negll to obtain your symbol:

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
newcommandnegllmakebox[0pt][l]$mkern10mu/$ll
begindocument
$negll$
enddocument
Using a macro negll to obtain your symbol:

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
newcommandnegllmakebox[0pt][l]$mkern10mu/$ll
begindocument
$negll$
enddocument
answered 2 hours ago
SebastianoSebastiano
13.1k4 gold badges25 silver badges70 bronze badges
13.1k4 gold badges25 silver badges70 bronze badges
add a comment |
add a comment |
Gabriel is a new contributor. Be nice, and check out our Code of Conduct.
Gabriel is a new contributor. Be nice, and check out our Code of Conduct.
Gabriel is a new contributor. Be nice, and check out our Code of Conduct.
Gabriel is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f497053%2fsymbol-for-not-absolutely-continuous-in-latex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown

Can you add an image?
– gigi
8 hours ago
Just added one, sorry for my drawing skills.
– Gabriel
8 hours ago