cases in equation mode











up vote
0
down vote

favorite












I want to write this equation
enter image description here



The curly brace I can't give. I tried this code



 begin{equation}
begin{table}
begin{tabular}{ll}
m_i^2 &=lambdaphi^2_{cl}-mu^2 mathnormal{acting on}
eta^1,....eta^{N-1}\
&=3lambdaphi^2_{cl}-mu^2
tag{11.65}
end{tabular}
end{table}
end{equation}


It's not working. Giving me this, moreover I am creating a beamer slide. It creates a blank page whenever I write this code.



How can I produce the above result? Plus it is not also numbering my equation.



enter image description here










share|improve this question




















  • 2




    You have to use cases environment.
    – Sigur
    yesterday










  • please explain a bit more detail,can u write it up?
    – jowadul kader
    yesterday










  • table is a floating environment. it should never be nested within equation.
    – barbara beeton
    14 hours ago















up vote
0
down vote

favorite












I want to write this equation
enter image description here



The curly brace I can't give. I tried this code



 begin{equation}
begin{table}
begin{tabular}{ll}
m_i^2 &=lambdaphi^2_{cl}-mu^2 mathnormal{acting on}
eta^1,....eta^{N-1}\
&=3lambdaphi^2_{cl}-mu^2
tag{11.65}
end{tabular}
end{table}
end{equation}


It's not working. Giving me this, moreover I am creating a beamer slide. It creates a blank page whenever I write this code.



How can I produce the above result? Plus it is not also numbering my equation.



enter image description here










share|improve this question




















  • 2




    You have to use cases environment.
    – Sigur
    yesterday










  • please explain a bit more detail,can u write it up?
    – jowadul kader
    yesterday










  • table is a floating environment. it should never be nested within equation.
    – barbara beeton
    14 hours ago













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I want to write this equation
enter image description here



The curly brace I can't give. I tried this code



 begin{equation}
begin{table}
begin{tabular}{ll}
m_i^2 &=lambdaphi^2_{cl}-mu^2 mathnormal{acting on}
eta^1,....eta^{N-1}\
&=3lambdaphi^2_{cl}-mu^2
tag{11.65}
end{tabular}
end{table}
end{equation}


It's not working. Giving me this, moreover I am creating a beamer slide. It creates a blank page whenever I write this code.



How can I produce the above result? Plus it is not also numbering my equation.



enter image description here










share|improve this question















I want to write this equation
enter image description here



The curly brace I can't give. I tried this code



 begin{equation}
begin{table}
begin{tabular}{ll}
m_i^2 &=lambdaphi^2_{cl}-mu^2 mathnormal{acting on}
eta^1,....eta^{N-1}\
&=3lambdaphi^2_{cl}-mu^2
tag{11.65}
end{tabular}
end{table}
end{equation}


It's not working. Giving me this, moreover I am creating a beamer slide. It creates a blank page whenever I write this code.



How can I produce the above result? Plus it is not also numbering my equation.



enter image description here







equations cases






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









Sigur

23.3k354135




23.3k354135










asked yesterday









jowadul kader

332




332








  • 2




    You have to use cases environment.
    – Sigur
    yesterday










  • please explain a bit more detail,can u write it up?
    – jowadul kader
    yesterday










  • table is a floating environment. it should never be nested within equation.
    – barbara beeton
    14 hours ago














  • 2




    You have to use cases environment.
    – Sigur
    yesterday










  • please explain a bit more detail,can u write it up?
    – jowadul kader
    yesterday










  • table is a floating environment. it should never be nested within equation.
    – barbara beeton
    14 hours ago








2




2




You have to use cases environment.
– Sigur
yesterday




You have to use cases environment.
– Sigur
yesterday












please explain a bit more detail,can u write it up?
– jowadul kader
yesterday




please explain a bit more detail,can u write it up?
– jowadul kader
yesterday












table is a floating environment. it should never be nested within equation.
– barbara beeton
14 hours ago




table is a floating environment. it should never be nested within equation.
– barbara beeton
14 hours ago










1 Answer
1






active

oldest

votes

















up vote
3
down vote













enter image description here



documentclass[11pt,a4paper]{report}
usepackage{amsmath}
usepackage{lipsum,showframe} % just to example
begin{document}lipsum*[2]
begin{equation}
m_i^2 =
begin{cases}
lambdaphi^2_{cl}-mu^2 & text{acting on $eta^1,dots,eta^{N-1}$;}\
3lambdaphi^2_{cl}-mu^2 & text{acting on $eta^N$.}
end{cases}
tag{11.65}
end{equation}
lipsum*[2]
end{document}





share|improve this answer

















  • 1




    thank you sir.thank you very much.
    – jowadul kader
    yesterday











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
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461119%2fcases-in-equation-mode%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
3
down vote













enter image description here



documentclass[11pt,a4paper]{report}
usepackage{amsmath}
usepackage{lipsum,showframe} % just to example
begin{document}lipsum*[2]
begin{equation}
m_i^2 =
begin{cases}
lambdaphi^2_{cl}-mu^2 & text{acting on $eta^1,dots,eta^{N-1}$;}\
3lambdaphi^2_{cl}-mu^2 & text{acting on $eta^N$.}
end{cases}
tag{11.65}
end{equation}
lipsum*[2]
end{document}





share|improve this answer

















  • 1




    thank you sir.thank you very much.
    – jowadul kader
    yesterday















up vote
3
down vote













enter image description here



documentclass[11pt,a4paper]{report}
usepackage{amsmath}
usepackage{lipsum,showframe} % just to example
begin{document}lipsum*[2]
begin{equation}
m_i^2 =
begin{cases}
lambdaphi^2_{cl}-mu^2 & text{acting on $eta^1,dots,eta^{N-1}$;}\
3lambdaphi^2_{cl}-mu^2 & text{acting on $eta^N$.}
end{cases}
tag{11.65}
end{equation}
lipsum*[2]
end{document}





share|improve this answer

















  • 1




    thank you sir.thank you very much.
    – jowadul kader
    yesterday













up vote
3
down vote










up vote
3
down vote









enter image description here



documentclass[11pt,a4paper]{report}
usepackage{amsmath}
usepackage{lipsum,showframe} % just to example
begin{document}lipsum*[2]
begin{equation}
m_i^2 =
begin{cases}
lambdaphi^2_{cl}-mu^2 & text{acting on $eta^1,dots,eta^{N-1}$;}\
3lambdaphi^2_{cl}-mu^2 & text{acting on $eta^N$.}
end{cases}
tag{11.65}
end{equation}
lipsum*[2]
end{document}





share|improve this answer












enter image description here



documentclass[11pt,a4paper]{report}
usepackage{amsmath}
usepackage{lipsum,showframe} % just to example
begin{document}lipsum*[2]
begin{equation}
m_i^2 =
begin{cases}
lambdaphi^2_{cl}-mu^2 & text{acting on $eta^1,dots,eta^{N-1}$;}\
3lambdaphi^2_{cl}-mu^2 & text{acting on $eta^N$.}
end{cases}
tag{11.65}
end{equation}
lipsum*[2]
end{document}






share|improve this answer












share|improve this answer



share|improve this answer










answered yesterday









Sigur

23.3k354135




23.3k354135








  • 1




    thank you sir.thank you very much.
    – jowadul kader
    yesterday














  • 1




    thank you sir.thank you very much.
    – jowadul kader
    yesterday








1




1




thank you sir.thank you very much.
– jowadul kader
yesterday




thank you sir.thank you very much.
– jowadul kader
yesterday


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461119%2fcases-in-equation-mode%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux