Cases inside tabular environment with left aligned column
up vote
0
down vote
favorite
I want to have equations in a column of a table, using the amsmath cases option, but where the column is left aligned. The MWE below shows an example of the equations that I need in the column, with the second table showing the layout I am after.
What I found online suggests you need the p{} option in order to include the cases option from amsmath. The array package has been suggested as a way to get the left aligned in the second column, but I cannot get it working as I expected it to.
Appreciate any pointers to what I am doing wrong.
documentclass[a4paper,10pt]{article}
usepackage{amsmath}
usepackage{amssymb}
usepackage{array}
begin{document}
%
begin{table}
begin{tabular}{| c>{raggedrightarraybackslash}p{10cm} |} hline
Option 1 & [M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases} ]\ hline
Option 2 & [ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]left[frac{exp(-0.25 t) - 1}{exp(-0.25 tau) - 1}right] + M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases} ] \ hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
begin{table}
begin{tabular}{| l l |} hline
Option 1 & $x^2 + 3$ \ hline
Option 2 & $sin(x) + text{a much longer equation than the others to show the formatting}$ \ hline
end{tabular}
caption{The layout I want}
label{a 2nd label}
end{table}
end{document}
tables cases
add a comment |
up vote
0
down vote
favorite
I want to have equations in a column of a table, using the amsmath cases option, but where the column is left aligned. The MWE below shows an example of the equations that I need in the column, with the second table showing the layout I am after.
What I found online suggests you need the p{} option in order to include the cases option from amsmath. The array package has been suggested as a way to get the left aligned in the second column, but I cannot get it working as I expected it to.
Appreciate any pointers to what I am doing wrong.
documentclass[a4paper,10pt]{article}
usepackage{amsmath}
usepackage{amssymb}
usepackage{array}
begin{document}
%
begin{table}
begin{tabular}{| c>{raggedrightarraybackslash}p{10cm} |} hline
Option 1 & [M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases} ]\ hline
Option 2 & [ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]left[frac{exp(-0.25 t) - 1}{exp(-0.25 tau) - 1}right] + M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases} ] \ hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
begin{table}
begin{tabular}{| l l |} hline
Option 1 & $x^2 + 3$ \ hline
Option 2 & $sin(x) + text{a much longer equation than the others to show the formatting}$ \ hline
end{tabular}
caption{The layout I want}
label{a 2nd label}
end{table}
end{document}
tables cases
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to have equations in a column of a table, using the amsmath cases option, but where the column is left aligned. The MWE below shows an example of the equations that I need in the column, with the second table showing the layout I am after.
What I found online suggests you need the p{} option in order to include the cases option from amsmath. The array package has been suggested as a way to get the left aligned in the second column, but I cannot get it working as I expected it to.
Appreciate any pointers to what I am doing wrong.
documentclass[a4paper,10pt]{article}
usepackage{amsmath}
usepackage{amssymb}
usepackage{array}
begin{document}
%
begin{table}
begin{tabular}{| c>{raggedrightarraybackslash}p{10cm} |} hline
Option 1 & [M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases} ]\ hline
Option 2 & [ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]left[frac{exp(-0.25 t) - 1}{exp(-0.25 tau) - 1}right] + M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases} ] \ hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
begin{table}
begin{tabular}{| l l |} hline
Option 1 & $x^2 + 3$ \ hline
Option 2 & $sin(x) + text{a much longer equation than the others to show the formatting}$ \ hline
end{tabular}
caption{The layout I want}
label{a 2nd label}
end{table}
end{document}
tables cases
I want to have equations in a column of a table, using the amsmath cases option, but where the column is left aligned. The MWE below shows an example of the equations that I need in the column, with the second table showing the layout I am after.
What I found online suggests you need the p{} option in order to include the cases option from amsmath. The array package has been suggested as a way to get the left aligned in the second column, but I cannot get it working as I expected it to.
Appreciate any pointers to what I am doing wrong.
documentclass[a4paper,10pt]{article}
usepackage{amsmath}
usepackage{amssymb}
usepackage{array}
begin{document}
%
begin{table}
begin{tabular}{| c>{raggedrightarraybackslash}p{10cm} |} hline
Option 1 & [M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases} ]\ hline
Option 2 & [ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]left[frac{exp(-0.25 t) - 1}{exp(-0.25 tau) - 1}right] + M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases} ] \ hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
begin{table}
begin{tabular}{| l l |} hline
Option 1 & $x^2 + 3$ \ hline
Option 2 & $sin(x) + text{a much longer equation than the others to show the formatting}$ \ hline
end{tabular}
caption{The layout I want}
label{a 2nd label}
end{table}
end{document}
tables cases
tables cases
asked 3 hours ago
Esme_
1647
1647
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
like this?
documentclass[a4paper,10pt]{article}
usepackage{amsmath, amssymb}
usepackage{makecell}
begin{document}
begin{table}
centering
setcellgapes{3pt}
makegapedcells
begin{tabular}{| c l|}
hline
Option 1 & $ M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases}$ \
hline
Option 2 & $ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]
left[dfrac{exp(-0.25 t) - 1}
{exp(-0.25 tau) - 1}right]
+ M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases}$ \
hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
end{document}
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
like this?
documentclass[a4paper,10pt]{article}
usepackage{amsmath, amssymb}
usepackage{makecell}
begin{document}
begin{table}
centering
setcellgapes{3pt}
makegapedcells
begin{tabular}{| c l|}
hline
Option 1 & $ M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases}$ \
hline
Option 2 & $ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]
left[dfrac{exp(-0.25 t) - 1}
{exp(-0.25 tau) - 1}right]
+ M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases}$ \
hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
end{document}
add a comment |
up vote
1
down vote
accepted
like this?
documentclass[a4paper,10pt]{article}
usepackage{amsmath, amssymb}
usepackage{makecell}
begin{document}
begin{table}
centering
setcellgapes{3pt}
makegapedcells
begin{tabular}{| c l|}
hline
Option 1 & $ M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases}$ \
hline
Option 2 & $ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]
left[dfrac{exp(-0.25 t) - 1}
{exp(-0.25 tau) - 1}right]
+ M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases}$ \
hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
end{document}
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
like this?
documentclass[a4paper,10pt]{article}
usepackage{amsmath, amssymb}
usepackage{makecell}
begin{document}
begin{table}
centering
setcellgapes{3pt}
makegapedcells
begin{tabular}{| c l|}
hline
Option 1 & $ M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases}$ \
hline
Option 2 & $ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]
left[dfrac{exp(-0.25 t) - 1}
{exp(-0.25 tau) - 1}right]
+ M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases}$ \
hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
end{document}
like this?
documentclass[a4paper,10pt]{article}
usepackage{amsmath, amssymb}
usepackage{makecell}
begin{document}
begin{table}
centering
setcellgapes{3pt}
makegapedcells
begin{tabular}{| c l|}
hline
Option 1 & $ M_f(t) = begin{cases}
M_f(0) & t leq tau \
M_f^dag & t > tau
end{cases}$ \
hline
Option 2 & $ M_f(t) = begin{cases}
left[M_f^dag - M_f(0)right]
left[dfrac{exp(-0.25 t) - 1}
{exp(-0.25 tau) - 1}right]
+ M_f(0) & t leq tau \
M_f^dag & t> tau
end{cases}$ \
hline
end{tabular}
caption{The equations I need}
label{a label}
end{table}
end{document}
answered 3 hours ago
Zarko
117k865155
117k865155
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%2f462501%2fcases-inside-tabular-environment-with-left-aligned-column%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