I want to write these cases of formula, but I don't know how
This is the formula that I want to write, but I don't know how to do it.
two-column cases
add a comment |
This is the formula that I want to write, but I don't know how to do it.
two-column cases
Welcome to TeX.SX. Are you facing problem in putting them in two columns ? If so, it would be better to give a minimal working example of what you have tried so far.
– nidhin
Dec 13 '18 at 18:04
Thanks. yes I have two problem. first how to create two columns and second how to create that case (a) (i) , (ii).
– user611582
Dec 13 '18 at 18:06
minipage
/multicol
can create columns. Andenumerate
can do the numbering.
– nidhin
Dec 13 '18 at 18:13
add a comment |
This is the formula that I want to write, but I don't know how to do it.
two-column cases
This is the formula that I want to write, but I don't know how to do it.
two-column cases
two-column cases
edited Dec 13 '18 at 18:01
nidhin
3,342927
3,342927
asked Dec 13 '18 at 18:00
user611582
132
132
Welcome to TeX.SX. Are you facing problem in putting them in two columns ? If so, it would be better to give a minimal working example of what you have tried so far.
– nidhin
Dec 13 '18 at 18:04
Thanks. yes I have two problem. first how to create two columns and second how to create that case (a) (i) , (ii).
– user611582
Dec 13 '18 at 18:06
minipage
/multicol
can create columns. Andenumerate
can do the numbering.
– nidhin
Dec 13 '18 at 18:13
add a comment |
Welcome to TeX.SX. Are you facing problem in putting them in two columns ? If so, it would be better to give a minimal working example of what you have tried so far.
– nidhin
Dec 13 '18 at 18:04
Thanks. yes I have two problem. first how to create two columns and second how to create that case (a) (i) , (ii).
– user611582
Dec 13 '18 at 18:06
minipage
/multicol
can create columns. Andenumerate
can do the numbering.
– nidhin
Dec 13 '18 at 18:13
Welcome to TeX.SX. Are you facing problem in putting them in two columns ? If so, it would be better to give a minimal working example of what you have tried so far.
– nidhin
Dec 13 '18 at 18:04
Welcome to TeX.SX. Are you facing problem in putting them in two columns ? If so, it would be better to give a minimal working example of what you have tried so far.
– nidhin
Dec 13 '18 at 18:04
Thanks. yes I have two problem. first how to create two columns and second how to create that case (a) (i) , (ii).
– user611582
Dec 13 '18 at 18:06
Thanks. yes I have two problem. first how to create two columns and second how to create that case (a) (i) , (ii).
– user611582
Dec 13 '18 at 18:06
minipage
/multicol
can create columns. And enumerate
can do the numbering.– nidhin
Dec 13 '18 at 18:13
minipage
/multicol
can create columns. And enumerate
can do the numbering.– nidhin
Dec 13 '18 at 18:13
add a comment |
3 Answers
3
active
oldest
votes
Here's a solution that uses the multicol
package and a bespoke enumerate
-like environment called myenum
.
documentclass{article}
usepackage{enumitem}
newlist{myenum}{enumerate}{2}
setlist[myenum,1]{label=(alph*)}
setlist[myenum,2]{label=(roman*)}
usepackage{multicol}
begin{document}
begin{multicols}{2}
begin{myenum}
item $a>0$ and $age b$
begin{myenum}
item $Mage Xa$
item $Ma<Ya$
end{myenum}
item $b>0$ and $bge a$
begin{myenum}
item $Mbge Xb$
item $Mb<Yb$
end{myenum}
end{myenum}
end{multicols}
end{document}
1
That worked. thanks.
– user611582
Dec 15 '18 at 14:50
add a comment |
An array with nested array will do:
documentclass{article}
usepackage{amsmath,mathtools}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
[
renewcommand{arraystretch}{1.2}
begin{array}{
@{}
l % label a
l % condition
@{hspace{6em}}
l % label b
l % condition
@{}
}
text{(a)} & norm{n_2}>0text{ and }norm{n_2}genorm{n_1} &
text{(b)} & norm{n_1}>0text{ and }norm{n_1}genorm{n_2} \
& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_a n_2} ge tilde{kappa}norm{n_2}, \
text{(ii)} & norm{M_a n_2} < tilde{kappa}norm{n_2},
end{array}
&& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_b n_1} ge tilde{kappa}norm{n_1}, \
text{(ii)} & norm{M_b n_1} < tilde{kappa}norm{n_1},
end{array}
end{array}
]
end{document}
add a comment |
Expanding the comment:
documentclass{article}
usepackage{multicol,mathtools,enumitem}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
begin{multicols}{2}
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
columnbreak
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
end{multicols}
end{document}
DeclarePairedDelimiter{norm}{lVert}{rVert}
taken from egreg's answer.
add a comment |
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',
autoActivateHeartbeat: false,
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%2f464744%2fi-want-to-write-these-cases-of-formula-but-i-dont-know-how%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here's a solution that uses the multicol
package and a bespoke enumerate
-like environment called myenum
.
documentclass{article}
usepackage{enumitem}
newlist{myenum}{enumerate}{2}
setlist[myenum,1]{label=(alph*)}
setlist[myenum,2]{label=(roman*)}
usepackage{multicol}
begin{document}
begin{multicols}{2}
begin{myenum}
item $a>0$ and $age b$
begin{myenum}
item $Mage Xa$
item $Ma<Ya$
end{myenum}
item $b>0$ and $bge a$
begin{myenum}
item $Mbge Xb$
item $Mb<Yb$
end{myenum}
end{myenum}
end{multicols}
end{document}
1
That worked. thanks.
– user611582
Dec 15 '18 at 14:50
add a comment |
Here's a solution that uses the multicol
package and a bespoke enumerate
-like environment called myenum
.
documentclass{article}
usepackage{enumitem}
newlist{myenum}{enumerate}{2}
setlist[myenum,1]{label=(alph*)}
setlist[myenum,2]{label=(roman*)}
usepackage{multicol}
begin{document}
begin{multicols}{2}
begin{myenum}
item $a>0$ and $age b$
begin{myenum}
item $Mage Xa$
item $Ma<Ya$
end{myenum}
item $b>0$ and $bge a$
begin{myenum}
item $Mbge Xb$
item $Mb<Yb$
end{myenum}
end{myenum}
end{multicols}
end{document}
1
That worked. thanks.
– user611582
Dec 15 '18 at 14:50
add a comment |
Here's a solution that uses the multicol
package and a bespoke enumerate
-like environment called myenum
.
documentclass{article}
usepackage{enumitem}
newlist{myenum}{enumerate}{2}
setlist[myenum,1]{label=(alph*)}
setlist[myenum,2]{label=(roman*)}
usepackage{multicol}
begin{document}
begin{multicols}{2}
begin{myenum}
item $a>0$ and $age b$
begin{myenum}
item $Mage Xa$
item $Ma<Ya$
end{myenum}
item $b>0$ and $bge a$
begin{myenum}
item $Mbge Xb$
item $Mb<Yb$
end{myenum}
end{myenum}
end{multicols}
end{document}
Here's a solution that uses the multicol
package and a bespoke enumerate
-like environment called myenum
.
documentclass{article}
usepackage{enumitem}
newlist{myenum}{enumerate}{2}
setlist[myenum,1]{label=(alph*)}
setlist[myenum,2]{label=(roman*)}
usepackage{multicol}
begin{document}
begin{multicols}{2}
begin{myenum}
item $a>0$ and $age b$
begin{myenum}
item $Mage Xa$
item $Ma<Ya$
end{myenum}
item $b>0$ and $bge a$
begin{myenum}
item $Mbge Xb$
item $Mb<Yb$
end{myenum}
end{myenum}
end{multicols}
end{document}
answered Dec 13 '18 at 18:31
Mico
274k30370756
274k30370756
1
That worked. thanks.
– user611582
Dec 15 '18 at 14:50
add a comment |
1
That worked. thanks.
– user611582
Dec 15 '18 at 14:50
1
1
That worked. thanks.
– user611582
Dec 15 '18 at 14:50
That worked. thanks.
– user611582
Dec 15 '18 at 14:50
add a comment |
An array with nested array will do:
documentclass{article}
usepackage{amsmath,mathtools}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
[
renewcommand{arraystretch}{1.2}
begin{array}{
@{}
l % label a
l % condition
@{hspace{6em}}
l % label b
l % condition
@{}
}
text{(a)} & norm{n_2}>0text{ and }norm{n_2}genorm{n_1} &
text{(b)} & norm{n_1}>0text{ and }norm{n_1}genorm{n_2} \
& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_a n_2} ge tilde{kappa}norm{n_2}, \
text{(ii)} & norm{M_a n_2} < tilde{kappa}norm{n_2},
end{array}
&& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_b n_1} ge tilde{kappa}norm{n_1}, \
text{(ii)} & norm{M_b n_1} < tilde{kappa}norm{n_1},
end{array}
end{array}
]
end{document}
add a comment |
An array with nested array will do:
documentclass{article}
usepackage{amsmath,mathtools}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
[
renewcommand{arraystretch}{1.2}
begin{array}{
@{}
l % label a
l % condition
@{hspace{6em}}
l % label b
l % condition
@{}
}
text{(a)} & norm{n_2}>0text{ and }norm{n_2}genorm{n_1} &
text{(b)} & norm{n_1}>0text{ and }norm{n_1}genorm{n_2} \
& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_a n_2} ge tilde{kappa}norm{n_2}, \
text{(ii)} & norm{M_a n_2} < tilde{kappa}norm{n_2},
end{array}
&& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_b n_1} ge tilde{kappa}norm{n_1}, \
text{(ii)} & norm{M_b n_1} < tilde{kappa}norm{n_1},
end{array}
end{array}
]
end{document}
add a comment |
An array with nested array will do:
documentclass{article}
usepackage{amsmath,mathtools}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
[
renewcommand{arraystretch}{1.2}
begin{array}{
@{}
l % label a
l % condition
@{hspace{6em}}
l % label b
l % condition
@{}
}
text{(a)} & norm{n_2}>0text{ and }norm{n_2}genorm{n_1} &
text{(b)} & norm{n_1}>0text{ and }norm{n_1}genorm{n_2} \
& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_a n_2} ge tilde{kappa}norm{n_2}, \
text{(ii)} & norm{M_a n_2} < tilde{kappa}norm{n_2},
end{array}
&& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_b n_1} ge tilde{kappa}norm{n_1}, \
text{(ii)} & norm{M_b n_1} < tilde{kappa}norm{n_1},
end{array}
end{array}
]
end{document}
An array with nested array will do:
documentclass{article}
usepackage{amsmath,mathtools}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
[
renewcommand{arraystretch}{1.2}
begin{array}{
@{}
l % label a
l % condition
@{hspace{6em}}
l % label b
l % condition
@{}
}
text{(a)} & norm{n_2}>0text{ and }norm{n_2}genorm{n_1} &
text{(b)} & norm{n_1}>0text{ and }norm{n_1}genorm{n_2} \
& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_a n_2} ge tilde{kappa}norm{n_2}, \
text{(ii)} & norm{M_a n_2} < tilde{kappa}norm{n_2},
end{array}
&& begin{array}[t]{@{}ll@{}}
text{(i)} & norm{M_b n_1} ge tilde{kappa}norm{n_1}, \
text{(ii)} & norm{M_b n_1} < tilde{kappa}norm{n_1},
end{array}
end{array}
]
end{document}
answered Dec 13 '18 at 18:24
egreg
709k8618843167
709k8618843167
add a comment |
add a comment |
Expanding the comment:
documentclass{article}
usepackage{multicol,mathtools,enumitem}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
begin{multicols}{2}
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
columnbreak
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
end{multicols}
end{document}
DeclarePairedDelimiter{norm}{lVert}{rVert}
taken from egreg's answer.
add a comment |
Expanding the comment:
documentclass{article}
usepackage{multicol,mathtools,enumitem}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
begin{multicols}{2}
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
columnbreak
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
end{multicols}
end{document}
DeclarePairedDelimiter{norm}{lVert}{rVert}
taken from egreg's answer.
add a comment |
Expanding the comment:
documentclass{article}
usepackage{multicol,mathtools,enumitem}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
begin{multicols}{2}
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
columnbreak
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
end{multicols}
end{document}
DeclarePairedDelimiter{norm}{lVert}{rVert}
taken from egreg's answer.
Expanding the comment:
documentclass{article}
usepackage{multicol,mathtools,enumitem}
DeclarePairedDelimiter{norm}{lVert}{rVert}
begin{document}
begin{multicols}{2}
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
columnbreak
begin{enumerate}[label=(alph*)]
item $norm a > norm b$ and $norm a > norm b$
item begin{enumerate}[label=(roman*)]
item $norm a > norm b$
item $norm a > norm b$
end{enumerate}
end{enumerate}
end{multicols}
end{document}
DeclarePairedDelimiter{norm}{lVert}{rVert}
taken from egreg's answer.
answered Dec 13 '18 at 18:37
nidhin
3,342927
3,342927
add a comment |
add a comment |
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%2f464744%2fi-want-to-write-these-cases-of-formula-but-i-dont-know-how%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
Welcome to TeX.SX. Are you facing problem in putting them in two columns ? If so, it would be better to give a minimal working example of what you have tried so far.
– nidhin
Dec 13 '18 at 18:04
Thanks. yes I have two problem. first how to create two columns and second how to create that case (a) (i) , (ii).
– user611582
Dec 13 '18 at 18:06
minipage
/multicol
can create columns. Andenumerate
can do the numbering.– nidhin
Dec 13 '18 at 18:13