Change position of subscript locally
When I write eta_{PV} in an equation I get a very unpleasent result:

I would like to have the subscript lower than the greek letter.
I know that can be achieved by
fontdimen16textfont2=5pt fontdimen17textfont2=5pt
which will give me a really nice result:
Problem is, this will change the subscript level in my whole equation and the rest of the document.
How can I change the subscript level lower just for eta or just locally?
equations subscripts
add a comment |
When I write eta_{PV} in an equation I get a very unpleasent result:

I would like to have the subscript lower than the greek letter.
I know that can be achieved by
fontdimen16textfont2=5pt fontdimen17textfont2=5pt
which will give me a really nice result:
Problem is, this will change the subscript level in my whole equation and the rest of the document.
How can I change the subscript level lower just for eta or just locally?
equations subscripts
etastrut_{PV}?
– David Carlisle
Jan 1 at 22:06
Are you aware ofeta_{PV}^{}?
– AboAmmar
Jan 1 at 22:07
@DavidCarlisle This does exactly what I need.
– Karl
Jan 1 at 22:45
add a comment |
When I write eta_{PV} in an equation I get a very unpleasent result:

I would like to have the subscript lower than the greek letter.
I know that can be achieved by
fontdimen16textfont2=5pt fontdimen17textfont2=5pt
which will give me a really nice result:
Problem is, this will change the subscript level in my whole equation and the rest of the document.
How can I change the subscript level lower just for eta or just locally?
equations subscripts
When I write eta_{PV} in an equation I get a very unpleasent result:

I would like to have the subscript lower than the greek letter.
I know that can be achieved by
fontdimen16textfont2=5pt fontdimen17textfont2=5pt
which will give me a really nice result:
Problem is, this will change the subscript level in my whole equation and the rest of the document.
How can I change the subscript level lower just for eta or just locally?
equations subscripts
equations subscripts
asked Jan 1 at 22:01
KarlKarl
32
32
etastrut_{PV}?
– David Carlisle
Jan 1 at 22:06
Are you aware ofeta_{PV}^{}?
– AboAmmar
Jan 1 at 22:07
@DavidCarlisle This does exactly what I need.
– Karl
Jan 1 at 22:45
add a comment |
etastrut_{PV}?
– David Carlisle
Jan 1 at 22:06
Are you aware ofeta_{PV}^{}?
– AboAmmar
Jan 1 at 22:07
@DavidCarlisle This does exactly what I need.
– Karl
Jan 1 at 22:45
etastrut_{PV} ?– David Carlisle
Jan 1 at 22:06
etastrut_{PV} ?– David Carlisle
Jan 1 at 22:06
Are you aware of
eta_{PV}^{}?– AboAmmar
Jan 1 at 22:07
Are you aware of
eta_{PV}^{}?– AboAmmar
Jan 1 at 22:07
@DavidCarlisle This does exactly what I need.
– Karl
Jan 1 at 22:45
@DavidCarlisle This does exactly what I need.
– Karl
Jan 1 at 22:45
add a comment |
2 Answers
2
active
oldest
votes
You can use etastrut_{PV} so that the subscript is the depth of a strut (or more generally you can make a 0-width rule of whatever depth you need to push the subscript down)
add a comment |
I would advise against etastrut_{PV}.
Here is an example. I use eta^{}_{PV} in the first two cases, that end up in consecutive lines and also etastrut_{PV} in the second two cases.
As you can see, the consecutive lines where the strut construction is used are spread further apart because of the strut with the subscript.
The lines containing eta^{}_{PV}, to the contrary, are at the standard baseline skip distance from each other.
documentclass{article}
begin{document}
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
end{document}

Here is a close up of the three possibilities: first is eta_{PV}, second is eta^{}_{PV}, third is etastrut_{PV}. You can judge what's best, taking into account the problem explained above. The close up also reveals a bad kerning in the strut case.

If you load amsmath (which is recommended for documents with math), you could do
eta{smash[t]{strut}}_{PV}
but the problem with spread apart lines might appear anyway, because the subscript is very low.
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%2f468185%2fchange-position-of-subscript-locally%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 use etastrut_{PV} so that the subscript is the depth of a strut (or more generally you can make a 0-width rule of whatever depth you need to push the subscript down)
add a comment |
You can use etastrut_{PV} so that the subscript is the depth of a strut (or more generally you can make a 0-width rule of whatever depth you need to push the subscript down)
add a comment |
You can use etastrut_{PV} so that the subscript is the depth of a strut (or more generally you can make a 0-width rule of whatever depth you need to push the subscript down)
You can use etastrut_{PV} so that the subscript is the depth of a strut (or more generally you can make a 0-width rule of whatever depth you need to push the subscript down)
answered Jan 1 at 22:48
David CarlisleDavid Carlisle
484k4011171859
484k4011171859
add a comment |
add a comment |
I would advise against etastrut_{PV}.
Here is an example. I use eta^{}_{PV} in the first two cases, that end up in consecutive lines and also etastrut_{PV} in the second two cases.
As you can see, the consecutive lines where the strut construction is used are spread further apart because of the strut with the subscript.
The lines containing eta^{}_{PV}, to the contrary, are at the standard baseline skip distance from each other.
documentclass{article}
begin{document}
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
end{document}

Here is a close up of the three possibilities: first is eta_{PV}, second is eta^{}_{PV}, third is etastrut_{PV}. You can judge what's best, taking into account the problem explained above. The close up also reveals a bad kerning in the strut case.

If you load amsmath (which is recommended for documents with math), you could do
eta{smash[t]{strut}}_{PV}
but the problem with spread apart lines might appear anyway, because the subscript is very low.
add a comment |
I would advise against etastrut_{PV}.
Here is an example. I use eta^{}_{PV} in the first two cases, that end up in consecutive lines and also etastrut_{PV} in the second two cases.
As you can see, the consecutive lines where the strut construction is used are spread further apart because of the strut with the subscript.
The lines containing eta^{}_{PV}, to the contrary, are at the standard baseline skip distance from each other.
documentclass{article}
begin{document}
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
end{document}

Here is a close up of the three possibilities: first is eta_{PV}, second is eta^{}_{PV}, third is etastrut_{PV}. You can judge what's best, taking into account the problem explained above. The close up also reveals a bad kerning in the strut case.

If you load amsmath (which is recommended for documents with math), you could do
eta{smash[t]{strut}}_{PV}
but the problem with spread apart lines might appear anyway, because the subscript is very low.
add a comment |
I would advise against etastrut_{PV}.
Here is an example. I use eta^{}_{PV} in the first two cases, that end up in consecutive lines and also etastrut_{PV} in the second two cases.
As you can see, the consecutive lines where the strut construction is used are spread further apart because of the strut with the subscript.
The lines containing eta^{}_{PV}, to the contrary, are at the standard baseline skip distance from each other.
documentclass{article}
begin{document}
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
end{document}

Here is a close up of the three possibilities: first is eta_{PV}, second is eta^{}_{PV}, third is etastrut_{PV}. You can judge what's best, taking into account the problem explained above. The close up also reveals a bad kerning in the strut case.

If you load amsmath (which is recommended for documents with math), you could do
eta{smash[t]{strut}}_{PV}
but the problem with spread apart lines might appear anyway, because the subscript is very low.
I would advise against etastrut_{PV}.
Here is an example. I use eta^{}_{PV} in the first two cases, that end up in consecutive lines and also etastrut_{PV} in the second two cases.
As you can see, the consecutive lines where the strut construction is used are spread further apart because of the strut with the subscript.
The lines containing eta^{}_{PV}, to the contrary, are at the standard baseline skip distance from each other.
documentclass{article}
begin{document}
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$eta^{}_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
$etastrut_{PV}$
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
text text text text text text text text text
end{document}

Here is a close up of the three possibilities: first is eta_{PV}, second is eta^{}_{PV}, third is etastrut_{PV}. You can judge what's best, taking into account the problem explained above. The close up also reveals a bad kerning in the strut case.

If you load amsmath (which is recommended for documents with math), you could do
eta{smash[t]{strut}}_{PV}
but the problem with spread apart lines might appear anyway, because the subscript is very low.
edited Jan 1 at 23:15
answered Jan 1 at 23:08
egregegreg
711k8618913174
711k8618913174
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.
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%2f468185%2fchange-position-of-subscript-locally%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
etastrut_{PV}?– David Carlisle
Jan 1 at 22:06
Are you aware of
eta_{PV}^{}?– AboAmmar
Jan 1 at 22:07
@DavidCarlisle This does exactly what I need.
– Karl
Jan 1 at 22:45