How can I get the desired output ie. Enlarge single letter?
I Want the desired output with X enlarged compared to A & Z but when I use the following command
$^A_Z{Large X}_N$
It doesn't show desired output.
What could be the possible command to enlarge just a single letter?
fontsize
New contributor
add a comment |
I Want the desired output with X enlarged compared to A & Z but when I use the following command
$^A_Z{Large X}_N$
It doesn't show desired output.
What could be the possible command to enlarge just a single letter?
fontsize
New contributor
A,Z,N
are indexes, so they should be smaller than the normal fontX
. So, do you want the normal fontX
bigger then the indexes or even more?
– Sigur
Dec 26 at 15:24
I want X to be much larger.
– Vivek
Dec 26 at 15:36
Much larger like forsum
?
– egreg
Dec 26 at 21:12
add a comment |
I Want the desired output with X enlarged compared to A & Z but when I use the following command
$^A_Z{Large X}_N$
It doesn't show desired output.
What could be the possible command to enlarge just a single letter?
fontsize
New contributor
I Want the desired output with X enlarged compared to A & Z but when I use the following command
$^A_Z{Large X}_N$
It doesn't show desired output.
What could be the possible command to enlarge just a single letter?
fontsize
fontsize
New contributor
New contributor
edited Dec 26 at 15:24
Sigur
24k355137
24k355137
New contributor
asked Dec 26 at 15:02
Vivek
163
163
New contributor
New contributor
A,Z,N
are indexes, so they should be smaller than the normal fontX
. So, do you want the normal fontX
bigger then the indexes or even more?
– Sigur
Dec 26 at 15:24
I want X to be much larger.
– Vivek
Dec 26 at 15:36
Much larger like forsum
?
– egreg
Dec 26 at 21:12
add a comment |
A,Z,N
are indexes, so they should be smaller than the normal fontX
. So, do you want the normal fontX
bigger then the indexes or even more?
– Sigur
Dec 26 at 15:24
I want X to be much larger.
– Vivek
Dec 26 at 15:36
Much larger like forsum
?
– egreg
Dec 26 at 21:12
A,Z,N
are indexes, so they should be smaller than the normal font X
. So, do you want the normal font X
bigger then the indexes or even more?– Sigur
Dec 26 at 15:24
A,Z,N
are indexes, so they should be smaller than the normal font X
. So, do you want the normal font X
bigger then the indexes or even more?– Sigur
Dec 26 at 15:24
I want X to be much larger.
– Vivek
Dec 26 at 15:36
I want X to be much larger.
– Vivek
Dec 26 at 15:36
Much larger like for
sum
?– egreg
Dec 26 at 21:12
Much larger like for
sum
?– egreg
Dec 26 at 21:12
add a comment |
2 Answers
2
active
oldest
votes
You can load mathtools
and use this code:
$prescript{A}{Z}{text{Large$ X $}}_N$
add a comment |
Using graphicx
+ scalebox{...}
you can increase the size of X
.
documentclass{article}
usepackage{graphicx}
begin{document}
${}_{scriptscriptstyle{Z}}^{^{scriptscriptstyle{A}}} scalebox{1.3}{$X$}_N$
end{document}
I think the OP wants the letter bigger than the normal size. In your example,X
has normal size.
– Sigur
Dec 26 at 20:56
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
Dec 26 at 21:07
Scaling elements that contain text will result in a sub-optimal choice of character shape, see tex.stackexchange.com/questions/425453/…. Better start with a font size that is closer to the desired target (e.g.Large
) and scale from there using a smaller scaling factor. This will make the letters easier to read.
– samcarter
Dec 26 at 21:48
@samcarter I have read and I have understood and I voted in favor of one of your three issues. But it just occurred to me to think of the scalebox. You are allowed to change my code. There are no problems.
– Sebastiano
Dec 26 at 21:52
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
});
}
});
Vivek 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%2f467412%2fhow-can-i-get-the-desired-output-ie-enlarge-single-letter%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
You can load mathtools
and use this code:
$prescript{A}{Z}{text{Large$ X $}}_N$
add a comment |
You can load mathtools
and use this code:
$prescript{A}{Z}{text{Large$ X $}}_N$
add a comment |
You can load mathtools
and use this code:
$prescript{A}{Z}{text{Large$ X $}}_N$
You can load mathtools
and use this code:
$prescript{A}{Z}{text{Large$ X $}}_N$
answered Dec 26 at 15:55
Bernard
166k769193
166k769193
add a comment |
add a comment |
Using graphicx
+ scalebox{...}
you can increase the size of X
.
documentclass{article}
usepackage{graphicx}
begin{document}
${}_{scriptscriptstyle{Z}}^{^{scriptscriptstyle{A}}} scalebox{1.3}{$X$}_N$
end{document}
I think the OP wants the letter bigger than the normal size. In your example,X
has normal size.
– Sigur
Dec 26 at 20:56
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
Dec 26 at 21:07
Scaling elements that contain text will result in a sub-optimal choice of character shape, see tex.stackexchange.com/questions/425453/…. Better start with a font size that is closer to the desired target (e.g.Large
) and scale from there using a smaller scaling factor. This will make the letters easier to read.
– samcarter
Dec 26 at 21:48
@samcarter I have read and I have understood and I voted in favor of one of your three issues. But it just occurred to me to think of the scalebox. You are allowed to change my code. There are no problems.
– Sebastiano
Dec 26 at 21:52
add a comment |
Using graphicx
+ scalebox{...}
you can increase the size of X
.
documentclass{article}
usepackage{graphicx}
begin{document}
${}_{scriptscriptstyle{Z}}^{^{scriptscriptstyle{A}}} scalebox{1.3}{$X$}_N$
end{document}
I think the OP wants the letter bigger than the normal size. In your example,X
has normal size.
– Sigur
Dec 26 at 20:56
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
Dec 26 at 21:07
Scaling elements that contain text will result in a sub-optimal choice of character shape, see tex.stackexchange.com/questions/425453/…. Better start with a font size that is closer to the desired target (e.g.Large
) and scale from there using a smaller scaling factor. This will make the letters easier to read.
– samcarter
Dec 26 at 21:48
@samcarter I have read and I have understood and I voted in favor of one of your three issues. But it just occurred to me to think of the scalebox. You are allowed to change my code. There are no problems.
– Sebastiano
Dec 26 at 21:52
add a comment |
Using graphicx
+ scalebox{...}
you can increase the size of X
.
documentclass{article}
usepackage{graphicx}
begin{document}
${}_{scriptscriptstyle{Z}}^{^{scriptscriptstyle{A}}} scalebox{1.3}{$X$}_N$
end{document}
Using graphicx
+ scalebox{...}
you can increase the size of X
.
documentclass{article}
usepackage{graphicx}
begin{document}
${}_{scriptscriptstyle{Z}}^{^{scriptscriptstyle{A}}} scalebox{1.3}{$X$}_N$
end{document}
edited Dec 26 at 21:05
answered Dec 26 at 20:54
Sebastiano
8,91041756
8,91041756
I think the OP wants the letter bigger than the normal size. In your example,X
has normal size.
– Sigur
Dec 26 at 20:56
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
Dec 26 at 21:07
Scaling elements that contain text will result in a sub-optimal choice of character shape, see tex.stackexchange.com/questions/425453/…. Better start with a font size that is closer to the desired target (e.g.Large
) and scale from there using a smaller scaling factor. This will make the letters easier to read.
– samcarter
Dec 26 at 21:48
@samcarter I have read and I have understood and I voted in favor of one of your three issues. But it just occurred to me to think of the scalebox. You are allowed to change my code. There are no problems.
– Sebastiano
Dec 26 at 21:52
add a comment |
I think the OP wants the letter bigger than the normal size. In your example,X
has normal size.
– Sigur
Dec 26 at 20:56
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
Dec 26 at 21:07
Scaling elements that contain text will result in a sub-optimal choice of character shape, see tex.stackexchange.com/questions/425453/…. Better start with a font size that is closer to the desired target (e.g.Large
) and scale from there using a smaller scaling factor. This will make the letters easier to read.
– samcarter
Dec 26 at 21:48
@samcarter I have read and I have understood and I voted in favor of one of your three issues. But it just occurred to me to think of the scalebox. You are allowed to change my code. There are no problems.
– Sebastiano
Dec 26 at 21:52
I think the OP wants the letter bigger than the normal size. In your example,
X
has normal size.– Sigur
Dec 26 at 20:56
I think the OP wants the letter bigger than the normal size. In your example,
X
has normal size.– Sigur
Dec 26 at 20:56
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
Dec 26 at 21:07
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
Dec 26 at 21:07
Scaling elements that contain text will result in a sub-optimal choice of character shape, see tex.stackexchange.com/questions/425453/…. Better start with a font size that is closer to the desired target (e.g.
Large
) and scale from there using a smaller scaling factor. This will make the letters easier to read.– samcarter
Dec 26 at 21:48
Scaling elements that contain text will result in a sub-optimal choice of character shape, see tex.stackexchange.com/questions/425453/…. Better start with a font size that is closer to the desired target (e.g.
Large
) and scale from there using a smaller scaling factor. This will make the letters easier to read.– samcarter
Dec 26 at 21:48
@samcarter I have read and I have understood and I voted in favor of one of your three issues. But it just occurred to me to think of the scalebox. You are allowed to change my code. There are no problems.
– Sebastiano
Dec 26 at 21:52
@samcarter I have read and I have understood and I voted in favor of one of your three issues. But it just occurred to me to think of the scalebox. You are allowed to change my code. There are no problems.
– Sebastiano
Dec 26 at 21:52
add a comment |
Vivek is a new contributor. Be nice, and check out our Code of Conduct.
Vivek is a new contributor. Be nice, and check out our Code of Conduct.
Vivek is a new contributor. Be nice, and check out our Code of Conduct.
Vivek 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f467412%2fhow-can-i-get-the-desired-output-ie-enlarge-single-letter%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
A,Z,N
are indexes, so they should be smaller than the normal fontX
. So, do you want the normal fontX
bigger then the indexes or even more?– Sigur
Dec 26 at 15:24
I want X to be much larger.
– Vivek
Dec 26 at 15:36
Much larger like for
sum
?– egreg
Dec 26 at 21:12