Equation - brackets
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
How can I improve brakets in this equation please?
beginequationlabelE
E_0^(1) = expvalfrace'^2vecr_1-vecr_2Phi
endequation
EDIT:
And please, what is wrong here? I think that in the end should be Phi , but it is mistake by compilation.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sumlimits_l=0^infty sumlimits_m=-l^l left(frac right)^l Phi \
endequation
enddocument
equations
add a comment |
up vote
1
down vote
favorite
How can I improve brakets in this equation please?
beginequationlabelE
E_0^(1) = expvalfrace'^2vecr_1-vecr_2Phi
endequation
EDIT:
And please, what is wrong here? I think that in the end should be Phi , but it is mistake by compilation.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sumlimits_l=0^infty sumlimits_m=-l^l left(frac right)^l Phi \
endequation
enddocument
equations
3
left...right
? P.S. I usually writevecr_1
because of space.
– manooooh
1 hour ago
4
Please provide a compilable example. Where does theexpval
command come from?
– Phelype Oleinik
1 hour ago
1
Off-topic: One should probably writevecr_1
instead ofvecr_1
, andvecr_2
instead ofvecr_2
.
– Mico
1 hour ago
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
1 hour ago
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
How can I improve brakets in this equation please?
beginequationlabelE
E_0^(1) = expvalfrace'^2vecr_1-vecr_2Phi
endequation
EDIT:
And please, what is wrong here? I think that in the end should be Phi , but it is mistake by compilation.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sumlimits_l=0^infty sumlimits_m=-l^l left(frac right)^l Phi \
endequation
enddocument
equations
How can I improve brakets in this equation please?
beginequationlabelE
E_0^(1) = expvalfrace'^2vecr_1-vecr_2Phi
endequation
EDIT:
And please, what is wrong here? I think that in the end should be Phi , but it is mistake by compilation.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sumlimits_l=0^infty sumlimits_m=-l^l left(frac right)^l Phi \
endequation
enddocument
equations
equations
edited 1 hour ago
asked 1 hour ago
Elisabeth
575
575
3
left...right
? P.S. I usually writevecr_1
because of space.
– manooooh
1 hour ago
4
Please provide a compilable example. Where does theexpval
command come from?
– Phelype Oleinik
1 hour ago
1
Off-topic: One should probably writevecr_1
instead ofvecr_1
, andvecr_2
instead ofvecr_2
.
– Mico
1 hour ago
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
1 hour ago
add a comment |
3
left...right
? P.S. I usually writevecr_1
because of space.
– manooooh
1 hour ago
4
Please provide a compilable example. Where does theexpval
command come from?
– Phelype Oleinik
1 hour ago
1
Off-topic: One should probably writevecr_1
instead ofvecr_1
, andvecr_2
instead ofvecr_2
.
– Mico
1 hour ago
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
1 hour ago
3
3
left...right
? P.S. I usually write vecr_1
because of space.– manooooh
1 hour ago
left...right
? P.S. I usually write vecr_1
because of space.– manooooh
1 hour ago
4
4
Please provide a compilable example. Where does the
expval
command come from?– Phelype Oleinik
1 hour ago
Please provide a compilable example. Where does the
expval
command come from?– Phelype Oleinik
1 hour ago
1
1
Off-topic: One should probably write
vecr_1
instead of vecr_1
, and vecr_2
instead of vecr_2
.– Mico
1 hour ago
Off-topic: One should probably write
vecr_1
instead of vecr_1
, and vecr_2
instead of vecr_2
.– Mico
1 hour ago
1
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
1 hour ago
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
1 hour ago
add a comment |
2 Answers
2
active
oldest
votes
up vote
5
down vote
accepted
If you're using the physics
package, then it looks like you have to pass two *
arguments to expval
to allow it to auto-resize the brackets.
As for your second equation, it is missing an argument. You had expval**stuff Phi
, but you need to provide another argument: expval**stuffPhi
.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = expval**frace'^2vecr_1-vecr_2Phi
endequation
beginequationlabelE2
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sum_l=0^infty sum_m=-l^l left(frac right)^lPhi
endequation
enddocument
Please, can I have one more question - I editted my origin question.
– Elisabeth
1 hour ago
1
@Elisabeth The solution was simple, so I also updated my answer. If you happen to have more problems it's advisable, as Mico said, to ask a new question instead of editing an old question.
– Phelype Oleinik
1 hour ago
You should definitely remove the double-backslash stuff at the end of theequation
environments. Also, thelimits
directives are redundant; all they do is create code clutter.
– Mico
1 hour ago
Ok, I am sorry and thank you very much.
– Elisabeth
1 hour ago
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
1 hour ago
add a comment |
up vote
5
down vote
I do not know where expval
comes from but with braket
you could do
documentclassarticle
usepackageamsmath
usepackagebraket
begindocument
beginequationlabelE
E_0^(1) = BraketPhi
endequation
enddocument
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
If you're using the physics
package, then it looks like you have to pass two *
arguments to expval
to allow it to auto-resize the brackets.
As for your second equation, it is missing an argument. You had expval**stuff Phi
, but you need to provide another argument: expval**stuffPhi
.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = expval**frace'^2vecr_1-vecr_2Phi
endequation
beginequationlabelE2
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sum_l=0^infty sum_m=-l^l left(frac right)^lPhi
endequation
enddocument
Please, can I have one more question - I editted my origin question.
– Elisabeth
1 hour ago
1
@Elisabeth The solution was simple, so I also updated my answer. If you happen to have more problems it's advisable, as Mico said, to ask a new question instead of editing an old question.
– Phelype Oleinik
1 hour ago
You should definitely remove the double-backslash stuff at the end of theequation
environments. Also, thelimits
directives are redundant; all they do is create code clutter.
– Mico
1 hour ago
Ok, I am sorry and thank you very much.
– Elisabeth
1 hour ago
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
1 hour ago
add a comment |
up vote
5
down vote
accepted
If you're using the physics
package, then it looks like you have to pass two *
arguments to expval
to allow it to auto-resize the brackets.
As for your second equation, it is missing an argument. You had expval**stuff Phi
, but you need to provide another argument: expval**stuffPhi
.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = expval**frace'^2vecr_1-vecr_2Phi
endequation
beginequationlabelE2
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sum_l=0^infty sum_m=-l^l left(frac right)^lPhi
endequation
enddocument
Please, can I have one more question - I editted my origin question.
– Elisabeth
1 hour ago
1
@Elisabeth The solution was simple, so I also updated my answer. If you happen to have more problems it's advisable, as Mico said, to ask a new question instead of editing an old question.
– Phelype Oleinik
1 hour ago
You should definitely remove the double-backslash stuff at the end of theequation
environments. Also, thelimits
directives are redundant; all they do is create code clutter.
– Mico
1 hour ago
Ok, I am sorry and thank you very much.
– Elisabeth
1 hour ago
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
1 hour ago
add a comment |
up vote
5
down vote
accepted
up vote
5
down vote
accepted
If you're using the physics
package, then it looks like you have to pass two *
arguments to expval
to allow it to auto-resize the brackets.
As for your second equation, it is missing an argument. You had expval**stuff Phi
, but you need to provide another argument: expval**stuffPhi
.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = expval**frace'^2vecr_1-vecr_2Phi
endequation
beginequationlabelE2
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sum_l=0^infty sum_m=-l^l left(frac right)^lPhi
endequation
enddocument
If you're using the physics
package, then it looks like you have to pass two *
arguments to expval
to allow it to auto-resize the brackets.
As for your second equation, it is missing an argument. You had expval**stuff Phi
, but you need to provide another argument: expval**stuffPhi
.
documentclassarticle
usepackagephysics
begindocument
beginequationlabelE
E_0^(1) = expval**frace'^2vecr_1-vecr_2Phi
endequation
beginequationlabelE2
E_0^(1) = 4 pi e'^2 expval**frac1vecr_2 sum_l=0^infty sum_m=-l^l left(frac right)^lPhi
endequation
enddocument
edited 1 hour ago
answered 1 hour ago


Phelype Oleinik
19.9k54277
19.9k54277
Please, can I have one more question - I editted my origin question.
– Elisabeth
1 hour ago
1
@Elisabeth The solution was simple, so I also updated my answer. If you happen to have more problems it's advisable, as Mico said, to ask a new question instead of editing an old question.
– Phelype Oleinik
1 hour ago
You should definitely remove the double-backslash stuff at the end of theequation
environments. Also, thelimits
directives are redundant; all they do is create code clutter.
– Mico
1 hour ago
Ok, I am sorry and thank you very much.
– Elisabeth
1 hour ago
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
1 hour ago
add a comment |
Please, can I have one more question - I editted my origin question.
– Elisabeth
1 hour ago
1
@Elisabeth The solution was simple, so I also updated my answer. If you happen to have more problems it's advisable, as Mico said, to ask a new question instead of editing an old question.
– Phelype Oleinik
1 hour ago
You should definitely remove the double-backslash stuff at the end of theequation
environments. Also, thelimits
directives are redundant; all they do is create code clutter.
– Mico
1 hour ago
Ok, I am sorry and thank you very much.
– Elisabeth
1 hour ago
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
1 hour ago
Please, can I have one more question - I editted my origin question.
– Elisabeth
1 hour ago
Please, can I have one more question - I editted my origin question.
– Elisabeth
1 hour ago
1
1
@Elisabeth The solution was simple, so I also updated my answer. If you happen to have more problems it's advisable, as Mico said, to ask a new question instead of editing an old question.
– Phelype Oleinik
1 hour ago
@Elisabeth The solution was simple, so I also updated my answer. If you happen to have more problems it's advisable, as Mico said, to ask a new question instead of editing an old question.
– Phelype Oleinik
1 hour ago
You should definitely remove the double-backslash stuff at the end of the
equation
environments. Also, the limits
directives are redundant; all they do is create code clutter.– Mico
1 hour ago
You should definitely remove the double-backslash stuff at the end of the
equation
environments. Also, the limits
directives are redundant; all they do is create code clutter.– Mico
1 hour ago
Ok, I am sorry and thank you very much.
– Elisabeth
1 hour ago
Ok, I am sorry and thank you very much.
– Elisabeth
1 hour ago
1
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
1 hour ago
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
1 hour ago
add a comment |
up vote
5
down vote
I do not know where expval
comes from but with braket
you could do
documentclassarticle
usepackageamsmath
usepackagebraket
begindocument
beginequationlabelE
E_0^(1) = BraketPhi
endequation
enddocument
add a comment |
up vote
5
down vote
I do not know where expval
comes from but with braket
you could do
documentclassarticle
usepackageamsmath
usepackagebraket
begindocument
beginequationlabelE
E_0^(1) = BraketPhi
endequation
enddocument
add a comment |
up vote
5
down vote
up vote
5
down vote
I do not know where expval
comes from but with braket
you could do
documentclassarticle
usepackageamsmath
usepackagebraket
begindocument
beginequationlabelE
E_0^(1) = BraketPhi
endequation
enddocument
I do not know where expval
comes from but with braket
you could do
documentclassarticle
usepackageamsmath
usepackagebraket
begindocument
beginequationlabelE
E_0^(1) = BraketPhi
endequation
enddocument
answered 1 hour ago


marmot
73.2k477153
73.2k477153
add a comment |
add a comment |
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f459192%2fequation-brackets%23new-answer', 'question_page');
);
Post as a guest
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
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
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
3
left...right
? P.S. I usually writevecr_1
because of space.– manooooh
1 hour ago
4
Please provide a compilable example. Where does the
expval
command come from?– Phelype Oleinik
1 hour ago
1
Off-topic: One should probably write
vecr_1
instead ofvecr_1
, andvecr_2
instead ofvecr_2
.– Mico
1 hour ago
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
1 hour ago