Equation - brackets
up vote
6
down vote
favorite
How can I improve brakets in this equation please?
begin{equation}label{E}
E_0^{(1)} = expval{frac{e'^2}{|vec{r_1}-vec{r_2}|}}{Phi}
end{equation}

EDIT:
And please, what is wrong here? I think that in the end should be {Phi }, but it is mistake by compilation.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sumlimits_{l=0}^{infty} sumlimits_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l Phi }\
end{equation}
end{document}
equations
add a comment |
up vote
6
down vote
favorite
How can I improve brakets in this equation please?
begin{equation}label{E}
E_0^{(1)} = expval{frac{e'^2}{|vec{r_1}-vec{r_2}|}}{Phi}
end{equation}

EDIT:
And please, what is wrong here? I think that in the end should be {Phi }, but it is mistake by compilation.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sumlimits_{l=0}^{infty} sumlimits_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l Phi }\
end{equation}
end{document}
equations
3
left...right? P.S. I usually writevec{r}_1because of space.
– manooooh
yesterday
4
Please provide a compilable example. Where does theexpvalcommand come from?
– Phelype Oleinik
yesterday
1
Off-topic: One should probably writevec{r}_1instead ofvec{r_1}, andvec{r}_2instead ofvec{r_2}.
– Mico
yesterday
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
yesterday
add a comment |
up vote
6
down vote
favorite
up vote
6
down vote
favorite
How can I improve brakets in this equation please?
begin{equation}label{E}
E_0^{(1)} = expval{frac{e'^2}{|vec{r_1}-vec{r_2}|}}{Phi}
end{equation}

EDIT:
And please, what is wrong here? I think that in the end should be {Phi }, but it is mistake by compilation.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sumlimits_{l=0}^{infty} sumlimits_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l Phi }\
end{equation}
end{document}
equations
How can I improve brakets in this equation please?
begin{equation}label{E}
E_0^{(1)} = expval{frac{e'^2}{|vec{r_1}-vec{r_2}|}}{Phi}
end{equation}

EDIT:
And please, what is wrong here? I think that in the end should be {Phi }, but it is mistake by compilation.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sumlimits_{l=0}^{infty} sumlimits_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l Phi }\
end{equation}
end{document}
equations
equations
edited yesterday
asked yesterday
Elisabeth
1055
1055
3
left...right? P.S. I usually writevec{r}_1because of space.
– manooooh
yesterday
4
Please provide a compilable example. Where does theexpvalcommand come from?
– Phelype Oleinik
yesterday
1
Off-topic: One should probably writevec{r}_1instead ofvec{r_1}, andvec{r}_2instead ofvec{r_2}.
– Mico
yesterday
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
yesterday
add a comment |
3
left...right? P.S. I usually writevec{r}_1because of space.
– manooooh
yesterday
4
Please provide a compilable example. Where does theexpvalcommand come from?
– Phelype Oleinik
yesterday
1
Off-topic: One should probably writevec{r}_1instead ofvec{r_1}, andvec{r}_2instead ofvec{r_2}.
– Mico
yesterday
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
yesterday
3
3
left...right? P.S. I usually write vec{r}_1 because of space.– manooooh
yesterday
left...right? P.S. I usually write vec{r}_1 because of space.– manooooh
yesterday
4
4
Please provide a compilable example. Where does the
expval command come from?– Phelype Oleinik
yesterday
Please provide a compilable example. Where does the
expval command come from?– Phelype Oleinik
yesterday
1
1
Off-topic: One should probably write
vec{r}_1 instead of vec{r_1}, and vec{r}_2 instead of vec{r_2}.– Mico
yesterday
Off-topic: One should probably write
vec{r}_1 instead of vec{r_1}, and vec{r}_2 instead of vec{r_2}.– Mico
yesterday
1
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
yesterday
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
yesterday
add a comment |
2 Answers
2
active
oldest
votes
up vote
8
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**{stuff}{Phi}.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = expval**{frac{e'^2}{|vec{r}_1-vec{r}_2|}}{Phi}
end{equation}
begin{equation}label{E2}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sum_{l=0}^infty sum_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l}{Phi}
end{equation}
end{document}
Please, can I have one more question - I editted my origin question.
– Elisabeth
yesterday
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
yesterday
You should definitely remove the double-backslash stuff at the end of theequationenvironments. Also, thelimitsdirectives are redundant; all they do is create code clutter.
– Mico
yesterday
Ok, I am sorry and thank you very much.
– Elisabeth
yesterday
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
yesterday
add a comment |
up vote
7
down vote
I do not know where expval comes from but with braket you could do
documentclass{article}
usepackage{amsmath}
usepackage{braket}
begin{document}
begin{equation}label{E}
E_0^{(1)} = Braket{Phi | frac{e'^2}{left|vec r_1 - vec r_2right|} | Phi}
end{equation}
end{document}

add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
8
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**{stuff}{Phi}.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = expval**{frac{e'^2}{|vec{r}_1-vec{r}_2|}}{Phi}
end{equation}
begin{equation}label{E2}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sum_{l=0}^infty sum_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l}{Phi}
end{equation}
end{document}
Please, can I have one more question - I editted my origin question.
– Elisabeth
yesterday
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
yesterday
You should definitely remove the double-backslash stuff at the end of theequationenvironments. Also, thelimitsdirectives are redundant; all they do is create code clutter.
– Mico
yesterday
Ok, I am sorry and thank you very much.
– Elisabeth
yesterday
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
yesterday
add a comment |
up vote
8
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**{stuff}{Phi}.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = expval**{frac{e'^2}{|vec{r}_1-vec{r}_2|}}{Phi}
end{equation}
begin{equation}label{E2}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sum_{l=0}^infty sum_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l}{Phi}
end{equation}
end{document}
Please, can I have one more question - I editted my origin question.
– Elisabeth
yesterday
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
yesterday
You should definitely remove the double-backslash stuff at the end of theequationenvironments. Also, thelimitsdirectives are redundant; all they do is create code clutter.
– Mico
yesterday
Ok, I am sorry and thank you very much.
– Elisabeth
yesterday
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
yesterday
add a comment |
up vote
8
down vote
accepted
up vote
8
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**{stuff}{Phi}.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = expval**{frac{e'^2}{|vec{r}_1-vec{r}_2|}}{Phi}
end{equation}
begin{equation}label{E2}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sum_{l=0}^infty sum_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l}{Phi}
end{equation}
end{document}
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**{stuff}{Phi}.
documentclass{article}
usepackage{physics}
begin{document}
begin{equation}label{E}
E_0^{(1)} = expval**{frac{e'^2}{|vec{r}_1-vec{r}_2|}}{Phi}
end{equation}
begin{equation}label{E2}
E_0^{(1)} = 4 pi e'^2 expval**{frac{1}{|vec{r}_2|} sum_{l=0}^infty sum_{m=-l}^l left(frac{|vec{x}^{(1)}|}{|vec{x}^{(2)}|} right)^l}{Phi}
end{equation}
end{document}
edited yesterday
answered yesterday
Phelype Oleinik
20k54277
20k54277
Please, can I have one more question - I editted my origin question.
– Elisabeth
yesterday
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
yesterday
You should definitely remove the double-backslash stuff at the end of theequationenvironments. Also, thelimitsdirectives are redundant; all they do is create code clutter.
– Mico
yesterday
Ok, I am sorry and thank you very much.
– Elisabeth
yesterday
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
yesterday
add a comment |
Please, can I have one more question - I editted my origin question.
– Elisabeth
yesterday
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
yesterday
You should definitely remove the double-backslash stuff at the end of theequationenvironments. Also, thelimitsdirectives are redundant; all they do is create code clutter.
– Mico
yesterday
Ok, I am sorry and thank you very much.
– Elisabeth
yesterday
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
yesterday
Please, can I have one more question - I editted my origin question.
– Elisabeth
yesterday
Please, can I have one more question - I editted my origin question.
– Elisabeth
yesterday
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
yesterday
@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
yesterday
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
yesterday
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
yesterday
Ok, I am sorry and thank you very much.
– Elisabeth
yesterday
Ok, I am sorry and thank you very much.
– Elisabeth
yesterday
1
1
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
yesterday
@Mico Oops, I forgot those there. Thanks for pointing it out :-)
– Phelype Oleinik
yesterday
add a comment |
up vote
7
down vote
I do not know where expval comes from but with braket you could do
documentclass{article}
usepackage{amsmath}
usepackage{braket}
begin{document}
begin{equation}label{E}
E_0^{(1)} = Braket{Phi | frac{e'^2}{left|vec r_1 - vec r_2right|} | Phi}
end{equation}
end{document}

add a comment |
up vote
7
down vote
I do not know where expval comes from but with braket you could do
documentclass{article}
usepackage{amsmath}
usepackage{braket}
begin{document}
begin{equation}label{E}
E_0^{(1)} = Braket{Phi | frac{e'^2}{left|vec r_1 - vec r_2right|} | Phi}
end{equation}
end{document}

add a comment |
up vote
7
down vote
up vote
7
down vote
I do not know where expval comes from but with braket you could do
documentclass{article}
usepackage{amsmath}
usepackage{braket}
begin{document}
begin{equation}label{E}
E_0^{(1)} = Braket{Phi | frac{e'^2}{left|vec r_1 - vec r_2right|} | Phi}
end{equation}
end{document}

I do not know where expval comes from but with braket you could do
documentclass{article}
usepackage{amsmath}
usepackage{braket}
begin{document}
begin{equation}label{E}
E_0^{(1)} = Braket{Phi | frac{e'^2}{left|vec r_1 - vec r_2right|} | Phi}
end{equation}
end{document}

answered yesterday
marmot
73.6k479154
73.6k479154
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 writevec{r}_1because of space.– manooooh
yesterday
4
Please provide a compilable example. Where does the
expvalcommand come from?– Phelype Oleinik
yesterday
1
Off-topic: One should probably write
vec{r}_1instead ofvec{r_1}, andvec{r}_2instead ofvec{r_2}.– Mico
yesterday
1
Instead of editing an existing query to pose what's essentially a new question, you should post a new query.
– Mico
yesterday