equal spacing for 'ordinary' limit and one-sided limit
The problem is that one-sided limits have subscripted symbols above $a$
. I tried adding a blank subscript to the 'ordinary' limit, but that didn't seem to even out spacing.
underline{Theorem:} $lim limits_{x to a^{}} f(x)
Longleftrightarrow lim limits_{x to a^{-}} f(x)
= lim limits_{x to a^{+}} f(x)$
amsmath
add a comment |
The problem is that one-sided limits have subscripted symbols above $a$
. I tried adding a blank subscript to the 'ordinary' limit, but that didn't seem to even out spacing.
underline{Theorem:} $lim limits_{x to a^{}} f(x)
Longleftrightarrow lim limits_{x to a^{-}} f(x)
= lim limits_{x to a^{+}} f(x)$
amsmath
2
You would use a "phantom" glyph, as inlimits_{x to a^{phantom{-}}}
to leave extra space in the ordinary limit, but I don't like the look of it at all.
– Steven B. Segletes
Dec 18 '18 at 15:31
A bit off-topic, but it seems like you are missing the word "exists".
– Andreas Rejbrand
Dec 18 '18 at 19:52
add a comment |
The problem is that one-sided limits have subscripted symbols above $a$
. I tried adding a blank subscript to the 'ordinary' limit, but that didn't seem to even out spacing.
underline{Theorem:} $lim limits_{x to a^{}} f(x)
Longleftrightarrow lim limits_{x to a^{-}} f(x)
= lim limits_{x to a^{+}} f(x)$
amsmath
The problem is that one-sided limits have subscripted symbols above $a$
. I tried adding a blank subscript to the 'ordinary' limit, but that didn't seem to even out spacing.
underline{Theorem:} $lim limits_{x to a^{}} f(x)
Longleftrightarrow lim limits_{x to a^{-}} f(x)
= lim limits_{x to a^{+}} f(x)$
amsmath
amsmath
edited Dec 18 '18 at 16:24
asked Dec 18 '18 at 15:21
Miguel Cumming-Romo
363
363
2
You would use a "phantom" glyph, as inlimits_{x to a^{phantom{-}}}
to leave extra space in the ordinary limit, but I don't like the look of it at all.
– Steven B. Segletes
Dec 18 '18 at 15:31
A bit off-topic, but it seems like you are missing the word "exists".
– Andreas Rejbrand
Dec 18 '18 at 19:52
add a comment |
2
You would use a "phantom" glyph, as inlimits_{x to a^{phantom{-}}}
to leave extra space in the ordinary limit, but I don't like the look of it at all.
– Steven B. Segletes
Dec 18 '18 at 15:31
A bit off-topic, but it seems like you are missing the word "exists".
– Andreas Rejbrand
Dec 18 '18 at 19:52
2
2
You would use a "phantom" glyph, as in
limits_{x to a^{phantom{-}}}
to leave extra space in the ordinary limit, but I don't like the look of it at all.– Steven B. Segletes
Dec 18 '18 at 15:31
You would use a "phantom" glyph, as in
limits_{x to a^{phantom{-}}}
to leave extra space in the ordinary limit, but I don't like the look of it at all.– Steven B. Segletes
Dec 18 '18 at 15:31
A bit off-topic, but it seems like you are missing the word "exists".
– Andreas Rejbrand
Dec 18 '18 at 19:52
A bit off-topic, but it seems like you are missing the word "exists".
– Andreas Rejbrand
Dec 18 '18 at 19:52
add a comment |
3 Answers
3
active
oldest
votes
Use vphantom{+}
to have the same height as the RHS.
underline{Theorem:} $limlimits_{x to a^{vphantom{+}}} f(x)
Longleftrightarrow limlimits_{x to a^{-}} f(x)
= limlimits_{x to a^{+}} f(x)$
add a comment |
Here's a possibility, but takes a lot of work to get there. It uses the vphantom
mentioned by AboAmmar, but it also horizontally centers the to
under the lim
.
It does it by placing a phantom scripted -
to the left of the one-sided limits. But then it must also introduce !!!
negative space to compensate.
documentclass{article}
begin{document}
underline{Theorem:} $lim limits_{x to a^{vphantom{-}}} f(x)
Longleftrightarrow !!!lim limits_{^{phantom{-}}x to a^{-}} f(x)
= !!!lim limits_{^{phantom{-}}x to a^{+}} f(x)$
end{document}
add a comment |
If a
is a constant, I'd suggest you use uparrow
and downarrow
to indicate unambiguously that the x
is supposed to approach a
from below and above, respectively. A very nice side-effect of this notation is that xuparrow a
and xdownarrow a
take up less space than xto a
-- obviating any need to make spacing adjustments.
If, in addition, you wish to assure that xto a
and xuparrow a
(and xdownarrow a
) are typeset at same distance below "lim", just change xto a
to xto avphantom{uparrow}
.
documentclass{article}
begin{document}
$displaystyle
lim_{xto a} f(x)Longleftrightarrow
lim_{xuparrow a} f(x)=
lim_{xdownarrow a} f(x)$
end{document}
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%2f466377%2fequal-spacing-for-ordinary-limit-and-one-sided-limit%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use vphantom{+}
to have the same height as the RHS.
underline{Theorem:} $limlimits_{x to a^{vphantom{+}}} f(x)
Longleftrightarrow limlimits_{x to a^{-}} f(x)
= limlimits_{x to a^{+}} f(x)$
add a comment |
Use vphantom{+}
to have the same height as the RHS.
underline{Theorem:} $limlimits_{x to a^{vphantom{+}}} f(x)
Longleftrightarrow limlimits_{x to a^{-}} f(x)
= limlimits_{x to a^{+}} f(x)$
add a comment |
Use vphantom{+}
to have the same height as the RHS.
underline{Theorem:} $limlimits_{x to a^{vphantom{+}}} f(x)
Longleftrightarrow limlimits_{x to a^{-}} f(x)
= limlimits_{x to a^{+}} f(x)$
Use vphantom{+}
to have the same height as the RHS.
underline{Theorem:} $limlimits_{x to a^{vphantom{+}}} f(x)
Longleftrightarrow limlimits_{x to a^{-}} f(x)
= limlimits_{x to a^{+}} f(x)$
answered Dec 18 '18 at 15:33
AboAmmar
33.1k22882
33.1k22882
add a comment |
add a comment |
Here's a possibility, but takes a lot of work to get there. It uses the vphantom
mentioned by AboAmmar, but it also horizontally centers the to
under the lim
.
It does it by placing a phantom scripted -
to the left of the one-sided limits. But then it must also introduce !!!
negative space to compensate.
documentclass{article}
begin{document}
underline{Theorem:} $lim limits_{x to a^{vphantom{-}}} f(x)
Longleftrightarrow !!!lim limits_{^{phantom{-}}x to a^{-}} f(x)
= !!!lim limits_{^{phantom{-}}x to a^{+}} f(x)$
end{document}
add a comment |
Here's a possibility, but takes a lot of work to get there. It uses the vphantom
mentioned by AboAmmar, but it also horizontally centers the to
under the lim
.
It does it by placing a phantom scripted -
to the left of the one-sided limits. But then it must also introduce !!!
negative space to compensate.
documentclass{article}
begin{document}
underline{Theorem:} $lim limits_{x to a^{vphantom{-}}} f(x)
Longleftrightarrow !!!lim limits_{^{phantom{-}}x to a^{-}} f(x)
= !!!lim limits_{^{phantom{-}}x to a^{+}} f(x)$
end{document}
add a comment |
Here's a possibility, but takes a lot of work to get there. It uses the vphantom
mentioned by AboAmmar, but it also horizontally centers the to
under the lim
.
It does it by placing a phantom scripted -
to the left of the one-sided limits. But then it must also introduce !!!
negative space to compensate.
documentclass{article}
begin{document}
underline{Theorem:} $lim limits_{x to a^{vphantom{-}}} f(x)
Longleftrightarrow !!!lim limits_{^{phantom{-}}x to a^{-}} f(x)
= !!!lim limits_{^{phantom{-}}x to a^{+}} f(x)$
end{document}
Here's a possibility, but takes a lot of work to get there. It uses the vphantom
mentioned by AboAmmar, but it also horizontally centers the to
under the lim
.
It does it by placing a phantom scripted -
to the left of the one-sided limits. But then it must also introduce !!!
negative space to compensate.
documentclass{article}
begin{document}
underline{Theorem:} $lim limits_{x to a^{vphantom{-}}} f(x)
Longleftrightarrow !!!lim limits_{^{phantom{-}}x to a^{-}} f(x)
= !!!lim limits_{^{phantom{-}}x to a^{+}} f(x)$
end{document}
answered Dec 18 '18 at 15:37
Steven B. Segletes
152k9193400
152k9193400
add a comment |
add a comment |
If a
is a constant, I'd suggest you use uparrow
and downarrow
to indicate unambiguously that the x
is supposed to approach a
from below and above, respectively. A very nice side-effect of this notation is that xuparrow a
and xdownarrow a
take up less space than xto a
-- obviating any need to make spacing adjustments.
If, in addition, you wish to assure that xto a
and xuparrow a
(and xdownarrow a
) are typeset at same distance below "lim", just change xto a
to xto avphantom{uparrow}
.
documentclass{article}
begin{document}
$displaystyle
lim_{xto a} f(x)Longleftrightarrow
lim_{xuparrow a} f(x)=
lim_{xdownarrow a} f(x)$
end{document}
add a comment |
If a
is a constant, I'd suggest you use uparrow
and downarrow
to indicate unambiguously that the x
is supposed to approach a
from below and above, respectively. A very nice side-effect of this notation is that xuparrow a
and xdownarrow a
take up less space than xto a
-- obviating any need to make spacing adjustments.
If, in addition, you wish to assure that xto a
and xuparrow a
(and xdownarrow a
) are typeset at same distance below "lim", just change xto a
to xto avphantom{uparrow}
.
documentclass{article}
begin{document}
$displaystyle
lim_{xto a} f(x)Longleftrightarrow
lim_{xuparrow a} f(x)=
lim_{xdownarrow a} f(x)$
end{document}
add a comment |
If a
is a constant, I'd suggest you use uparrow
and downarrow
to indicate unambiguously that the x
is supposed to approach a
from below and above, respectively. A very nice side-effect of this notation is that xuparrow a
and xdownarrow a
take up less space than xto a
-- obviating any need to make spacing adjustments.
If, in addition, you wish to assure that xto a
and xuparrow a
(and xdownarrow a
) are typeset at same distance below "lim", just change xto a
to xto avphantom{uparrow}
.
documentclass{article}
begin{document}
$displaystyle
lim_{xto a} f(x)Longleftrightarrow
lim_{xuparrow a} f(x)=
lim_{xdownarrow a} f(x)$
end{document}
If a
is a constant, I'd suggest you use uparrow
and downarrow
to indicate unambiguously that the x
is supposed to approach a
from below and above, respectively. A very nice side-effect of this notation is that xuparrow a
and xdownarrow a
take up less space than xto a
-- obviating any need to make spacing adjustments.
If, in addition, you wish to assure that xto a
and xuparrow a
(and xdownarrow a
) are typeset at same distance below "lim", just change xto a
to xto avphantom{uparrow}
.
documentclass{article}
begin{document}
$displaystyle
lim_{xto a} f(x)Longleftrightarrow
lim_{xuparrow a} f(x)=
lim_{xdownarrow a} f(x)$
end{document}
edited Dec 18 '18 at 16:42
answered Dec 18 '18 at 16:36
Mico
273k30369756
273k30369756
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%2f466377%2fequal-spacing-for-ordinary-limit-and-one-sided-limit%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
You would use a "phantom" glyph, as in
limits_{x to a^{phantom{-}}}
to leave extra space in the ordinary limit, but I don't like the look of it at all.– Steven B. Segletes
Dec 18 '18 at 15:31
A bit off-topic, but it seems like you are missing the word "exists".
– Andreas Rejbrand
Dec 18 '18 at 19:52