Interior of a set notation
I'm trying to match this:

I've already tried (in amsmath)
$A^0$
$A^o$
$A^circ$
None of these match the above image however.
math-mode amsmath
|
show 1 more comment
I'm trying to match this:

I've already tried (in amsmath)
$A^0$
$A^o$
$A^circ$
None of these match the above image however.
math-mode amsmath
2
Welcome to TeX.SX! It could be$A^{mathrm{o}}$. Can you add a source for such a notation?
– egreg
Feb 24 '16 at 0:01
Unfortunately with that the circle is too low, but definitely matches it better than the others (but not perfectly). As for a source, the image was taken from a scan. (I would like to confirm that I am user99133 but had somehow managed to post under a guest account)
– Irregular User
Feb 24 '16 at 0:05
1
font differences are to be expected, but what is the intended meaning, is that an index 0 or a superscipt O when taken in context?
– David Carlisle
Feb 24 '16 at 0:07
1
It's the interior of the set A, usually seen in topology. The index is much closer to an o rather than a 0. As for font differences, I understand that but would like to match it as close as possible.
– Irregular User
Feb 24 '16 at 0:10
wikipedia suggests that it is ^o with a lowercase o en.wikipedia.org/wiki/Interior_%28topology%29
– David Carlisle
Feb 24 '16 at 0:10
|
show 1 more comment
I'm trying to match this:

I've already tried (in amsmath)
$A^0$
$A^o$
$A^circ$
None of these match the above image however.
math-mode amsmath
I'm trying to match this:

I've already tried (in amsmath)
$A^0$
$A^o$
$A^circ$
None of these match the above image however.
math-mode amsmath
math-mode amsmath
asked Feb 23 '16 at 23:59
Irregular UserIrregular User
91213
91213
2
Welcome to TeX.SX! It could be$A^{mathrm{o}}$. Can you add a source for such a notation?
– egreg
Feb 24 '16 at 0:01
Unfortunately with that the circle is too low, but definitely matches it better than the others (but not perfectly). As for a source, the image was taken from a scan. (I would like to confirm that I am user99133 but had somehow managed to post under a guest account)
– Irregular User
Feb 24 '16 at 0:05
1
font differences are to be expected, but what is the intended meaning, is that an index 0 or a superscipt O when taken in context?
– David Carlisle
Feb 24 '16 at 0:07
1
It's the interior of the set A, usually seen in topology. The index is much closer to an o rather than a 0. As for font differences, I understand that but would like to match it as close as possible.
– Irregular User
Feb 24 '16 at 0:10
wikipedia suggests that it is ^o with a lowercase o en.wikipedia.org/wiki/Interior_%28topology%29
– David Carlisle
Feb 24 '16 at 0:10
|
show 1 more comment
2
Welcome to TeX.SX! It could be$A^{mathrm{o}}$. Can you add a source for such a notation?
– egreg
Feb 24 '16 at 0:01
Unfortunately with that the circle is too low, but definitely matches it better than the others (but not perfectly). As for a source, the image was taken from a scan. (I would like to confirm that I am user99133 but had somehow managed to post under a guest account)
– Irregular User
Feb 24 '16 at 0:05
1
font differences are to be expected, but what is the intended meaning, is that an index 0 or a superscipt O when taken in context?
– David Carlisle
Feb 24 '16 at 0:07
1
It's the interior of the set A, usually seen in topology. The index is much closer to an o rather than a 0. As for font differences, I understand that but would like to match it as close as possible.
– Irregular User
Feb 24 '16 at 0:10
wikipedia suggests that it is ^o with a lowercase o en.wikipedia.org/wiki/Interior_%28topology%29
– David Carlisle
Feb 24 '16 at 0:10
2
2
Welcome to TeX.SX! It could be
$A^{mathrm{o}}$. Can you add a source for such a notation?– egreg
Feb 24 '16 at 0:01
Welcome to TeX.SX! It could be
$A^{mathrm{o}}$. Can you add a source for such a notation?– egreg
Feb 24 '16 at 0:01
Unfortunately with that the circle is too low, but definitely matches it better than the others (but not perfectly). As for a source, the image was taken from a scan. (I would like to confirm that I am user99133 but had somehow managed to post under a guest account)
– Irregular User
Feb 24 '16 at 0:05
Unfortunately with that the circle is too low, but definitely matches it better than the others (but not perfectly). As for a source, the image was taken from a scan. (I would like to confirm that I am user99133 but had somehow managed to post under a guest account)
– Irregular User
Feb 24 '16 at 0:05
1
1
font differences are to be expected, but what is the intended meaning, is that an index 0 or a superscipt O when taken in context?
– David Carlisle
Feb 24 '16 at 0:07
font differences are to be expected, but what is the intended meaning, is that an index 0 or a superscipt O when taken in context?
– David Carlisle
Feb 24 '16 at 0:07
1
1
It's the interior of the set A, usually seen in topology. The index is much closer to an o rather than a 0. As for font differences, I understand that but would like to match it as close as possible.
– Irregular User
Feb 24 '16 at 0:10
It's the interior of the set A, usually seen in topology. The index is much closer to an o rather than a 0. As for font differences, I understand that but would like to match it as close as possible.
– Irregular User
Feb 24 '16 at 0:10
wikipedia suggests that it is ^o with a lowercase o en.wikipedia.org/wiki/Interior_%28topology%29
– David Carlisle
Feb 24 '16 at 0:10
wikipedia suggests that it is ^o with a lowercase o en.wikipedia.org/wiki/Interior_%28topology%29
– David Carlisle
Feb 24 '16 at 0:10
|
show 1 more comment
4 Answers
4
active
oldest
votes
The symbol seems to be an upright “o”; in order to raise it more than it would be with $A^{mathrm{o}}$, you can define a macro.
documentclass{article}
newcommand{interior}[1]{%
{kern0pt#1}^{mathrm{o}}%
}
begin{document}
$interior{A} interior{B}$
end{document}

This is perfect, thank you very much! I would choose this as the answer if I could but I have no idea how to get back into the guest account. So instead, take an upvote.
– Irregular User
Feb 24 '16 at 0:25
1
@IrregularUser See stackoverflow.com/help/merging-accounts
– egreg
Feb 24 '16 at 10:11
@egreg. Why has the 0pt kern the effect of raising the exponent? I can't understand.
– User
Mar 2 '16 at 17:56
2
@User In this case TeX ignores the metric information ofAand just looks at the height of the box, because the nucleus of the math atom is not a single math character.
– egreg
Mar 2 '16 at 18:37
@egreg. Thank you for the explanation
– User
Mar 2 '16 at 19:09
add a comment |
The latex kernel contains the mathring accent for that:

Edit :
You might prefer to use the ring command from mathabx. Here is a code to use use it without replacing all maths fonts: it defines the abxring mathaccent.
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}
DeclareMathAccent{abxring}{0}{mathb}{"38}
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}

add a comment |
I'd use the first, but take your pick:-)

documentclass{article}
begin{document}
[
A^mathrm{o}
quad
Astrut^mathrm{o}
quad
Amkern-1muvrule width0pt height 1em^mathrm{o}
quad
Amkern-1mu{vrule width0pt height 2ex}^mathrm{o}
]
end{document}
add a comment |
Above all, use a macro, that way you can change it later (or even provide it with a few intelligence), here's a basic version
newcommand*interior[1]{#1^{mathsf{o}}}
You can let interior be intelligent, and do (#1)^{mathsf{o}} in case there are a few symbols inside, or even some parenthesis above the whole expression like some notations do.
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
});
}
});
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%2f295579%2finterior-of-a-set-notation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
The symbol seems to be an upright “o”; in order to raise it more than it would be with $A^{mathrm{o}}$, you can define a macro.
documentclass{article}
newcommand{interior}[1]{%
{kern0pt#1}^{mathrm{o}}%
}
begin{document}
$interior{A} interior{B}$
end{document}

This is perfect, thank you very much! I would choose this as the answer if I could but I have no idea how to get back into the guest account. So instead, take an upvote.
– Irregular User
Feb 24 '16 at 0:25
1
@IrregularUser See stackoverflow.com/help/merging-accounts
– egreg
Feb 24 '16 at 10:11
@egreg. Why has the 0pt kern the effect of raising the exponent? I can't understand.
– User
Mar 2 '16 at 17:56
2
@User In this case TeX ignores the metric information ofAand just looks at the height of the box, because the nucleus of the math atom is not a single math character.
– egreg
Mar 2 '16 at 18:37
@egreg. Thank you for the explanation
– User
Mar 2 '16 at 19:09
add a comment |
The symbol seems to be an upright “o”; in order to raise it more than it would be with $A^{mathrm{o}}$, you can define a macro.
documentclass{article}
newcommand{interior}[1]{%
{kern0pt#1}^{mathrm{o}}%
}
begin{document}
$interior{A} interior{B}$
end{document}

This is perfect, thank you very much! I would choose this as the answer if I could but I have no idea how to get back into the guest account. So instead, take an upvote.
– Irregular User
Feb 24 '16 at 0:25
1
@IrregularUser See stackoverflow.com/help/merging-accounts
– egreg
Feb 24 '16 at 10:11
@egreg. Why has the 0pt kern the effect of raising the exponent? I can't understand.
– User
Mar 2 '16 at 17:56
2
@User In this case TeX ignores the metric information ofAand just looks at the height of the box, because the nucleus of the math atom is not a single math character.
– egreg
Mar 2 '16 at 18:37
@egreg. Thank you for the explanation
– User
Mar 2 '16 at 19:09
add a comment |
The symbol seems to be an upright “o”; in order to raise it more than it would be with $A^{mathrm{o}}$, you can define a macro.
documentclass{article}
newcommand{interior}[1]{%
{kern0pt#1}^{mathrm{o}}%
}
begin{document}
$interior{A} interior{B}$
end{document}

The symbol seems to be an upright “o”; in order to raise it more than it would be with $A^{mathrm{o}}$, you can define a macro.
documentclass{article}
newcommand{interior}[1]{%
{kern0pt#1}^{mathrm{o}}%
}
begin{document}
$interior{A} interior{B}$
end{document}

answered Feb 24 '16 at 0:21
egregegreg
723k8819173220
723k8819173220
This is perfect, thank you very much! I would choose this as the answer if I could but I have no idea how to get back into the guest account. So instead, take an upvote.
– Irregular User
Feb 24 '16 at 0:25
1
@IrregularUser See stackoverflow.com/help/merging-accounts
– egreg
Feb 24 '16 at 10:11
@egreg. Why has the 0pt kern the effect of raising the exponent? I can't understand.
– User
Mar 2 '16 at 17:56
2
@User In this case TeX ignores the metric information ofAand just looks at the height of the box, because the nucleus of the math atom is not a single math character.
– egreg
Mar 2 '16 at 18:37
@egreg. Thank you for the explanation
– User
Mar 2 '16 at 19:09
add a comment |
This is perfect, thank you very much! I would choose this as the answer if I could but I have no idea how to get back into the guest account. So instead, take an upvote.
– Irregular User
Feb 24 '16 at 0:25
1
@IrregularUser See stackoverflow.com/help/merging-accounts
– egreg
Feb 24 '16 at 10:11
@egreg. Why has the 0pt kern the effect of raising the exponent? I can't understand.
– User
Mar 2 '16 at 17:56
2
@User In this case TeX ignores the metric information ofAand just looks at the height of the box, because the nucleus of the math atom is not a single math character.
– egreg
Mar 2 '16 at 18:37
@egreg. Thank you for the explanation
– User
Mar 2 '16 at 19:09
This is perfect, thank you very much! I would choose this as the answer if I could but I have no idea how to get back into the guest account. So instead, take an upvote.
– Irregular User
Feb 24 '16 at 0:25
This is perfect, thank you very much! I would choose this as the answer if I could but I have no idea how to get back into the guest account. So instead, take an upvote.
– Irregular User
Feb 24 '16 at 0:25
1
1
@IrregularUser See stackoverflow.com/help/merging-accounts
– egreg
Feb 24 '16 at 10:11
@IrregularUser See stackoverflow.com/help/merging-accounts
– egreg
Feb 24 '16 at 10:11
@egreg. Why has the 0pt kern the effect of raising the exponent? I can't understand.
– User
Mar 2 '16 at 17:56
@egreg. Why has the 0pt kern the effect of raising the exponent? I can't understand.
– User
Mar 2 '16 at 17:56
2
2
@User In this case TeX ignores the metric information of
A and just looks at the height of the box, because the nucleus of the math atom is not a single math character.– egreg
Mar 2 '16 at 18:37
@User In this case TeX ignores the metric information of
A and just looks at the height of the box, because the nucleus of the math atom is not a single math character.– egreg
Mar 2 '16 at 18:37
@egreg. Thank you for the explanation
– User
Mar 2 '16 at 19:09
@egreg. Thank you for the explanation
– User
Mar 2 '16 at 19:09
add a comment |
The latex kernel contains the mathring accent for that:

Edit :
You might prefer to use the ring command from mathabx. Here is a code to use use it without replacing all maths fonts: it defines the abxring mathaccent.
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}
DeclareMathAccent{abxring}{0}{mathb}{"38}
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}

add a comment |
The latex kernel contains the mathring accent for that:

Edit :
You might prefer to use the ring command from mathabx. Here is a code to use use it without replacing all maths fonts: it defines the abxring mathaccent.
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}
DeclareMathAccent{abxring}{0}{mathb}{"38}
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}

add a comment |
The latex kernel contains the mathring accent for that:

Edit :
You might prefer to use the ring command from mathabx. Here is a code to use use it without replacing all maths fonts: it defines the abxring mathaccent.
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}
DeclareMathAccent{abxring}{0}{mathb}{"38}
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}

The latex kernel contains the mathring accent for that:

Edit :
You might prefer to use the ring command from mathabx. Here is a code to use use it without replacing all maths fonts: it defines the abxring mathaccent.
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}
DeclareMathAccent{abxring}{0}{mathb}{"38}
DeclareFontFamily{U}{mathb}{hyphencharfont45}
DeclareFontShape{U}{mathb}{m}{n}{ <-6> matha5 <6-7> matha6 <7-8>
mathb7 <8-9> mathb8 <9-10> mathb9 <10-12> mathb10 <12-> mathb12 }{}
DeclareSymbolFont{mathb}{U}{mathb}{m}{n}

edited Feb 22 at 9:55
answered Feb 24 '16 at 2:22
BernardBernard
171k775203
171k775203
add a comment |
add a comment |
I'd use the first, but take your pick:-)

documentclass{article}
begin{document}
[
A^mathrm{o}
quad
Astrut^mathrm{o}
quad
Amkern-1muvrule width0pt height 1em^mathrm{o}
quad
Amkern-1mu{vrule width0pt height 2ex}^mathrm{o}
]
end{document}
add a comment |
I'd use the first, but take your pick:-)

documentclass{article}
begin{document}
[
A^mathrm{o}
quad
Astrut^mathrm{o}
quad
Amkern-1muvrule width0pt height 1em^mathrm{o}
quad
Amkern-1mu{vrule width0pt height 2ex}^mathrm{o}
]
end{document}
add a comment |
I'd use the first, but take your pick:-)

documentclass{article}
begin{document}
[
A^mathrm{o}
quad
Astrut^mathrm{o}
quad
Amkern-1muvrule width0pt height 1em^mathrm{o}
quad
Amkern-1mu{vrule width0pt height 2ex}^mathrm{o}
]
end{document}
I'd use the first, but take your pick:-)

documentclass{article}
begin{document}
[
A^mathrm{o}
quad
Astrut^mathrm{o}
quad
Amkern-1muvrule width0pt height 1em^mathrm{o}
quad
Amkern-1mu{vrule width0pt height 2ex}^mathrm{o}
]
end{document}
answered Feb 24 '16 at 0:28
David CarlisleDavid Carlisle
492k4111371885
492k4111371885
add a comment |
add a comment |
Above all, use a macro, that way you can change it later (or even provide it with a few intelligence), here's a basic version
newcommand*interior[1]{#1^{mathsf{o}}}
You can let interior be intelligent, and do (#1)^{mathsf{o}} in case there are a few symbols inside, or even some parenthesis above the whole expression like some notations do.
add a comment |
Above all, use a macro, that way you can change it later (or even provide it with a few intelligence), here's a basic version
newcommand*interior[1]{#1^{mathsf{o}}}
You can let interior be intelligent, and do (#1)^{mathsf{o}} in case there are a few symbols inside, or even some parenthesis above the whole expression like some notations do.
add a comment |
Above all, use a macro, that way you can change it later (or even provide it with a few intelligence), here's a basic version
newcommand*interior[1]{#1^{mathsf{o}}}
You can let interior be intelligent, and do (#1)^{mathsf{o}} in case there are a few symbols inside, or even some parenthesis above the whole expression like some notations do.
Above all, use a macro, that way you can change it later (or even provide it with a few intelligence), here's a basic version
newcommand*interior[1]{#1^{mathsf{o}}}
You can let interior be intelligent, and do (#1)^{mathsf{o}} in case there are a few symbols inside, or even some parenthesis above the whole expression like some notations do.
answered Feb 24 '16 at 0:12
ManuelManuel
21.5k846108
21.5k846108
add a comment |
add a comment |
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%2f295579%2finterior-of-a-set-notation%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
2
Welcome to TeX.SX! It could be
$A^{mathrm{o}}$. Can you add a source for such a notation?– egreg
Feb 24 '16 at 0:01
Unfortunately with that the circle is too low, but definitely matches it better than the others (but not perfectly). As for a source, the image was taken from a scan. (I would like to confirm that I am user99133 but had somehow managed to post under a guest account)
– Irregular User
Feb 24 '16 at 0:05
1
font differences are to be expected, but what is the intended meaning, is that an index 0 or a superscipt O when taken in context?
– David Carlisle
Feb 24 '16 at 0:07
1
It's the interior of the set A, usually seen in topology. The index is much closer to an o rather than a 0. As for font differences, I understand that but would like to match it as close as possible.
– Irregular User
Feb 24 '16 at 0:10
wikipedia suggests that it is ^o with a lowercase o en.wikipedia.org/wiki/Interior_%28topology%29
– David Carlisle
Feb 24 '16 at 0:10