Putting severals terms below each other
up vote
1
down vote
favorite
i would like to put equations below each other and have equivalences next to it below each other as well.
Usually i use the command &= to put equations below each other, but when i use that it completely misunderstand the syntax.
Another problem is now that i have a line which is to long to fit in one row so i want to put the addition-symbol below each other and still want the equation below each. I tried:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
begin{document}
begin{align*}
P(X(t+h)=n)&=P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
&=P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
&=....
end{align*}
end{document}
But whenever i want to put another & somewhere to have the mentioned term below it, it completely destroys my whole syntax.
Second Problem:
Leftrightarrow a&=b \
Leftrightarrow abcdefgh&=b \
Here I have the equations below each other but i want the equivalences to be below each other as well at the left side or wherever i want to put them.
equations syntax
|
show 1 more comment
up vote
1
down vote
favorite
i would like to put equations below each other and have equivalences next to it below each other as well.
Usually i use the command &= to put equations below each other, but when i use that it completely misunderstand the syntax.
Another problem is now that i have a line which is to long to fit in one row so i want to put the addition-symbol below each other and still want the equation below each. I tried:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
begin{document}
begin{align*}
P(X(t+h)=n)&=P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
&=P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
&=....
end{align*}
end{document}
But whenever i want to put another & somewhere to have the mentioned term below it, it completely destroys my whole syntax.
Second Problem:
Leftrightarrow a&=b \
Leftrightarrow abcdefgh&=b \
Here I have the equations below each other but i want the equivalences to be below each other as well at the left side or wherever i want to put them.
equations syntax
in which math environment you use your code snippet? is italign
? in it your code snippet works fine ... welcome to tex.se!
– Zarko
Dec 7 at 12:42
Are you remembering to insert \ to change line before use&
?
– Sigur
Dec 7 at 12:48
Yes i am in the align environment. Yes i am putting \ at the end of every line at the moment. So when i put & before cdot for example it transfers everything behind that & like 5 cm to the right, but it doesnt matter where i put & its the same problem there.
– chri11
Dec 7 at 12:50
Inalign
if you use more than one&
, it will try to insert another column of aligments on the right. In your case, you don't want that. So, a single&
on each line.
– Sigur
Dec 7 at 13:06
1
we can only guess whats going wrong in your document if you not show it. please be so kind and expand your code snippet to complete small document, which will demonstrate your problem. without it we cant help you ...
– Zarko
Dec 7 at 13:49
|
show 1 more comment
up vote
1
down vote
favorite
up vote
1
down vote
favorite
i would like to put equations below each other and have equivalences next to it below each other as well.
Usually i use the command &= to put equations below each other, but when i use that it completely misunderstand the syntax.
Another problem is now that i have a line which is to long to fit in one row so i want to put the addition-symbol below each other and still want the equation below each. I tried:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
begin{document}
begin{align*}
P(X(t+h)=n)&=P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
&=P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
&=....
end{align*}
end{document}
But whenever i want to put another & somewhere to have the mentioned term below it, it completely destroys my whole syntax.
Second Problem:
Leftrightarrow a&=b \
Leftrightarrow abcdefgh&=b \
Here I have the equations below each other but i want the equivalences to be below each other as well at the left side or wherever i want to put them.
equations syntax
i would like to put equations below each other and have equivalences next to it below each other as well.
Usually i use the command &= to put equations below each other, but when i use that it completely misunderstand the syntax.
Another problem is now that i have a line which is to long to fit in one row so i want to put the addition-symbol below each other and still want the equation below each. I tried:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
begin{document}
begin{align*}
P(X(t+h)=n)&=P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
&=P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
&=....
end{align*}
end{document}
But whenever i want to put another & somewhere to have the mentioned term below it, it completely destroys my whole syntax.
Second Problem:
Leftrightarrow a&=b \
Leftrightarrow abcdefgh&=b \
Here I have the equations below each other but i want the equivalences to be below each other as well at the left side or wherever i want to put them.
equations syntax
equations syntax
edited Dec 8 at 9:25
asked Dec 7 at 12:24
chri11
234
234
in which math environment you use your code snippet? is italign
? in it your code snippet works fine ... welcome to tex.se!
– Zarko
Dec 7 at 12:42
Are you remembering to insert \ to change line before use&
?
– Sigur
Dec 7 at 12:48
Yes i am in the align environment. Yes i am putting \ at the end of every line at the moment. So when i put & before cdot for example it transfers everything behind that & like 5 cm to the right, but it doesnt matter where i put & its the same problem there.
– chri11
Dec 7 at 12:50
Inalign
if you use more than one&
, it will try to insert another column of aligments on the right. In your case, you don't want that. So, a single&
on each line.
– Sigur
Dec 7 at 13:06
1
we can only guess whats going wrong in your document if you not show it. please be so kind and expand your code snippet to complete small document, which will demonstrate your problem. without it we cant help you ...
– Zarko
Dec 7 at 13:49
|
show 1 more comment
in which math environment you use your code snippet? is italign
? in it your code snippet works fine ... welcome to tex.se!
– Zarko
Dec 7 at 12:42
Are you remembering to insert \ to change line before use&
?
– Sigur
Dec 7 at 12:48
Yes i am in the align environment. Yes i am putting \ at the end of every line at the moment. So when i put & before cdot for example it transfers everything behind that & like 5 cm to the right, but it doesnt matter where i put & its the same problem there.
– chri11
Dec 7 at 12:50
Inalign
if you use more than one&
, it will try to insert another column of aligments on the right. In your case, you don't want that. So, a single&
on each line.
– Sigur
Dec 7 at 13:06
1
we can only guess whats going wrong in your document if you not show it. please be so kind and expand your code snippet to complete small document, which will demonstrate your problem. without it we cant help you ...
– Zarko
Dec 7 at 13:49
in which math environment you use your code snippet? is it
align
? in it your code snippet works fine ... welcome to tex.se!– Zarko
Dec 7 at 12:42
in which math environment you use your code snippet? is it
align
? in it your code snippet works fine ... welcome to tex.se!– Zarko
Dec 7 at 12:42
Are you remembering to insert \ to change line before use
&
?– Sigur
Dec 7 at 12:48
Are you remembering to insert \ to change line before use
&
?– Sigur
Dec 7 at 12:48
Yes i am in the align environment. Yes i am putting \ at the end of every line at the moment. So when i put & before cdot for example it transfers everything behind that & like 5 cm to the right, but it doesnt matter where i put & its the same problem there.
– chri11
Dec 7 at 12:50
Yes i am in the align environment. Yes i am putting \ at the end of every line at the moment. So when i put & before cdot for example it transfers everything behind that & like 5 cm to the right, but it doesnt matter where i put & its the same problem there.
– chri11
Dec 7 at 12:50
In
align
if you use more than one &
, it will try to insert another column of aligments on the right. In your case, you don't want that. So, a single &
on each line.– Sigur
Dec 7 at 13:06
In
align
if you use more than one &
, it will try to insert another column of aligments on the right. In your case, you don't want that. So, a single &
on each line.– Sigur
Dec 7 at 13:06
1
1
we can only guess whats going wrong in your document if you not show it. please be so kind and expand your code snippet to complete small document, which will demonstrate your problem. without it we cant help you ...
– Zarko
Dec 7 at 13:49
we can only guess whats going wrong in your document if you not show it. please be so kind and expand your code snippet to complete small document, which will demonstrate your problem. without it we cant help you ...
– Zarko
Dec 7 at 13:49
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
0
down vote
edit:
your question and additional request in comments are not clear ... now i added two more possibilities to arrange of your equations:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{mathtools, amssymb}
begin{document}
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& begin{multlined}[t][0.7linewidth]
= P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1)
end{multlined} \
& = dotsm
end{align*}
or
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& = P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&qquad +P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
& = dotsm
end{align*}
and
begin{alignat*}{3}
Leftrightarrow &;& a & = b \
Leftrightarrow & & abcdefgh & = b
end{alignat*}
or
[setlengtharraycolsep{2pt}
begin{array}{ccl}
Leftrightarrow & a & = b \
Leftrightarrow & abcdefgh & = b
end{array}
]
end{document}
Thank you, that solves one of my problems. Now in another case i want the equations to be perfectly below each other so i use &= and it works but to the very left i want to have equivalences below each other as well.
– chri11
Dec 8 at 9:10
@chri11, sorry, i don't understand you. do you like that equations are left aligned and not at sign=
?
– Zarko
Dec 8 at 9:16
I ad it to my first problem.
– chri11
Dec 8 at 9:26
@chri11, one problem per question ... in the second case, if i understand you, just move ampersand. for example after arrows, or before arrows. or you like to have arrows aligned and equal sign? anyway, i suggest you to read some introduction text for writing equations in latex like en.wikibooks.org/wiki/LaTeX/Mathematics and en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics. it may help you to see all possibilities at writing equation systems.
– Zarko
Dec 8 at 11:04
Yes i want to have arrows aligned and equal signed aligned and thats not working with the & environment and i cant find it in the wikibooks either.
– chri11
Dec 8 at 12:22
|
show 3 more comments
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',
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%2f463683%2fputting-severals-terms-below-each-other%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
edit:
your question and additional request in comments are not clear ... now i added two more possibilities to arrange of your equations:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{mathtools, amssymb}
begin{document}
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& begin{multlined}[t][0.7linewidth]
= P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1)
end{multlined} \
& = dotsm
end{align*}
or
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& = P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&qquad +P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
& = dotsm
end{align*}
and
begin{alignat*}{3}
Leftrightarrow &;& a & = b \
Leftrightarrow & & abcdefgh & = b
end{alignat*}
or
[setlengtharraycolsep{2pt}
begin{array}{ccl}
Leftrightarrow & a & = b \
Leftrightarrow & abcdefgh & = b
end{array}
]
end{document}
Thank you, that solves one of my problems. Now in another case i want the equations to be perfectly below each other so i use &= and it works but to the very left i want to have equivalences below each other as well.
– chri11
Dec 8 at 9:10
@chri11, sorry, i don't understand you. do you like that equations are left aligned and not at sign=
?
– Zarko
Dec 8 at 9:16
I ad it to my first problem.
– chri11
Dec 8 at 9:26
@chri11, one problem per question ... in the second case, if i understand you, just move ampersand. for example after arrows, or before arrows. or you like to have arrows aligned and equal sign? anyway, i suggest you to read some introduction text for writing equations in latex like en.wikibooks.org/wiki/LaTeX/Mathematics and en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics. it may help you to see all possibilities at writing equation systems.
– Zarko
Dec 8 at 11:04
Yes i want to have arrows aligned and equal signed aligned and thats not working with the & environment and i cant find it in the wikibooks either.
– chri11
Dec 8 at 12:22
|
show 3 more comments
up vote
0
down vote
edit:
your question and additional request in comments are not clear ... now i added two more possibilities to arrange of your equations:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{mathtools, amssymb}
begin{document}
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& begin{multlined}[t][0.7linewidth]
= P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1)
end{multlined} \
& = dotsm
end{align*}
or
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& = P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&qquad +P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
& = dotsm
end{align*}
and
begin{alignat*}{3}
Leftrightarrow &;& a & = b \
Leftrightarrow & & abcdefgh & = b
end{alignat*}
or
[setlengtharraycolsep{2pt}
begin{array}{ccl}
Leftrightarrow & a & = b \
Leftrightarrow & abcdefgh & = b
end{array}
]
end{document}
Thank you, that solves one of my problems. Now in another case i want the equations to be perfectly below each other so i use &= and it works but to the very left i want to have equivalences below each other as well.
– chri11
Dec 8 at 9:10
@chri11, sorry, i don't understand you. do you like that equations are left aligned and not at sign=
?
– Zarko
Dec 8 at 9:16
I ad it to my first problem.
– chri11
Dec 8 at 9:26
@chri11, one problem per question ... in the second case, if i understand you, just move ampersand. for example after arrows, or before arrows. or you like to have arrows aligned and equal sign? anyway, i suggest you to read some introduction text for writing equations in latex like en.wikibooks.org/wiki/LaTeX/Mathematics and en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics. it may help you to see all possibilities at writing equation systems.
– Zarko
Dec 8 at 11:04
Yes i want to have arrows aligned and equal signed aligned and thats not working with the & environment and i cant find it in the wikibooks either.
– chri11
Dec 8 at 12:22
|
show 3 more comments
up vote
0
down vote
up vote
0
down vote
edit:
your question and additional request in comments are not clear ... now i added two more possibilities to arrange of your equations:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{mathtools, amssymb}
begin{document}
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& begin{multlined}[t][0.7linewidth]
= P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1)
end{multlined} \
& = dotsm
end{align*}
or
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& = P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&qquad +P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
& = dotsm
end{align*}
and
begin{alignat*}{3}
Leftrightarrow &;& a & = b \
Leftrightarrow & & abcdefgh & = b
end{alignat*}
or
[setlengtharraycolsep{2pt}
begin{array}{ccl}
Leftrightarrow & a & = b \
Leftrightarrow & abcdefgh & = b
end{array}
]
end{document}
edit:
your question and additional request in comments are not clear ... now i added two more possibilities to arrange of your equations:
documentclass[10pt,a4paper]{article}
usepackage[utf8]{inputenc}
usepackage{mathtools, amssymb}
begin{document}
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& begin{multlined}[t][0.7linewidth]
= P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
+P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1)
end{multlined} \
& = dotsm
end{align*}
or
begin{align*}
P(X(t+h)=n) & = P(bigcuplimits_{k=0}^n{X(t)=k, X(t+h)=n})\
& = P(X(t)=n)cdot P(X(t+h)=n | X(t)=n)\
&qquad +P(X(t)=n-1)cdot P(X(t+h)=n | X(t)=n+1) \
& = dotsm
end{align*}
and
begin{alignat*}{3}
Leftrightarrow &;& a & = b \
Leftrightarrow & & abcdefgh & = b
end{alignat*}
or
[setlengtharraycolsep{2pt}
begin{array}{ccl}
Leftrightarrow & a & = b \
Leftrightarrow & abcdefgh & = b
end{array}
]
end{document}
edited Dec 8 at 14:00
answered Dec 8 at 8:57
Zarko
119k865155
119k865155
Thank you, that solves one of my problems. Now in another case i want the equations to be perfectly below each other so i use &= and it works but to the very left i want to have equivalences below each other as well.
– chri11
Dec 8 at 9:10
@chri11, sorry, i don't understand you. do you like that equations are left aligned and not at sign=
?
– Zarko
Dec 8 at 9:16
I ad it to my first problem.
– chri11
Dec 8 at 9:26
@chri11, one problem per question ... in the second case, if i understand you, just move ampersand. for example after arrows, or before arrows. or you like to have arrows aligned and equal sign? anyway, i suggest you to read some introduction text for writing equations in latex like en.wikibooks.org/wiki/LaTeX/Mathematics and en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics. it may help you to see all possibilities at writing equation systems.
– Zarko
Dec 8 at 11:04
Yes i want to have arrows aligned and equal signed aligned and thats not working with the & environment and i cant find it in the wikibooks either.
– chri11
Dec 8 at 12:22
|
show 3 more comments
Thank you, that solves one of my problems. Now in another case i want the equations to be perfectly below each other so i use &= and it works but to the very left i want to have equivalences below each other as well.
– chri11
Dec 8 at 9:10
@chri11, sorry, i don't understand you. do you like that equations are left aligned and not at sign=
?
– Zarko
Dec 8 at 9:16
I ad it to my first problem.
– chri11
Dec 8 at 9:26
@chri11, one problem per question ... in the second case, if i understand you, just move ampersand. for example after arrows, or before arrows. or you like to have arrows aligned and equal sign? anyway, i suggest you to read some introduction text for writing equations in latex like en.wikibooks.org/wiki/LaTeX/Mathematics and en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics. it may help you to see all possibilities at writing equation systems.
– Zarko
Dec 8 at 11:04
Yes i want to have arrows aligned and equal signed aligned and thats not working with the & environment and i cant find it in the wikibooks either.
– chri11
Dec 8 at 12:22
Thank you, that solves one of my problems. Now in another case i want the equations to be perfectly below each other so i use &= and it works but to the very left i want to have equivalences below each other as well.
– chri11
Dec 8 at 9:10
Thank you, that solves one of my problems. Now in another case i want the equations to be perfectly below each other so i use &= and it works but to the very left i want to have equivalences below each other as well.
– chri11
Dec 8 at 9:10
@chri11, sorry, i don't understand you. do you like that equations are left aligned and not at sign
=
?– Zarko
Dec 8 at 9:16
@chri11, sorry, i don't understand you. do you like that equations are left aligned and not at sign
=
?– Zarko
Dec 8 at 9:16
I ad it to my first problem.
– chri11
Dec 8 at 9:26
I ad it to my first problem.
– chri11
Dec 8 at 9:26
@chri11, one problem per question ... in the second case, if i understand you, just move ampersand. for example after arrows, or before arrows. or you like to have arrows aligned and equal sign? anyway, i suggest you to read some introduction text for writing equations in latex like en.wikibooks.org/wiki/LaTeX/Mathematics and en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics. it may help you to see all possibilities at writing equation systems.
– Zarko
Dec 8 at 11:04
@chri11, one problem per question ... in the second case, if i understand you, just move ampersand. for example after arrows, or before arrows. or you like to have arrows aligned and equal sign? anyway, i suggest you to read some introduction text for writing equations in latex like en.wikibooks.org/wiki/LaTeX/Mathematics and en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics. it may help you to see all possibilities at writing equation systems.
– Zarko
Dec 8 at 11:04
Yes i want to have arrows aligned and equal signed aligned and thats not working with the & environment and i cant find it in the wikibooks either.
– chri11
Dec 8 at 12:22
Yes i want to have arrows aligned and equal signed aligned and thats not working with the & environment and i cant find it in the wikibooks either.
– chri11
Dec 8 at 12:22
|
show 3 more comments
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%2f463683%2fputting-severals-terms-below-each-other%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
in which math environment you use your code snippet? is it
align
? in it your code snippet works fine ... welcome to tex.se!– Zarko
Dec 7 at 12:42
Are you remembering to insert \ to change line before use
&
?– Sigur
Dec 7 at 12:48
Yes i am in the align environment. Yes i am putting \ at the end of every line at the moment. So when i put & before cdot for example it transfers everything behind that & like 5 cm to the right, but it doesnt matter where i put & its the same problem there.
– chri11
Dec 7 at 12:50
In
align
if you use more than one&
, it will try to insert another column of aligments on the right. In your case, you don't want that. So, a single&
on each line.– Sigur
Dec 7 at 13:06
1
we can only guess whats going wrong in your document if you not show it. please be so kind and expand your code snippet to complete small document, which will demonstrate your problem. without it we cant help you ...
– Zarko
Dec 7 at 13:49