How do I make table cells that span more than one column or row?
up vote
2
down vote
favorite
I tried this code but the border lines are not deleted:
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
& & & $P_{mot}$ & \ hline
$P_{batt}$ & & S & M & H \ hline
& S & S & Z & VS \ hline
SOC & M & M & Z & H \ hline
& H & M & Z & H \ hline
end{tabular}
How do I delete the border of cells?
tables multicolumn
New contributor
add a comment |
up vote
2
down vote
favorite
I tried this code but the border lines are not deleted:
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
& & & $P_{mot}$ & \ hline
$P_{batt}$ & & S & M & H \ hline
& S & S & Z & VS \ hline
SOC & M & M & Z & H \ hline
& H & M & Z & H \ hline
end{tabular}
How do I delete the border of cells?
tables multicolumn
New contributor
4
Why not use a different (better) representation? Something that usesbooktabs
. Something like this?
– Werner
2 days ago
1
You might have a use for tablesgenerator.com to generate your latex tables, I often use this tool.
– Maxim
yesterday
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– Martin Schröder
yesterday
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I tried this code but the border lines are not deleted:
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
& & & $P_{mot}$ & \ hline
$P_{batt}$ & & S & M & H \ hline
& S & S & Z & VS \ hline
SOC & M & M & Z & H \ hline
& H & M & Z & H \ hline
end{tabular}
How do I delete the border of cells?
tables multicolumn
New contributor
I tried this code but the border lines are not deleted:
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
& & & $P_{mot}$ & \ hline
$P_{batt}$ & & S & M & H \ hline
& S & S & Z & VS \ hline
SOC & M & M & Z & H \ hline
& H & M & Z & H \ hline
end{tabular}
How do I delete the border of cells?
tables multicolumn
tables multicolumn
New contributor
New contributor
edited 17 hours ago
New contributor
asked 2 days ago
sreeramp96
145
145
New contributor
New contributor
4
Why not use a different (better) representation? Something that usesbooktabs
. Something like this?
– Werner
2 days ago
1
You might have a use for tablesgenerator.com to generate your latex tables, I often use this tool.
– Maxim
yesterday
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– Martin Schröder
yesterday
add a comment |
4
Why not use a different (better) representation? Something that usesbooktabs
. Something like this?
– Werner
2 days ago
1
You might have a use for tablesgenerator.com to generate your latex tables, I often use this tool.
– Maxim
yesterday
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– Martin Schröder
yesterday
4
4
Why not use a different (better) representation? Something that uses
booktabs
. Something like this?– Werner
2 days ago
Why not use a different (better) representation? Something that uses
booktabs
. Something like this?– Werner
2 days ago
1
1
You might have a use for tablesgenerator.com to generate your latex tables, I often use this tool.
– Maxim
yesterday
You might have a use for tablesgenerator.com to generate your latex tables, I often use this tool.
– Maxim
yesterday
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the required usepackage
's, begin{document}
, and end{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.– Martin Schröder
yesterday
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the required usepackage
's, begin{document}
, and end{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.– Martin Schröder
yesterday
add a comment |
3 Answers
3
active
oldest
votes
up vote
10
down vote
With multirow
and multicolumn
you can reach what you need.
I have also created a new column type for centering the cell contents and redefined arraystretch
to have more vertical space between rows.
However, I would suggest you to get rid of the vertical rules and use booktabs
.
documentclass{article}
usepackage{array}
newcolumntype{C}[1]{>{centeringarraybackslash}p{#1}}
renewcommand{arraystretch}{1.3}
usepackage{multirow}
usepackage{booktabs}
begin{document}
Your table:vspace{10pt}
begin{tabular}{|p{0.6in}|C{0.3in}|C{0.4in}|C{0.4in}|C{0.4in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c|}{$P_{mot}$} \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ hline
& S & S & Z & VS \ cline{2-5}
SOC & M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
vspace{10pt}My suggestion:vspace{10pt}
begin{tabular}{lc*{3}{C{1.5em}}}
toprule
multicolumn{2}{c}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c}{$P_{mot}$} \ cmidrule{3-5}
multicolumn{2}{c}{} & S & M & H \ midrule
& S & S & Z & VS \ cmidrule(l){2-5}
SOC & M & M & Z & H \ cmidrule(l){2-5}
& H & M & Z & H \
bottomrule
end{tabular}
end{document}
Am a beginner in latex, that's why. I don;t know about this booktabs. Anyway thanks for the suggestion, I will look through it.
– sreeramp96
yesterday
add a comment |
up vote
6
down vote
Welcome to TeX.SE! In order to merge rows or columns, you need to use multirow
(which requires the multirow
package) or multicolumn
, respectively. And if you nest them, you need to do it in the right order.
documentclass{article}
usepackage{multirow}
begin{document}
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_mathrm{batt}$}} &
multicolumn{3}{|c|}{$P_mathrm{mot}$ } \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ cline{1-5}
multirow{3}{*}{SOC} & S & S & Z & VS \ cline{2-5}
& M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
end{document}
The initial|
inmulticolumn{3}{|c|}{$P_mathrm{mot}$ }
should be deleted, otherwise it is printed twice.
– CarLaTeX
yesterday
Yeah am not aware of all the methods. Thanks for the solution.
– sreeramp96
yesterday
add a comment |
up vote
6
down vote
Whatever applies to each item in a column should go in the column header. Here's my proposal:
documentclass[twocolumn]{article}
usepackage{array,booktabs}
usepackage{lipsum} % for context
begin{document}
lipsum[2]
begin{table}[htp]
centering
begin{tabular}{ @{} *{4}{w{c}{3em}} @{} }
toprule
$P_{mathrm{batt}}$ & multicolumn{3}{c}{$P_{mathrm{mot}}$} \
cmidrule(r){1-1} cmidrule(l){2-4}
SOC & S & M & H \
midrule
S & S & Z & VS \
M & M & Z & H \
H & M & Z & H \
bottomrule
end{tabular}
caption{Rule based of fuzzy logic control}
end{table}
lipsum
end{document}
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
10
down vote
With multirow
and multicolumn
you can reach what you need.
I have also created a new column type for centering the cell contents and redefined arraystretch
to have more vertical space between rows.
However, I would suggest you to get rid of the vertical rules and use booktabs
.
documentclass{article}
usepackage{array}
newcolumntype{C}[1]{>{centeringarraybackslash}p{#1}}
renewcommand{arraystretch}{1.3}
usepackage{multirow}
usepackage{booktabs}
begin{document}
Your table:vspace{10pt}
begin{tabular}{|p{0.6in}|C{0.3in}|C{0.4in}|C{0.4in}|C{0.4in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c|}{$P_{mot}$} \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ hline
& S & S & Z & VS \ cline{2-5}
SOC & M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
vspace{10pt}My suggestion:vspace{10pt}
begin{tabular}{lc*{3}{C{1.5em}}}
toprule
multicolumn{2}{c}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c}{$P_{mot}$} \ cmidrule{3-5}
multicolumn{2}{c}{} & S & M & H \ midrule
& S & S & Z & VS \ cmidrule(l){2-5}
SOC & M & M & Z & H \ cmidrule(l){2-5}
& H & M & Z & H \
bottomrule
end{tabular}
end{document}
Am a beginner in latex, that's why. I don;t know about this booktabs. Anyway thanks for the suggestion, I will look through it.
– sreeramp96
yesterday
add a comment |
up vote
10
down vote
With multirow
and multicolumn
you can reach what you need.
I have also created a new column type for centering the cell contents and redefined arraystretch
to have more vertical space between rows.
However, I would suggest you to get rid of the vertical rules and use booktabs
.
documentclass{article}
usepackage{array}
newcolumntype{C}[1]{>{centeringarraybackslash}p{#1}}
renewcommand{arraystretch}{1.3}
usepackage{multirow}
usepackage{booktabs}
begin{document}
Your table:vspace{10pt}
begin{tabular}{|p{0.6in}|C{0.3in}|C{0.4in}|C{0.4in}|C{0.4in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c|}{$P_{mot}$} \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ hline
& S & S & Z & VS \ cline{2-5}
SOC & M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
vspace{10pt}My suggestion:vspace{10pt}
begin{tabular}{lc*{3}{C{1.5em}}}
toprule
multicolumn{2}{c}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c}{$P_{mot}$} \ cmidrule{3-5}
multicolumn{2}{c}{} & S & M & H \ midrule
& S & S & Z & VS \ cmidrule(l){2-5}
SOC & M & M & Z & H \ cmidrule(l){2-5}
& H & M & Z & H \
bottomrule
end{tabular}
end{document}
Am a beginner in latex, that's why. I don;t know about this booktabs. Anyway thanks for the suggestion, I will look through it.
– sreeramp96
yesterday
add a comment |
up vote
10
down vote
up vote
10
down vote
With multirow
and multicolumn
you can reach what you need.
I have also created a new column type for centering the cell contents and redefined arraystretch
to have more vertical space between rows.
However, I would suggest you to get rid of the vertical rules and use booktabs
.
documentclass{article}
usepackage{array}
newcolumntype{C}[1]{>{centeringarraybackslash}p{#1}}
renewcommand{arraystretch}{1.3}
usepackage{multirow}
usepackage{booktabs}
begin{document}
Your table:vspace{10pt}
begin{tabular}{|p{0.6in}|C{0.3in}|C{0.4in}|C{0.4in}|C{0.4in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c|}{$P_{mot}$} \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ hline
& S & S & Z & VS \ cline{2-5}
SOC & M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
vspace{10pt}My suggestion:vspace{10pt}
begin{tabular}{lc*{3}{C{1.5em}}}
toprule
multicolumn{2}{c}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c}{$P_{mot}$} \ cmidrule{3-5}
multicolumn{2}{c}{} & S & M & H \ midrule
& S & S & Z & VS \ cmidrule(l){2-5}
SOC & M & M & Z & H \ cmidrule(l){2-5}
& H & M & Z & H \
bottomrule
end{tabular}
end{document}
With multirow
and multicolumn
you can reach what you need.
I have also created a new column type for centering the cell contents and redefined arraystretch
to have more vertical space between rows.
However, I would suggest you to get rid of the vertical rules and use booktabs
.
documentclass{article}
usepackage{array}
newcolumntype{C}[1]{>{centeringarraybackslash}p{#1}}
renewcommand{arraystretch}{1.3}
usepackage{multirow}
usepackage{booktabs}
begin{document}
Your table:vspace{10pt}
begin{tabular}{|p{0.6in}|C{0.3in}|C{0.4in}|C{0.4in}|C{0.4in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c|}{$P_{mot}$} \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ hline
& S & S & Z & VS \ cline{2-5}
SOC & M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
vspace{10pt}My suggestion:vspace{10pt}
begin{tabular}{lc*{3}{C{1.5em}}}
toprule
multicolumn{2}{c}{multirow{2}{*}{$P_{batt}$}}& multicolumn{3}{c}{$P_{mot}$} \ cmidrule{3-5}
multicolumn{2}{c}{} & S & M & H \ midrule
& S & S & Z & VS \ cmidrule(l){2-5}
SOC & M & M & Z & H \ cmidrule(l){2-5}
& H & M & Z & H \
bottomrule
end{tabular}
end{document}
edited 2 days ago
answered 2 days ago
CarLaTeX
27.5k445120
27.5k445120
Am a beginner in latex, that's why. I don;t know about this booktabs. Anyway thanks for the suggestion, I will look through it.
– sreeramp96
yesterday
add a comment |
Am a beginner in latex, that's why. I don;t know about this booktabs. Anyway thanks for the suggestion, I will look through it.
– sreeramp96
yesterday
Am a beginner in latex, that's why. I don;t know about this booktabs. Anyway thanks for the suggestion, I will look through it.
– sreeramp96
yesterday
Am a beginner in latex, that's why. I don;t know about this booktabs. Anyway thanks for the suggestion, I will look through it.
– sreeramp96
yesterday
add a comment |
up vote
6
down vote
Welcome to TeX.SE! In order to merge rows or columns, you need to use multirow
(which requires the multirow
package) or multicolumn
, respectively. And if you nest them, you need to do it in the right order.
documentclass{article}
usepackage{multirow}
begin{document}
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_mathrm{batt}$}} &
multicolumn{3}{|c|}{$P_mathrm{mot}$ } \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ cline{1-5}
multirow{3}{*}{SOC} & S & S & Z & VS \ cline{2-5}
& M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
end{document}
The initial|
inmulticolumn{3}{|c|}{$P_mathrm{mot}$ }
should be deleted, otherwise it is printed twice.
– CarLaTeX
yesterday
Yeah am not aware of all the methods. Thanks for the solution.
– sreeramp96
yesterday
add a comment |
up vote
6
down vote
Welcome to TeX.SE! In order to merge rows or columns, you need to use multirow
(which requires the multirow
package) or multicolumn
, respectively. And if you nest them, you need to do it in the right order.
documentclass{article}
usepackage{multirow}
begin{document}
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_mathrm{batt}$}} &
multicolumn{3}{|c|}{$P_mathrm{mot}$ } \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ cline{1-5}
multirow{3}{*}{SOC} & S & S & Z & VS \ cline{2-5}
& M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
end{document}
The initial|
inmulticolumn{3}{|c|}{$P_mathrm{mot}$ }
should be deleted, otherwise it is printed twice.
– CarLaTeX
yesterday
Yeah am not aware of all the methods. Thanks for the solution.
– sreeramp96
yesterday
add a comment |
up vote
6
down vote
up vote
6
down vote
Welcome to TeX.SE! In order to merge rows or columns, you need to use multirow
(which requires the multirow
package) or multicolumn
, respectively. And if you nest them, you need to do it in the right order.
documentclass{article}
usepackage{multirow}
begin{document}
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_mathrm{batt}$}} &
multicolumn{3}{|c|}{$P_mathrm{mot}$ } \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ cline{1-5}
multirow{3}{*}{SOC} & S & S & Z & VS \ cline{2-5}
& M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
end{document}
Welcome to TeX.SE! In order to merge rows or columns, you need to use multirow
(which requires the multirow
package) or multicolumn
, respectively. And if you nest them, you need to do it in the right order.
documentclass{article}
usepackage{multirow}
begin{document}
begin{tabular}{|p{0.6in}|p{0.3in}|p{0.9in}|p{0.9in}|p{0.8in}|} hline
multicolumn{2}{|c|}{multirow{2}{*}{$P_mathrm{batt}$}} &
multicolumn{3}{|c|}{$P_mathrm{mot}$ } \ cline{3-5}
multicolumn{2}{|c|}{} & S & M & H \ cline{1-5}
multirow{3}{*}{SOC} & S & S & Z & VS \ cline{2-5}
& M & M & Z & H \ cline{2-5}
& H & M & Z & H \ hline
end{tabular}
end{document}
edited 2 days ago
answered 2 days ago
marmot
76.9k487161
76.9k487161
The initial|
inmulticolumn{3}{|c|}{$P_mathrm{mot}$ }
should be deleted, otherwise it is printed twice.
– CarLaTeX
yesterday
Yeah am not aware of all the methods. Thanks for the solution.
– sreeramp96
yesterday
add a comment |
The initial|
inmulticolumn{3}{|c|}{$P_mathrm{mot}$ }
should be deleted, otherwise it is printed twice.
– CarLaTeX
yesterday
Yeah am not aware of all the methods. Thanks for the solution.
– sreeramp96
yesterday
The initial
|
in multicolumn{3}{|c|}{$P_mathrm{mot}$ }
should be deleted, otherwise it is printed twice.– CarLaTeX
yesterday
The initial
|
in multicolumn{3}{|c|}{$P_mathrm{mot}$ }
should be deleted, otherwise it is printed twice.– CarLaTeX
yesterday
Yeah am not aware of all the methods. Thanks for the solution.
– sreeramp96
yesterday
Yeah am not aware of all the methods. Thanks for the solution.
– sreeramp96
yesterday
add a comment |
up vote
6
down vote
Whatever applies to each item in a column should go in the column header. Here's my proposal:
documentclass[twocolumn]{article}
usepackage{array,booktabs}
usepackage{lipsum} % for context
begin{document}
lipsum[2]
begin{table}[htp]
centering
begin{tabular}{ @{} *{4}{w{c}{3em}} @{} }
toprule
$P_{mathrm{batt}}$ & multicolumn{3}{c}{$P_{mathrm{mot}}$} \
cmidrule(r){1-1} cmidrule(l){2-4}
SOC & S & M & H \
midrule
S & S & Z & VS \
M & M & Z & H \
H & M & Z & H \
bottomrule
end{tabular}
caption{Rule based of fuzzy logic control}
end{table}
lipsum
end{document}
add a comment |
up vote
6
down vote
Whatever applies to each item in a column should go in the column header. Here's my proposal:
documentclass[twocolumn]{article}
usepackage{array,booktabs}
usepackage{lipsum} % for context
begin{document}
lipsum[2]
begin{table}[htp]
centering
begin{tabular}{ @{} *{4}{w{c}{3em}} @{} }
toprule
$P_{mathrm{batt}}$ & multicolumn{3}{c}{$P_{mathrm{mot}}$} \
cmidrule(r){1-1} cmidrule(l){2-4}
SOC & S & M & H \
midrule
S & S & Z & VS \
M & M & Z & H \
H & M & Z & H \
bottomrule
end{tabular}
caption{Rule based of fuzzy logic control}
end{table}
lipsum
end{document}
add a comment |
up vote
6
down vote
up vote
6
down vote
Whatever applies to each item in a column should go in the column header. Here's my proposal:
documentclass[twocolumn]{article}
usepackage{array,booktabs}
usepackage{lipsum} % for context
begin{document}
lipsum[2]
begin{table}[htp]
centering
begin{tabular}{ @{} *{4}{w{c}{3em}} @{} }
toprule
$P_{mathrm{batt}}$ & multicolumn{3}{c}{$P_{mathrm{mot}}$} \
cmidrule(r){1-1} cmidrule(l){2-4}
SOC & S & M & H \
midrule
S & S & Z & VS \
M & M & Z & H \
H & M & Z & H \
bottomrule
end{tabular}
caption{Rule based of fuzzy logic control}
end{table}
lipsum
end{document}
Whatever applies to each item in a column should go in the column header. Here's my proposal:
documentclass[twocolumn]{article}
usepackage{array,booktabs}
usepackage{lipsum} % for context
begin{document}
lipsum[2]
begin{table}[htp]
centering
begin{tabular}{ @{} *{4}{w{c}{3em}} @{} }
toprule
$P_{mathrm{batt}}$ & multicolumn{3}{c}{$P_{mathrm{mot}}$} \
cmidrule(r){1-1} cmidrule(l){2-4}
SOC & S & M & H \
midrule
S & S & Z & VS \
M & M & Z & H \
H & M & Z & H \
bottomrule
end{tabular}
caption{Rule based of fuzzy logic control}
end{table}
lipsum
end{document}
answered yesterday
egreg
698k8518573126
698k8518573126
add a comment |
add a comment |
sreeramp96 is a new contributor. Be nice, and check out our Code of Conduct.
sreeramp96 is a new contributor. Be nice, and check out our Code of Conduct.
sreeramp96 is a new contributor. Be nice, and check out our Code of Conduct.
sreeramp96 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f460878%2fhow-do-i-make-table-cells-that-span-more-than-one-column-or-row%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
4
Why not use a different (better) representation? Something that uses
booktabs
. Something like this?– Werner
2 days ago
1
You might have a use for tablesgenerator.com to generate your latex tables, I often use this tool.
– Maxim
yesterday
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.– Martin Schröder
yesterday