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
12 hours ago
I want X to be much larger.
– Vivek
12 hours ago
Much larger like forsum
?
– egreg
7 hours ago
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 12 hours ago
Sigur
23.8k355137
23.8k355137
New contributor
asked 13 hours ago
Vivek
162
162
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
12 hours ago
I want X to be much larger.
– Vivek
12 hours ago
Much larger like forsum
?
– egreg
7 hours ago
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
12 hours ago
I want X to be much larger.
– Vivek
12 hours ago
Much larger like forsum
?
– egreg
7 hours ago
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
12 hours ago
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
12 hours ago
I want X to be much larger.
– Vivek
12 hours ago
I want X to be much larger.
– Vivek
12 hours ago
Much larger like for
sum
?– egreg
7 hours ago
Much larger like for
sum
?– egreg
7 hours ago
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
7 hours ago
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
7 hours ago
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
6 hours ago
@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
6 hours ago
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 12 hours ago
Bernard
165k769193
165k769193
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
7 hours ago
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
7 hours ago
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
6 hours ago
@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
6 hours ago
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
7 hours ago
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
7 hours ago
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
6 hours ago
@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
6 hours ago
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 7 hours ago
answered 7 hours ago
Sebastiano
8,82641756
8,82641756
I think the OP wants the letter bigger than the normal size. In your example,X
has normal size.
– Sigur
7 hours ago
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
7 hours ago
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
6 hours ago
@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
6 hours ago
add a comment |
I think the OP wants the letter bigger than the normal size. In your example,X
has normal size.
– Sigur
7 hours ago
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
7 hours ago
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
6 hours ago
@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
6 hours ago
I think the OP wants the letter bigger than the normal size. In your example,
X
has normal size.– Sigur
7 hours ago
I think the OP wants the letter bigger than the normal size. In your example,
X
has normal size.– Sigur
7 hours ago
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
7 hours ago
@Sigur Aesthetically, that could be a good compromise. If there are any comments they are always welcome.
– Sebastiano
7 hours ago
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
6 hours ago
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
6 hours ago
@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
6 hours ago
@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
6 hours ago
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
12 hours ago
I want X to be much larger.
– Vivek
12 hours ago
Much larger like for
sum
?– egreg
7 hours ago