How to left alignment of formulas in parentheses?
up vote
3
down vote
favorite
I want the follow one, but my code dosen't achieve, can someone help?

my code:
begin{equation}
begin{aligned}
rho=left{
begin{array}{lr}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
the result of my code:

equations alignment
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
3
down vote
favorite
I want the follow one, but my code dosen't achieve, can someone help?

my code:
begin{equation}
begin{aligned}
rho=left{
begin{array}{lr}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
the result of my code:

equations alignment
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
You might also want to have a look at thecasesenvironment provided by theamsmathpackage (see the end of section 3.7 of its manual), as well as at the variants thereof added by themathtoolspackage (see section 3.4.3 of its manual).
– GuM
2 days ago
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I want the follow one, but my code dosen't achieve, can someone help?

my code:
begin{equation}
begin{aligned}
rho=left{
begin{array}{lr}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
the result of my code:

equations alignment
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I want the follow one, but my code dosen't achieve, can someone help?

my code:
begin{equation}
begin{aligned}
rho=left{
begin{array}{lr}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
the result of my code:

equations alignment
equations alignment
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 days ago
berlinpand
283
283
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
berlinpand is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
You might also want to have a look at thecasesenvironment provided by theamsmathpackage (see the end of section 3.7 of its manual), as well as at the variants thereof added by themathtoolspackage (see section 3.4.3 of its manual).
– GuM
2 days ago
add a comment |
1
You might also want to have a look at thecasesenvironment provided by theamsmathpackage (see the end of section 3.7 of its manual), as well as at the variants thereof added by themathtoolspackage (see section 3.4.3 of its manual).
– GuM
2 days ago
1
1
You might also want to have a look at the
cases environment provided by the amsmath package (see the end of section 3.7 of its manual), as well as at the variants thereof added by the mathtools package (see section 3.4.3 of its manual).– GuM
2 days ago
You might also want to have a look at the
cases environment provided by the amsmath package (see the end of section 3.7 of its manual), as well as at the variants thereof added by the mathtools package (see section 3.4.3 of its manual).– GuM
2 days ago
add a comment |
2 Answers
2
active
oldest
votes
up vote
5
down vote
accepted
Just declare the table with ll and not lr
begin{array}{ll}

documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
begin{aligned}
rho=left{
begin{array}{ll}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
end{document}
oh``thank for your help, I think I just asked a stupid question...but thanks again!!
– berlinpand
2 days ago
@berlinpand That's what I like about LaTeX: even after several years of practice, I'm still a beginner!
– AndréC
2 days ago
add a comment |
up vote
9
down vote
Why not use a simple cases environment?
documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
rho=
begin{cases}
0, & |v_{y}^{CH}|<V_{1}^{T} \[1ex]
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \[1ex]
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{cases}
end{equation}
end{document}

Thank for your answer! ! I will try later
– berlinpand
2 days ago
This one looks much better
– MCMastery
2 days ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
accepted
Just declare the table with ll and not lr
begin{array}{ll}

documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
begin{aligned}
rho=left{
begin{array}{ll}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
end{document}
oh``thank for your help, I think I just asked a stupid question...but thanks again!!
– berlinpand
2 days ago
@berlinpand That's what I like about LaTeX: even after several years of practice, I'm still a beginner!
– AndréC
2 days ago
add a comment |
up vote
5
down vote
accepted
Just declare the table with ll and not lr
begin{array}{ll}

documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
begin{aligned}
rho=left{
begin{array}{ll}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
end{document}
oh``thank for your help, I think I just asked a stupid question...but thanks again!!
– berlinpand
2 days ago
@berlinpand That's what I like about LaTeX: even after several years of practice, I'm still a beginner!
– AndréC
2 days ago
add a comment |
up vote
5
down vote
accepted
up vote
5
down vote
accepted
Just declare the table with ll and not lr
begin{array}{ll}

documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
begin{aligned}
rho=left{
begin{array}{ll}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
end{document}
Just declare the table with ll and not lr
begin{array}{ll}

documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
begin{aligned}
rho=left{
begin{array}{ll}
0, & |v_{y}^{CH}|<V_{1}^{T} \
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{array}
right.
end{aligned}
end{equation}
end{document}
answered 2 days ago
AndréC
6,24711140
6,24711140
oh``thank for your help, I think I just asked a stupid question...but thanks again!!
– berlinpand
2 days ago
@berlinpand That's what I like about LaTeX: even after several years of practice, I'm still a beginner!
– AndréC
2 days ago
add a comment |
oh``thank for your help, I think I just asked a stupid question...but thanks again!!
– berlinpand
2 days ago
@berlinpand That's what I like about LaTeX: even after several years of practice, I'm still a beginner!
– AndréC
2 days ago
oh``thank for your help, I think I just asked a stupid question...but thanks again!!
– berlinpand
2 days ago
oh``thank for your help, I think I just asked a stupid question...but thanks again!!
– berlinpand
2 days ago
@berlinpand That's what I like about LaTeX: even after several years of practice, I'm still a beginner!
– AndréC
2 days ago
@berlinpand That's what I like about LaTeX: even after several years of practice, I'm still a beginner!
– AndréC
2 days ago
add a comment |
up vote
9
down vote
Why not use a simple cases environment?
documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
rho=
begin{cases}
0, & |v_{y}^{CH}|<V_{1}^{T} \[1ex]
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \[1ex]
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{cases}
end{equation}
end{document}

Thank for your answer! ! I will try later
– berlinpand
2 days ago
This one looks much better
– MCMastery
2 days ago
add a comment |
up vote
9
down vote
Why not use a simple cases environment?
documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
rho=
begin{cases}
0, & |v_{y}^{CH}|<V_{1}^{T} \[1ex]
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \[1ex]
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{cases}
end{equation}
end{document}

Thank for your answer! ! I will try later
– berlinpand
2 days ago
This one looks much better
– MCMastery
2 days ago
add a comment |
up vote
9
down vote
up vote
9
down vote
Why not use a simple cases environment?
documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
rho=
begin{cases}
0, & |v_{y}^{CH}|<V_{1}^{T} \[1ex]
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \[1ex]
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{cases}
end{equation}
end{document}

Why not use a simple cases environment?
documentclass[a4paper]{article}
usepackage{amsmath}
begin{document}
begin{equation}
rho=
begin{cases}
0, & |v_{y}^{CH}|<V_{1}^{T} \[1ex]
y=0.5, & V_{1}^{T}leq |v_{y}^{CH}|leq V_{2}^{T}, \[1ex]
z=1, & |v_{y}^{CH}|> V_{2}^{T}
end{cases}
end{equation}
end{document}

answered 2 days ago
Bernard
162k767192
162k767192
Thank for your answer! ! I will try later
– berlinpand
2 days ago
This one looks much better
– MCMastery
2 days ago
add a comment |
Thank for your answer! ! I will try later
– berlinpand
2 days ago
This one looks much better
– MCMastery
2 days ago
Thank for your answer! ! I will try later
– berlinpand
2 days ago
Thank for your answer! ! I will try later
– berlinpand
2 days ago
This one looks much better
– MCMastery
2 days ago
This one looks much better
– MCMastery
2 days ago
add a comment |
berlinpand is a new contributor. Be nice, and check out our Code of Conduct.
berlinpand is a new contributor. Be nice, and check out our Code of Conduct.
berlinpand is a new contributor. Be nice, and check out our Code of Conduct.
berlinpand 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%2f461531%2fhow-to-left-alignment-of-formulas-in-parentheses%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
1
You might also want to have a look at the
casesenvironment provided by theamsmathpackage (see the end of section 3.7 of its manual), as well as at the variants thereof added by themathtoolspackage (see section 3.4.3 of its manual).– GuM
2 days ago