Align equations with text before one of them
I want to align 2 similar equations such that the first is directly over the other.
$ a + b = c $ \
text $ d + e = f $ \
How do I do that?
it should look like:
$ a + b = c $ \
text $ d + e = f $ \
align
New contributor
add a comment |
I want to align 2 similar equations such that the first is directly over the other.
$ a + b = c $ \
text $ d + e = f $ \
How do I do that?
it should look like:
$ a + b = c $ \
text $ d + e = f $ \
align
New contributor
Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via\
. Instead, it is far better to use a display likebegin{align*}
...end{align*}
.
– Werner
11 hours ago
add a comment |
I want to align 2 similar equations such that the first is directly over the other.
$ a + b = c $ \
text $ d + e = f $ \
How do I do that?
it should look like:
$ a + b = c $ \
text $ d + e = f $ \
align
New contributor
I want to align 2 similar equations such that the first is directly over the other.
$ a + b = c $ \
text $ d + e = f $ \
How do I do that?
it should look like:
$ a + b = c $ \
text $ d + e = f $ \
align
align
New contributor
New contributor
edited 11 hours ago
Bernard
172k776204
172k776204
New contributor
asked 12 hours ago
TomaToma
211
211
New contributor
New contributor
Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via\
. Instead, it is far better to use a display likebegin{align*}
...end{align*}
.
– Werner
11 hours ago
add a comment |
Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via\
. Instead, it is far better to use a display likebegin{align*}
...end{align*}
.
– Werner
11 hours ago
Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via
\
. Instead, it is far better to use a display like begin{align*}
...end{align*}
.– Werner
11 hours ago
Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via
\
. Instead, it is far better to use a display like begin{align*}
...end{align*}
.– Werner
11 hours ago
add a comment |
2 Answers
2
active
oldest
votes
documentclass{article}
usepackage{amsmath}
begin{document}
zzzzzzzzzzzz
text $begin{aligned}[b]
a + b &= c \
d + e &= f
end{aligned}$
zzzzzzzzzzzzzzzzzzzzzzzzz
end{document}
It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and usingphantom{text }$...
would avoid all possible baseline problems.)
– barbara beeton
11 hours ago
1
@barbarabeeton ^^
– David Carlisle
11 hours ago
The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since thealigned
andalign
vertical separation is more than the default baselineskip.)
– barbara beeton
10 hours ago
@barbarabeeton yes, quite probably you would set the whole thing off in a display construct such ascenter
so thelineskip
difference wouldn't be obtrusive, or you could correct fro it of course.
– David Carlisle
10 hours ago
add a comment |
documentclass{article}
usepackage{tabstackengine}
TABstackMath
begin{document}
text alignLongstack{a + b =& c\ d + e =& f} more text
end{document}
The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}
.
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
});
}
});
Toma 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%2f478267%2falign-equations-with-text-before-one-of-them%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
documentclass{article}
usepackage{amsmath}
begin{document}
zzzzzzzzzzzz
text $begin{aligned}[b]
a + b &= c \
d + e &= f
end{aligned}$
zzzzzzzzzzzzzzzzzzzzzzzzz
end{document}
It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and usingphantom{text }$...
would avoid all possible baseline problems.)
– barbara beeton
11 hours ago
1
@barbarabeeton ^^
– David Carlisle
11 hours ago
The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since thealigned
andalign
vertical separation is more than the default baselineskip.)
– barbara beeton
10 hours ago
@barbarabeeton yes, quite probably you would set the whole thing off in a display construct such ascenter
so thelineskip
difference wouldn't be obtrusive, or you could correct fro it of course.
– David Carlisle
10 hours ago
add a comment |
documentclass{article}
usepackage{amsmath}
begin{document}
zzzzzzzzzzzz
text $begin{aligned}[b]
a + b &= c \
d + e &= f
end{aligned}$
zzzzzzzzzzzzzzzzzzzzzzzzz
end{document}
It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and usingphantom{text }$...
would avoid all possible baseline problems.)
– barbara beeton
11 hours ago
1
@barbarabeeton ^^
– David Carlisle
11 hours ago
The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since thealigned
andalign
vertical separation is more than the default baselineskip.)
– barbara beeton
10 hours ago
@barbarabeeton yes, quite probably you would set the whole thing off in a display construct such ascenter
so thelineskip
difference wouldn't be obtrusive, or you could correct fro it of course.
– David Carlisle
10 hours ago
add a comment |
documentclass{article}
usepackage{amsmath}
begin{document}
zzzzzzzzzzzz
text $begin{aligned}[b]
a + b &= c \
d + e &= f
end{aligned}$
zzzzzzzzzzzzzzzzzzzzzzzzz
end{document}
documentclass{article}
usepackage{amsmath}
begin{document}
zzzzzzzzzzzz
text $begin{aligned}[b]
a + b &= c \
d + e &= f
end{aligned}$
zzzzzzzzzzzzzzzzzzzzzzzzz
end{document}
edited 11 hours ago
answered 12 hours ago
David CarlisleDavid Carlisle
493k4111371885
493k4111371885
It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and usingphantom{text }$...
would avoid all possible baseline problems.)
– barbara beeton
11 hours ago
1
@barbarabeeton ^^
– David Carlisle
11 hours ago
The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since thealigned
andalign
vertical separation is more than the default baselineskip.)
– barbara beeton
10 hours ago
@barbarabeeton yes, quite probably you would set the whole thing off in a display construct such ascenter
so thelineskip
difference wouldn't be obtrusive, or you could correct fro it of course.
– David Carlisle
10 hours ago
add a comment |
It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and usingphantom{text }$...
would avoid all possible baseline problems.)
– barbara beeton
11 hours ago
1
@barbarabeeton ^^
– David Carlisle
11 hours ago
The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since thealigned
andalign
vertical separation is more than the default baselineskip.)
– barbara beeton
10 hours ago
@barbarabeeton yes, quite probably you would set the whole thing off in a display construct such ascenter
so thelineskip
difference wouldn't be obtrusive, or you could correct fro it of course.
– David Carlisle
10 hours ago
It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using
phantom{text }$...
would avoid all possible baseline problems.)– barbara beeton
11 hours ago
It would be nice if you showed a line of text above and another below, just to show that it works in context. (Of course, just cheating and using
phantom{text }$...
would avoid all possible baseline problems.)– barbara beeton
11 hours ago
1
1
@barbarabeeton ^^
– David Carlisle
11 hours ago
@barbarabeeton ^^
– David Carlisle
11 hours ago
The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the
aligned
and align
vertical separation is more than the default baselineskip.)– barbara beeton
10 hours ago
The gap between the two lines with the math expressions is larger than the gap between a math line and the adjacent text line. (Not surprising, actually, since the
aligned
and align
vertical separation is more than the default baselineskip.)– barbara beeton
10 hours ago
@barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as
center
so the lineskip
difference wouldn't be obtrusive, or you could correct fro it of course.– David Carlisle
10 hours ago
@barbarabeeton yes, quite probably you would set the whole thing off in a display construct such as
center
so the lineskip
difference wouldn't be obtrusive, or you could correct fro it of course.– David Carlisle
10 hours ago
add a comment |
documentclass{article}
usepackage{tabstackengine}
TABstackMath
begin{document}
text alignLongstack{a + b =& c\ d + e =& f} more text
end{document}
The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}
.
add a comment |
documentclass{article}
usepackage{tabstackengine}
TABstackMath
begin{document}
text alignLongstack{a + b =& c\ d + e =& f} more text
end{document}
The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}
.
add a comment |
documentclass{article}
usepackage{tabstackengine}
TABstackMath
begin{document}
text alignLongstack{a + b =& c\ d + e =& f} more text
end{document}
The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}
.
documentclass{article}
usepackage{tabstackengine}
TABstackMath
begin{document}
text alignLongstack{a + b =& c\ d + e =& f} more text
end{document}
The default baselineskip for a long stack can be set in the preamble with setstackgap{L}{<length>}
.
edited 11 hours ago
answered 11 hours ago
Steven B. SegletesSteven B. Segletes
157k9203411
157k9203411
add a comment |
add a comment |
Toma is a new contributor. Be nice, and check out our Code of Conduct.
Toma is a new contributor. Be nice, and check out our Code of Conduct.
Toma is a new contributor. Be nice, and check out our Code of Conduct.
Toma 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.
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%2f478267%2falign-equations-with-text-before-one-of-them%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
Can you provide some broader context of the information surrounding your code snippet? Specifically, this information seems to be presented in regular text/paragraph mode with line-breaks via
\
. Instead, it is far better to use a display likebegin{align*}
...end{align*}
.– Werner
11 hours ago