Bold, horizontally and vertically aligned, multiline table headersCentering vertically in table cellUsing a...
Why is it that the natural deduction method can't test for invalidity?
Examples of subgroups where it's nontrivial to show closure under multiplication?
"The cow" OR "a cow" OR "cows" in this context
How to reduce LED flash rate (frequency)
Checks user level and limit the data before saving it to mongoDB
The Defining Moment
What are Bevel Edges
Is it idiomatic to construct against `this`?
What are the potential pitfalls when using metals as a currency?
Do I have an "anti-research" personality?
Seemingly unused edef prior to an ifx mysteriously affects the outcome of the ifx. Why?
How to stop co-workers from teasing me because I know Russian?
How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?
Why does nature favour the Laplacian?
Can someone publish a story that happened to you?
A strange hotel
Is there really no use for MD5 anymore?
What software provides a code editing environment on iPad?
Mjolnir's timeline from Thor's perspective
As an international instructor, should I openly talk about my accent?
How to pronounce 'C++' in Spanish
How does a program know if stdout is connected to a terminal or a pipe?
Normal Map bad shading in Rendered display
Why do games have consumables?
Bold, horizontally and vertically aligned, multiline table headers
Centering vertically in table cellUsing a table: alignment issues and cell labelsLaTeX Multiple Table Alignment Horizontally and VerticallyColored Cells and Cell Contents Aren't Aligned As ExpectedWhat options are there to globally format tables also allowing local overrides?Vertical alignment (centering) of cells contents in longtable with “m”Aligning a table vertically and horizontallyh/v centering in tabularVertically and horizontally align image inside tableHow to set longtable width to text width so that the text in cell wraps around automatically?
I'm trying to print a table where the first row, containing the header, should be bold and both horizontally and vertically centered. Additionally, I'm using longtable
environment from this package, since I have a really long table that spans several pages. Due to horizontal stress, I also want to fit some of the table headers in 2 lines (but not all of them), which I did using shortstack
That said, I'm still not able to align the header content vertically, given that some cells have 2 lines and others have only 1. See below a MWE:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{multicolumn{1}{c}{bfseries #1}}
begin{document}
begin{center}
begin{longtable}{rcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size\(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
This code originates the following table:
I ask your help to find the simplest, most correct and most elegant way to solve this problem and get all header cells vertically centered.
tables vertical-alignment line-breaking
add a comment |
I'm trying to print a table where the first row, containing the header, should be bold and both horizontally and vertically centered. Additionally, I'm using longtable
environment from this package, since I have a really long table that spans several pages. Due to horizontal stress, I also want to fit some of the table headers in 2 lines (but not all of them), which I did using shortstack
That said, I'm still not able to align the header content vertically, given that some cells have 2 lines and others have only 1. See below a MWE:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{multicolumn{1}{c}{bfseries #1}}
begin{document}
begin{center}
begin{longtable}{rcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size\(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
This code originates the following table:
I ask your help to find the simplest, most correct and most elegant way to solve this problem and get all header cells vertically centered.
tables vertical-alignment line-breaking
Would it be better to not useshortstack
and use instead some kind of fixed columns widths? If so, how would I set that up?
– POliveira
Feb 16 '15 at 17:35
add a comment |
I'm trying to print a table where the first row, containing the header, should be bold and both horizontally and vertically centered. Additionally, I'm using longtable
environment from this package, since I have a really long table that spans several pages. Due to horizontal stress, I also want to fit some of the table headers in 2 lines (but not all of them), which I did using shortstack
That said, I'm still not able to align the header content vertically, given that some cells have 2 lines and others have only 1. See below a MWE:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{multicolumn{1}{c}{bfseries #1}}
begin{document}
begin{center}
begin{longtable}{rcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size\(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
This code originates the following table:
I ask your help to find the simplest, most correct and most elegant way to solve this problem and get all header cells vertically centered.
tables vertical-alignment line-breaking
I'm trying to print a table where the first row, containing the header, should be bold and both horizontally and vertically centered. Additionally, I'm using longtable
environment from this package, since I have a really long table that spans several pages. Due to horizontal stress, I also want to fit some of the table headers in 2 lines (but not all of them), which I did using shortstack
That said, I'm still not able to align the header content vertically, given that some cells have 2 lines and others have only 1. See below a MWE:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{multicolumn{1}{c}{bfseries #1}}
begin{document}
begin{center}
begin{longtable}{rcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size\(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
This code originates the following table:
I ask your help to find the simplest, most correct and most elegant way to solve this problem and get all header cells vertically centered.
tables vertical-alignment line-breaking
tables vertical-alignment line-breaking
asked Feb 16 '15 at 17:33
POliveiraPOliveira
315412
315412
Would it be better to not useshortstack
and use instead some kind of fixed columns widths? If so, how would I set that up?
– POliveira
Feb 16 '15 at 17:35
add a comment |
Would it be better to not useshortstack
and use instead some kind of fixed columns widths? If so, how would I set that up?
– POliveira
Feb 16 '15 at 17:35
Would it be better to not use
shortstack
and use instead some kind of fixed columns widths? If so, how would I set that up?– POliveira
Feb 16 '15 at 17:35
Would it be better to not use
shortstack
and use instead some kind of fixed columns widths? If so, how would I set that up?– POliveira
Feb 16 '15 at 17:35
add a comment |
2 Answers
2
active
oldest
votes
Vertical centring of headings is most easily done with tabular
and I removed center
as it doesn't centre longtables. I reduced the inter column spacing by a bit as your table was slightly too wide for the page.
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{%
multicolumn{1}{c}{bfseriesbegin{tabular}{@{}c@{}}#1end{tabular}}}
begin{document}
setlengthtabcolsep{5pt}
begin{longtable}{@{}rcrrcc@{}}
toprule
thead{ID} &
thead{Database name} &
thead{Size\(MB)} &
thead{No. of\records} &
thead{Time stamp\1st record} &
thead{Time stamp\last record} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{document}
It does exactly what I intend! Thank you! I've only 2 questions: 1) what are those @{} for?; 2) regarding thetabcolsep
parameter, how did you find the table too wide?, it seems pretty ok over here, could it be because we're using different document formats? I'm using A4 format, which is sufficiently wide for this table.
– POliveira
Feb 16 '15 at 18:04
the@{}
removes the padding from the inner table, as the outer table already adds padding. On your MWE as posted latex reportsOverfull hbox (2.58034pt too wide) in alignment at lines 10--18
so your table is 2.5 pt wider thantextwidth
– David Carlisle
Feb 16 '15 at 18:18
add a comment |
Another solution with the makecell
package, which is designed precisely to choose both vertical and horizontal alignment and a common formatting in cells with the thead
and makecell
commands. I also loaded cellspace
to have a less tight vertical spacing in tables:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
usepackage{makecell}
renewcommandtheadfont{bfseries}
usepackage{cellspace}
setlengthcellspacetoplimit{4pt}
setlengthcellspacebottomlimit{4pt}
begin{document}
begin{center}
begin{longtable}{Srcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size & & & \(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
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%2f228474%2fbold-horizontally-and-vertically-aligned-multiline-table-headers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Vertical centring of headings is most easily done with tabular
and I removed center
as it doesn't centre longtables. I reduced the inter column spacing by a bit as your table was slightly too wide for the page.
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{%
multicolumn{1}{c}{bfseriesbegin{tabular}{@{}c@{}}#1end{tabular}}}
begin{document}
setlengthtabcolsep{5pt}
begin{longtable}{@{}rcrrcc@{}}
toprule
thead{ID} &
thead{Database name} &
thead{Size\(MB)} &
thead{No. of\records} &
thead{Time stamp\1st record} &
thead{Time stamp\last record} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{document}
It does exactly what I intend! Thank you! I've only 2 questions: 1) what are those @{} for?; 2) regarding thetabcolsep
parameter, how did you find the table too wide?, it seems pretty ok over here, could it be because we're using different document formats? I'm using A4 format, which is sufficiently wide for this table.
– POliveira
Feb 16 '15 at 18:04
the@{}
removes the padding from the inner table, as the outer table already adds padding. On your MWE as posted latex reportsOverfull hbox (2.58034pt too wide) in alignment at lines 10--18
so your table is 2.5 pt wider thantextwidth
– David Carlisle
Feb 16 '15 at 18:18
add a comment |
Vertical centring of headings is most easily done with tabular
and I removed center
as it doesn't centre longtables. I reduced the inter column spacing by a bit as your table was slightly too wide for the page.
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{%
multicolumn{1}{c}{bfseriesbegin{tabular}{@{}c@{}}#1end{tabular}}}
begin{document}
setlengthtabcolsep{5pt}
begin{longtable}{@{}rcrrcc@{}}
toprule
thead{ID} &
thead{Database name} &
thead{Size\(MB)} &
thead{No. of\records} &
thead{Time stamp\1st record} &
thead{Time stamp\last record} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{document}
It does exactly what I intend! Thank you! I've only 2 questions: 1) what are those @{} for?; 2) regarding thetabcolsep
parameter, how did you find the table too wide?, it seems pretty ok over here, could it be because we're using different document formats? I'm using A4 format, which is sufficiently wide for this table.
– POliveira
Feb 16 '15 at 18:04
the@{}
removes the padding from the inner table, as the outer table already adds padding. On your MWE as posted latex reportsOverfull hbox (2.58034pt too wide) in alignment at lines 10--18
so your table is 2.5 pt wider thantextwidth
– David Carlisle
Feb 16 '15 at 18:18
add a comment |
Vertical centring of headings is most easily done with tabular
and I removed center
as it doesn't centre longtables. I reduced the inter column spacing by a bit as your table was slightly too wide for the page.
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{%
multicolumn{1}{c}{bfseriesbegin{tabular}{@{}c@{}}#1end{tabular}}}
begin{document}
setlengthtabcolsep{5pt}
begin{longtable}{@{}rcrrcc@{}}
toprule
thead{ID} &
thead{Database name} &
thead{Size\(MB)} &
thead{No. of\records} &
thead{Time stamp\1st record} &
thead{Time stamp\last record} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{document}
Vertical centring of headings is most easily done with tabular
and I removed center
as it doesn't centre longtables. I reduced the inter column spacing by a bit as your table was slightly too wide for the page.
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
newcommand*{thead}[1]{%
multicolumn{1}{c}{bfseriesbegin{tabular}{@{}c@{}}#1end{tabular}}}
begin{document}
setlengthtabcolsep{5pt}
begin{longtable}{@{}rcrrcc@{}}
toprule
thead{ID} &
thead{Database name} &
thead{Size\(MB)} &
thead{No. of\records} &
thead{Time stamp\1st record} &
thead{Time stamp\last record} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{document}
answered Feb 16 '15 at 17:46
David CarlisleDavid Carlisle
501k4211481897
501k4211481897
It does exactly what I intend! Thank you! I've only 2 questions: 1) what are those @{} for?; 2) regarding thetabcolsep
parameter, how did you find the table too wide?, it seems pretty ok over here, could it be because we're using different document formats? I'm using A4 format, which is sufficiently wide for this table.
– POliveira
Feb 16 '15 at 18:04
the@{}
removes the padding from the inner table, as the outer table already adds padding. On your MWE as posted latex reportsOverfull hbox (2.58034pt too wide) in alignment at lines 10--18
so your table is 2.5 pt wider thantextwidth
– David Carlisle
Feb 16 '15 at 18:18
add a comment |
It does exactly what I intend! Thank you! I've only 2 questions: 1) what are those @{} for?; 2) regarding thetabcolsep
parameter, how did you find the table too wide?, it seems pretty ok over here, could it be because we're using different document formats? I'm using A4 format, which is sufficiently wide for this table.
– POliveira
Feb 16 '15 at 18:04
the@{}
removes the padding from the inner table, as the outer table already adds padding. On your MWE as posted latex reportsOverfull hbox (2.58034pt too wide) in alignment at lines 10--18
so your table is 2.5 pt wider thantextwidth
– David Carlisle
Feb 16 '15 at 18:18
It does exactly what I intend! Thank you! I've only 2 questions: 1) what are those @{} for?; 2) regarding the
tabcolsep
parameter, how did you find the table too wide?, it seems pretty ok over here, could it be because we're using different document formats? I'm using A4 format, which is sufficiently wide for this table.– POliveira
Feb 16 '15 at 18:04
It does exactly what I intend! Thank you! I've only 2 questions: 1) what are those @{} for?; 2) regarding the
tabcolsep
parameter, how did you find the table too wide?, it seems pretty ok over here, could it be because we're using different document formats? I'm using A4 format, which is sufficiently wide for this table.– POliveira
Feb 16 '15 at 18:04
the
@{}
removes the padding from the inner table, as the outer table already adds padding. On your MWE as posted latex reports Overfull hbox (2.58034pt too wide) in alignment at lines 10--18
so your table is 2.5 pt wider than textwidth
– David Carlisle
Feb 16 '15 at 18:18
the
@{}
removes the padding from the inner table, as the outer table already adds padding. On your MWE as posted latex reports Overfull hbox (2.58034pt too wide) in alignment at lines 10--18
so your table is 2.5 pt wider than textwidth
– David Carlisle
Feb 16 '15 at 18:18
add a comment |
Another solution with the makecell
package, which is designed precisely to choose both vertical and horizontal alignment and a common formatting in cells with the thead
and makecell
commands. I also loaded cellspace
to have a less tight vertical spacing in tables:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
usepackage{makecell}
renewcommandtheadfont{bfseries}
usepackage{cellspace}
setlengthcellspacetoplimit{4pt}
setlengthcellspacebottomlimit{4pt}
begin{document}
begin{center}
begin{longtable}{Srcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size & & & \(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
add a comment |
Another solution with the makecell
package, which is designed precisely to choose both vertical and horizontal alignment and a common formatting in cells with the thead
and makecell
commands. I also loaded cellspace
to have a less tight vertical spacing in tables:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
usepackage{makecell}
renewcommandtheadfont{bfseries}
usepackage{cellspace}
setlengthcellspacetoplimit{4pt}
setlengthcellspacebottomlimit{4pt}
begin{document}
begin{center}
begin{longtable}{Srcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size & & & \(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
add a comment |
Another solution with the makecell
package, which is designed precisely to choose both vertical and horizontal alignment and a common formatting in cells with the thead
and makecell
commands. I also loaded cellspace
to have a less tight vertical spacing in tables:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
usepackage{makecell}
renewcommandtheadfont{bfseries}
usepackage{cellspace}
setlengthcellspacetoplimit{4pt}
setlengthcellspacebottomlimit{4pt}
begin{document}
begin{center}
begin{longtable}{Srcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size & & & \(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
Another solution with the makecell
package, which is designed precisely to choose both vertical and horizontal alignment and a common formatting in cells with the thead
and makecell
commands. I also loaded cellspace
to have a less tight vertical spacing in tables:
documentclass{report}
usepackage{booktabs}
usepackage{longtable}
usepackage{makecell}
renewcommandtheadfont{bfseries}
usepackage{cellspace}
setlengthcellspacetoplimit{4pt}
setlengthcellspacebottomlimit{4pt}
begin{document}
begin{center}
begin{longtable}{Srcrrcc}
toprule
thead{ID} & thead{Database name} & thead{shortstack{Size & & & \(MB)}} & thead{shortstack{No. of\records}} & thead{shortstack{Time stamp\1st record}} & thead{shortstack{Time stamp\last record}} \
midrule
%input{tab-metadata} Really long table
1 & dummie & 2.1 & 33 & dummie & dummie \
2 & dummie & 4.3 & 67 & dummie & dummie \
bottomrule
end{longtable}
end{center}
end{document}
edited 44 mins ago
answered Feb 16 '15 at 19:29
BernardBernard
177k779211
177k779211
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.
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%2f228474%2fbold-horizontally-and-vertically-aligned-multiline-table-headers%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 it be better to not use
shortstack
and use instead some kind of fixed columns widths? If so, how would I set that up?– POliveira
Feb 16 '15 at 17:35