How to reduce space between two columns
I have the table shown below. Due to the fact that the titles in Rown#2 are long, the numbers and their percentages become so distant from each other and made the table unreadable.
Q: How to reduced the space between the columns which contains numbers and percentage so the distance becomes reasonable and the number and its percentage become close to each other.
I have a shorter titles in another table and the problem did not arise and it looks good to me. I would like my big table above to look like this in terms of columns spaces between the number and its percentage.
Note that I need to separate the number from its percentage because of alignment issue that could not be solved otherwise.
Here is the sample script:
documentclass[10pt]{llncs}
usepackage{graphicx}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{array, makecell}
usepackage{adjustbox}
begin{document}
title{Test}
maketitle
begin{table}[!tp]
centering
caption{Table}
begin{tabular}{lrrrrrr}
toprule
& multicolumn{6}{c}{thead{Title}} \
cline{2-7}
& multicolumn{2}{r}{texttt{Col#1 title starts here}} & multicolumn{2}{r}{texttt{Col#2 title starts here}} & multicolumn{2}{r}{texttt{Col#3 title starts here}} \
midrule
Title #1
& multicolumn{2}{r}{num{44444}} & multicolumn{2}{r}{num{222222}} & multicolumn{2}{r}{num{1111111}} \
midrule
quad Title#2 is Here
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%) \
midrule
quad quad Title#3 is Here (brackets)
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%)\
quad quad quad Title #4 is Here
& num{33333}&(77.77%) & num{666666}&(22.22%) & num{1111111}&(111%) \
quad quad quad quad % Title#4 is Here
& num{77}&(2.22%) & num{361}&(0.59%) & num{444444}&(33.33%) \
bottomrule
end{tabular}
vspace{-10pt}
end{table}
end{document}
tables horizontal-alignment vertical-alignment multicolumn alignment
add a comment |
I have the table shown below. Due to the fact that the titles in Rown#2 are long, the numbers and their percentages become so distant from each other and made the table unreadable.
Q: How to reduced the space between the columns which contains numbers and percentage so the distance becomes reasonable and the number and its percentage become close to each other.
I have a shorter titles in another table and the problem did not arise and it looks good to me. I would like my big table above to look like this in terms of columns spaces between the number and its percentage.
Note that I need to separate the number from its percentage because of alignment issue that could not be solved otherwise.
Here is the sample script:
documentclass[10pt]{llncs}
usepackage{graphicx}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{array, makecell}
usepackage{adjustbox}
begin{document}
title{Test}
maketitle
begin{table}[!tp]
centering
caption{Table}
begin{tabular}{lrrrrrr}
toprule
& multicolumn{6}{c}{thead{Title}} \
cline{2-7}
& multicolumn{2}{r}{texttt{Col#1 title starts here}} & multicolumn{2}{r}{texttt{Col#2 title starts here}} & multicolumn{2}{r}{texttt{Col#3 title starts here}} \
midrule
Title #1
& multicolumn{2}{r}{num{44444}} & multicolumn{2}{r}{num{222222}} & multicolumn{2}{r}{num{1111111}} \
midrule
quad Title#2 is Here
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%) \
midrule
quad quad Title#3 is Here (brackets)
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%)\
quad quad quad Title #4 is Here
& num{33333}&(77.77%) & num{666666}&(22.22%) & num{1111111}&(111%) \
quad quad quad quad % Title#4 is Here
& num{77}&(2.22%) & num{361}&(0.59%) & num{444444}&(33.33%) \
bottomrule
end{tabular}
vspace{-10pt}
end{table}
end{document}
tables horizontal-alignment vertical-alignment multicolumn alignment
Would splitting the long column header into two rows be an option for you? See: i.stack.imgur.com/8pOaN.png Alternatively, you could also add a dummy column and leave the header in one line: i.stack.imgur.com/i80Wp.png
– leandriis
Feb 23 at 11:34
The tricky bit is figuring how wide to make the p{} in multicolumn.
– John Kormylo
Feb 23 at 15:45
add a comment |
I have the table shown below. Due to the fact that the titles in Rown#2 are long, the numbers and their percentages become so distant from each other and made the table unreadable.
Q: How to reduced the space between the columns which contains numbers and percentage so the distance becomes reasonable and the number and its percentage become close to each other.
I have a shorter titles in another table and the problem did not arise and it looks good to me. I would like my big table above to look like this in terms of columns spaces between the number and its percentage.
Note that I need to separate the number from its percentage because of alignment issue that could not be solved otherwise.
Here is the sample script:
documentclass[10pt]{llncs}
usepackage{graphicx}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{array, makecell}
usepackage{adjustbox}
begin{document}
title{Test}
maketitle
begin{table}[!tp]
centering
caption{Table}
begin{tabular}{lrrrrrr}
toprule
& multicolumn{6}{c}{thead{Title}} \
cline{2-7}
& multicolumn{2}{r}{texttt{Col#1 title starts here}} & multicolumn{2}{r}{texttt{Col#2 title starts here}} & multicolumn{2}{r}{texttt{Col#3 title starts here}} \
midrule
Title #1
& multicolumn{2}{r}{num{44444}} & multicolumn{2}{r}{num{222222}} & multicolumn{2}{r}{num{1111111}} \
midrule
quad Title#2 is Here
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%) \
midrule
quad quad Title#3 is Here (brackets)
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%)\
quad quad quad Title #4 is Here
& num{33333}&(77.77%) & num{666666}&(22.22%) & num{1111111}&(111%) \
quad quad quad quad % Title#4 is Here
& num{77}&(2.22%) & num{361}&(0.59%) & num{444444}&(33.33%) \
bottomrule
end{tabular}
vspace{-10pt}
end{table}
end{document}
tables horizontal-alignment vertical-alignment multicolumn alignment
I have the table shown below. Due to the fact that the titles in Rown#2 are long, the numbers and their percentages become so distant from each other and made the table unreadable.
Q: How to reduced the space between the columns which contains numbers and percentage so the distance becomes reasonable and the number and its percentage become close to each other.
I have a shorter titles in another table and the problem did not arise and it looks good to me. I would like my big table above to look like this in terms of columns spaces between the number and its percentage.
Note that I need to separate the number from its percentage because of alignment issue that could not be solved otherwise.
Here is the sample script:
documentclass[10pt]{llncs}
usepackage{graphicx}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{array, makecell}
usepackage{adjustbox}
begin{document}
title{Test}
maketitle
begin{table}[!tp]
centering
caption{Table}
begin{tabular}{lrrrrrr}
toprule
& multicolumn{6}{c}{thead{Title}} \
cline{2-7}
& multicolumn{2}{r}{texttt{Col#1 title starts here}} & multicolumn{2}{r}{texttt{Col#2 title starts here}} & multicolumn{2}{r}{texttt{Col#3 title starts here}} \
midrule
Title #1
& multicolumn{2}{r}{num{44444}} & multicolumn{2}{r}{num{222222}} & multicolumn{2}{r}{num{1111111}} \
midrule
quad Title#2 is Here
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%) \
midrule
quad quad Title#3 is Here (brackets)
& num{44444}&(99.99%) & num{222222}&(99.99%) & num{1111111}&(99.99%)\
quad quad quad Title #4 is Here
& num{33333}&(77.77%) & num{666666}&(22.22%) & num{1111111}&(111%) \
quad quad quad quad % Title#4 is Here
& num{77}&(2.22%) & num{361}&(0.59%) & num{444444}&(33.33%) \
bottomrule
end{tabular}
vspace{-10pt}
end{table}
end{document}
tables horizontal-alignment vertical-alignment multicolumn alignment
tables horizontal-alignment vertical-alignment multicolumn alignment
edited Feb 23 at 10:58
user9371654
asked Feb 23 at 10:46
user9371654user9371654
2055
2055
Would splitting the long column header into two rows be an option for you? See: i.stack.imgur.com/8pOaN.png Alternatively, you could also add a dummy column and leave the header in one line: i.stack.imgur.com/i80Wp.png
– leandriis
Feb 23 at 11:34
The tricky bit is figuring how wide to make the p{} in multicolumn.
– John Kormylo
Feb 23 at 15:45
add a comment |
Would splitting the long column header into two rows be an option for you? See: i.stack.imgur.com/8pOaN.png Alternatively, you could also add a dummy column and leave the header in one line: i.stack.imgur.com/i80Wp.png
– leandriis
Feb 23 at 11:34
The tricky bit is figuring how wide to make the p{} in multicolumn.
– John Kormylo
Feb 23 at 15:45
Would splitting the long column header into two rows be an option for you? See: i.stack.imgur.com/8pOaN.png Alternatively, you could also add a dummy column and leave the header in one line: i.stack.imgur.com/i80Wp.png
– leandriis
Feb 23 at 11:34
Would splitting the long column header into two rows be an option for you? See: i.stack.imgur.com/8pOaN.png Alternatively, you could also add a dummy column and leave the header in one line: i.stack.imgur.com/i80Wp.png
– leandriis
Feb 23 at 11:34
The tricky bit is figuring how wide to make the p{} in multicolumn.
– John Kormylo
Feb 23 at 15:45
The tricky bit is figuring how wide to make the p{} in multicolumn.
– John Kormylo
Feb 23 at 15:45
add a comment |
1 Answer
1
active
oldest
votes
You need to allow line breaks. One way to do so is to employ a tabularx
environment.
documentclass[10pt]{llncs}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{tabularx, ragged2e, makecell}
newcolumntype{R}{>{RaggedLeftarraybackslash}X}
newcolumntype{C}{>{Centeringarraybackslash}X}
newcommandmyhsize{dimexpr2hsize+2tabcolseprelax}
begin{document}
begin{table}[!th]
setlengthtabcolsep{2pt} % default: 6pt
caption{Table}
begin{tabularx}{textwidth}{@{} l *{6}{R} @{}}
toprule
& multicolumn{6}{c@{}}{Title} \
cmidrule(l){2-7}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#1 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#2 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C@{}}{texttt{Col#3 title starts here}}\
midrule
Title #1
& multicolumn{2}{r}{num{44444}}
& multicolumn{2}{r}{num{222222}}
& multicolumn{2}{r@{}}{num{1111111}} \
midrule
quad Title#2 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%) \
midrule
qquad Title#3 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%)\
qquadquad Title #4 here
& num{33333} & (77.77%)
& num{666666} & (22.22%)
& num{1111111} & (111%)\
qquadqquad Title#5 here
& num{77} & (2.22%)
& num{361} & (0.59%)
& num{444444} & (33.33%)\
bottomrule
end{tabularx}
end{table}
end{document}
I see you made the first column just wide enough to make the other columns look minimal.
– John Kormylo
Feb 23 at 15:39
@JohnKormylo - Yeah, that's pretty much what I did. :-) Since the OP's real table will presumably not feature the numbers 44444, 222222, 1111111, etc, I didn't think it made much sense coming up with a more refined solution for these sample numbers.
– Mico
Feb 23 at 16:33
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%2f476306%2fhow-to-reduce-space-between-two-columns%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
You need to allow line breaks. One way to do so is to employ a tabularx
environment.
documentclass[10pt]{llncs}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{tabularx, ragged2e, makecell}
newcolumntype{R}{>{RaggedLeftarraybackslash}X}
newcolumntype{C}{>{Centeringarraybackslash}X}
newcommandmyhsize{dimexpr2hsize+2tabcolseprelax}
begin{document}
begin{table}[!th]
setlengthtabcolsep{2pt} % default: 6pt
caption{Table}
begin{tabularx}{textwidth}{@{} l *{6}{R} @{}}
toprule
& multicolumn{6}{c@{}}{Title} \
cmidrule(l){2-7}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#1 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#2 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C@{}}{texttt{Col#3 title starts here}}\
midrule
Title #1
& multicolumn{2}{r}{num{44444}}
& multicolumn{2}{r}{num{222222}}
& multicolumn{2}{r@{}}{num{1111111}} \
midrule
quad Title#2 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%) \
midrule
qquad Title#3 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%)\
qquadquad Title #4 here
& num{33333} & (77.77%)
& num{666666} & (22.22%)
& num{1111111} & (111%)\
qquadqquad Title#5 here
& num{77} & (2.22%)
& num{361} & (0.59%)
& num{444444} & (33.33%)\
bottomrule
end{tabularx}
end{table}
end{document}
I see you made the first column just wide enough to make the other columns look minimal.
– John Kormylo
Feb 23 at 15:39
@JohnKormylo - Yeah, that's pretty much what I did. :-) Since the OP's real table will presumably not feature the numbers 44444, 222222, 1111111, etc, I didn't think it made much sense coming up with a more refined solution for these sample numbers.
– Mico
Feb 23 at 16:33
add a comment |
You need to allow line breaks. One way to do so is to employ a tabularx
environment.
documentclass[10pt]{llncs}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{tabularx, ragged2e, makecell}
newcolumntype{R}{>{RaggedLeftarraybackslash}X}
newcolumntype{C}{>{Centeringarraybackslash}X}
newcommandmyhsize{dimexpr2hsize+2tabcolseprelax}
begin{document}
begin{table}[!th]
setlengthtabcolsep{2pt} % default: 6pt
caption{Table}
begin{tabularx}{textwidth}{@{} l *{6}{R} @{}}
toprule
& multicolumn{6}{c@{}}{Title} \
cmidrule(l){2-7}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#1 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#2 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C@{}}{texttt{Col#3 title starts here}}\
midrule
Title #1
& multicolumn{2}{r}{num{44444}}
& multicolumn{2}{r}{num{222222}}
& multicolumn{2}{r@{}}{num{1111111}} \
midrule
quad Title#2 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%) \
midrule
qquad Title#3 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%)\
qquadquad Title #4 here
& num{33333} & (77.77%)
& num{666666} & (22.22%)
& num{1111111} & (111%)\
qquadqquad Title#5 here
& num{77} & (2.22%)
& num{361} & (0.59%)
& num{444444} & (33.33%)\
bottomrule
end{tabularx}
end{table}
end{document}
I see you made the first column just wide enough to make the other columns look minimal.
– John Kormylo
Feb 23 at 15:39
@JohnKormylo - Yeah, that's pretty much what I did. :-) Since the OP's real table will presumably not feature the numbers 44444, 222222, 1111111, etc, I didn't think it made much sense coming up with a more refined solution for these sample numbers.
– Mico
Feb 23 at 16:33
add a comment |
You need to allow line breaks. One way to do so is to employ a tabularx
environment.
documentclass[10pt]{llncs}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{tabularx, ragged2e, makecell}
newcolumntype{R}{>{RaggedLeftarraybackslash}X}
newcolumntype{C}{>{Centeringarraybackslash}X}
newcommandmyhsize{dimexpr2hsize+2tabcolseprelax}
begin{document}
begin{table}[!th]
setlengthtabcolsep{2pt} % default: 6pt
caption{Table}
begin{tabularx}{textwidth}{@{} l *{6}{R} @{}}
toprule
& multicolumn{6}{c@{}}{Title} \
cmidrule(l){2-7}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#1 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#2 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C@{}}{texttt{Col#3 title starts here}}\
midrule
Title #1
& multicolumn{2}{r}{num{44444}}
& multicolumn{2}{r}{num{222222}}
& multicolumn{2}{r@{}}{num{1111111}} \
midrule
quad Title#2 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%) \
midrule
qquad Title#3 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%)\
qquadquad Title #4 here
& num{33333} & (77.77%)
& num{666666} & (22.22%)
& num{1111111} & (111%)\
qquadqquad Title#5 here
& num{77} & (2.22%)
& num{361} & (0.59%)
& num{444444} & (33.33%)\
bottomrule
end{tabularx}
end{table}
end{document}
You need to allow line breaks. One way to do so is to employ a tabularx
environment.
documentclass[10pt]{llncs}
usepackage{sistyle}
SIthousandsep{,}
usepackage{booktabs}
usepackage{tabularx, ragged2e, makecell}
newcolumntype{R}{>{RaggedLeftarraybackslash}X}
newcolumntype{C}{>{Centeringarraybackslash}X}
newcommandmyhsize{dimexpr2hsize+2tabcolseprelax}
begin{document}
begin{table}[!th]
setlengthtabcolsep{2pt} % default: 6pt
caption{Table}
begin{tabularx}{textwidth}{@{} l *{6}{R} @{}}
toprule
& multicolumn{6}{c@{}}{Title} \
cmidrule(l){2-7}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#1 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C}{texttt{Col#2 title starts here}}
& multicolumn{2}{>{hsize=myhsize}C@{}}{texttt{Col#3 title starts here}}\
midrule
Title #1
& multicolumn{2}{r}{num{44444}}
& multicolumn{2}{r}{num{222222}}
& multicolumn{2}{r@{}}{num{1111111}} \
midrule
quad Title#2 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%) \
midrule
qquad Title#3 here
& num{44444} & (99.99%)
& num{222222} & (99.99%)
& num{1111111} & (99.99%)\
qquadquad Title #4 here
& num{33333} & (77.77%)
& num{666666} & (22.22%)
& num{1111111} & (111%)\
qquadqquad Title#5 here
& num{77} & (2.22%)
& num{361} & (0.59%)
& num{444444} & (33.33%)\
bottomrule
end{tabularx}
end{table}
end{document}
answered Feb 23 at 11:38
MicoMico
281k31384772
281k31384772
I see you made the first column just wide enough to make the other columns look minimal.
– John Kormylo
Feb 23 at 15:39
@JohnKormylo - Yeah, that's pretty much what I did. :-) Since the OP's real table will presumably not feature the numbers 44444, 222222, 1111111, etc, I didn't think it made much sense coming up with a more refined solution for these sample numbers.
– Mico
Feb 23 at 16:33
add a comment |
I see you made the first column just wide enough to make the other columns look minimal.
– John Kormylo
Feb 23 at 15:39
@JohnKormylo - Yeah, that's pretty much what I did. :-) Since the OP's real table will presumably not feature the numbers 44444, 222222, 1111111, etc, I didn't think it made much sense coming up with a more refined solution for these sample numbers.
– Mico
Feb 23 at 16:33
I see you made the first column just wide enough to make the other columns look minimal.
– John Kormylo
Feb 23 at 15:39
I see you made the first column just wide enough to make the other columns look minimal.
– John Kormylo
Feb 23 at 15:39
@JohnKormylo - Yeah, that's pretty much what I did. :-) Since the OP's real table will presumably not feature the numbers 44444, 222222, 1111111, etc, I didn't think it made much sense coming up with a more refined solution for these sample numbers.
– Mico
Feb 23 at 16:33
@JohnKormylo - Yeah, that's pretty much what I did. :-) Since the OP's real table will presumably not feature the numbers 44444, 222222, 1111111, etc, I didn't think it made much sense coming up with a more refined solution for these sample numbers.
– Mico
Feb 23 at 16:33
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.
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%2f476306%2fhow-to-reduce-space-between-two-columns%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
Would splitting the long column header into two rows be an option for you? See: i.stack.imgur.com/8pOaN.png Alternatively, you could also add a dummy column and leave the header in one line: i.stack.imgur.com/i80Wp.png
– leandriis
Feb 23 at 11:34
The tricky bit is figuring how wide to make the p{} in multicolumn.
– John Kormylo
Feb 23 at 15:45