Number within Circle as an Exponent on Text
I need to put a number within a circle on top of a text (i.e., as an exponent). How to go about it?
I am doing something like
raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}
but unable to make it as an exponent of some word.
superscripts
add a comment |
I need to put a number within a circle on top of a text (i.e., as an exponent). How to go about it?
I am doing something like
raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}
but unable to make it as an exponent of some word.
superscripts
Tikz? PSTricks? Picture mode? Christmas tree balls? Magic? Depends ...
– Johannes_B
Dec 23 '18 at 7:02
I am doing something like, raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}, but unable to make it as an exponent of some word.
– engqureshi
Dec 23 '18 at 7:13
add a comment |
I need to put a number within a circle on top of a text (i.e., as an exponent). How to go about it?
I am doing something like
raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}
but unable to make it as an exponent of some word.
superscripts
I need to put a number within a circle on top of a text (i.e., as an exponent). How to go about it?
I am doing something like
raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}
but unable to make it as an exponent of some word.
superscripts
superscripts
edited Dec 23 '18 at 7:23
CarLaTeX
34.3k552141
34.3k552141
asked Dec 23 '18 at 6:49
engqureshiengqureshi
3015
3015
Tikz? PSTricks? Picture mode? Christmas tree balls? Magic? Depends ...
– Johannes_B
Dec 23 '18 at 7:02
I am doing something like, raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}, but unable to make it as an exponent of some word.
– engqureshi
Dec 23 '18 at 7:13
add a comment |
Tikz? PSTricks? Picture mode? Christmas tree balls? Magic? Depends ...
– Johannes_B
Dec 23 '18 at 7:02
I am doing something like, raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}, but unable to make it as an exponent of some word.
– engqureshi
Dec 23 '18 at 7:13
Tikz? PSTricks? Picture mode? Christmas tree balls? Magic? Depends ...
– Johannes_B
Dec 23 '18 at 7:02
Tikz? PSTricks? Picture mode? Christmas tree balls? Magic? Depends ...
– Johannes_B
Dec 23 '18 at 7:02
I am doing something like, raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}, but unable to make it as an exponent of some word.
– engqureshi
Dec 23 '18 at 7:13
I am doing something like, raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}, but unable to make it as an exponent of some word.
– engqureshi
Dec 23 '18 at 7:13
add a comment |
2 Answers
2
active
oldest
votes
I think you need
documentclass{article}
newcommand{mysup}[1]{textsuperscript{raisebox{.5pt}{textcircled{raisebox{-.8pt}{#1}}}}}
begin{document}
Blah blahmysup{8} blah
end{document}

I think you took the raisebox technique from Good way to make textcircled numbers? and your question is a duplicate of Superscript outside math mode.
Thanks CarLaTeX for the help. The issue got resolved.
– engqureshi
Dec 23 '18 at 7:52
2
@engqureshi You're welcome, and don't forgot a minimal working example (MWE) next time. Happy Xmas!
– CarLaTeX
Dec 23 '18 at 7:54
add a comment |
documentclass{article}
newcommandmysup[2]{$stackrel{textcircled{footnotesize#2}}{mbox{#1}}$}
begin{document}
Blah mysup{blah}{8} blahmysup{}{8}
end{document}

add a comment |
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%2f467067%2fnumber-within-circle-as-an-exponent-on-text%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think you need
documentclass{article}
newcommand{mysup}[1]{textsuperscript{raisebox{.5pt}{textcircled{raisebox{-.8pt}{#1}}}}}
begin{document}
Blah blahmysup{8} blah
end{document}

I think you took the raisebox technique from Good way to make textcircled numbers? and your question is a duplicate of Superscript outside math mode.
Thanks CarLaTeX for the help. The issue got resolved.
– engqureshi
Dec 23 '18 at 7:52
2
@engqureshi You're welcome, and don't forgot a minimal working example (MWE) next time. Happy Xmas!
– CarLaTeX
Dec 23 '18 at 7:54
add a comment |
I think you need
documentclass{article}
newcommand{mysup}[1]{textsuperscript{raisebox{.5pt}{textcircled{raisebox{-.8pt}{#1}}}}}
begin{document}
Blah blahmysup{8} blah
end{document}

I think you took the raisebox technique from Good way to make textcircled numbers? and your question is a duplicate of Superscript outside math mode.
Thanks CarLaTeX for the help. The issue got resolved.
– engqureshi
Dec 23 '18 at 7:52
2
@engqureshi You're welcome, and don't forgot a minimal working example (MWE) next time. Happy Xmas!
– CarLaTeX
Dec 23 '18 at 7:54
add a comment |
I think you need
documentclass{article}
newcommand{mysup}[1]{textsuperscript{raisebox{.5pt}{textcircled{raisebox{-.8pt}{#1}}}}}
begin{document}
Blah blahmysup{8} blah
end{document}

I think you took the raisebox technique from Good way to make textcircled numbers? and your question is a duplicate of Superscript outside math mode.
I think you need
documentclass{article}
newcommand{mysup}[1]{textsuperscript{raisebox{.5pt}{textcircled{raisebox{-.8pt}{#1}}}}}
begin{document}
Blah blahmysup{8} blah
end{document}

I think you took the raisebox technique from Good way to make textcircled numbers? and your question is a duplicate of Superscript outside math mode.
edited Dec 23 '18 at 9:27
answered Dec 23 '18 at 7:45
CarLaTeXCarLaTeX
34.3k552141
34.3k552141
Thanks CarLaTeX for the help. The issue got resolved.
– engqureshi
Dec 23 '18 at 7:52
2
@engqureshi You're welcome, and don't forgot a minimal working example (MWE) next time. Happy Xmas!
– CarLaTeX
Dec 23 '18 at 7:54
add a comment |
Thanks CarLaTeX for the help. The issue got resolved.
– engqureshi
Dec 23 '18 at 7:52
2
@engqureshi You're welcome, and don't forgot a minimal working example (MWE) next time. Happy Xmas!
– CarLaTeX
Dec 23 '18 at 7:54
Thanks CarLaTeX for the help. The issue got resolved.
– engqureshi
Dec 23 '18 at 7:52
Thanks CarLaTeX for the help. The issue got resolved.
– engqureshi
Dec 23 '18 at 7:52
2
2
@engqureshi You're welcome, and don't forgot a minimal working example (MWE) next time. Happy Xmas!
– CarLaTeX
Dec 23 '18 at 7:54
@engqureshi You're welcome, and don't forgot a minimal working example (MWE) next time. Happy Xmas!
– CarLaTeX
Dec 23 '18 at 7:54
add a comment |
documentclass{article}
newcommandmysup[2]{$stackrel{textcircled{footnotesize#2}}{mbox{#1}}$}
begin{document}
Blah mysup{blah}{8} blahmysup{}{8}
end{document}

add a comment |
documentclass{article}
newcommandmysup[2]{$stackrel{textcircled{footnotesize#2}}{mbox{#1}}$}
begin{document}
Blah mysup{blah}{8} blahmysup{}{8}
end{document}

add a comment |
documentclass{article}
newcommandmysup[2]{$stackrel{textcircled{footnotesize#2}}{mbox{#1}}$}
begin{document}
Blah mysup{blah}{8} blahmysup{}{8}
end{document}

documentclass{article}
newcommandmysup[2]{$stackrel{textcircled{footnotesize#2}}{mbox{#1}}$}
begin{document}
Blah mysup{blah}{8} blahmysup{}{8}
end{document}

answered Dec 23 '18 at 7:52
user2478
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%2f467067%2fnumber-within-circle-as-an-exponent-on-text%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

Tikz? PSTricks? Picture mode? Christmas tree balls? Magic? Depends ...
– Johannes_B
Dec 23 '18 at 7:02
I am doing something like, raisebox{.5pt}{textcircled{raisebox{-.9pt} {8}}}, but unable to make it as an exponent of some word.
– engqureshi
Dec 23 '18 at 7:13