Vertically centered material in fixed height rows in tabular environmentHow to draw 15-puzzle in LaTeXVertically aligning fixed height tablesfootnotemark and footnotetext in minipageUse column-separator & (ampersand) inside newenvironmentHow to format table with long column head entries?Know the cell width with tabular* or include a paragraph box without specifying its widthCombine column types defined in dcolumn with tabularx, part 2tabu package - gaps in vertical linesDifferent alignment on columns when the 'X' column wraps in tabularxWrapping text in tables which contains underscoresPrevent spreading of words in: Left aligned, automatically wrapped text, in a table
Prospective employer asking for my current pay slip during interview
Why are green parties so often opposed to nuclear power?
Did the computer mouse always output relative x/y and not absolute?
Three people wearing hats
Which object has been to space the most times?
Why do Russian names transliterated into English have unpronounceable 'k's before 'h's (e.g. 'Mikhail' instead of just 'Mihail')?
Is 人孔 from English?
Most general definition of differentiation
Deprecate or remove an Apex Invocable Action from Process Builder in a Managed Package
Are soldered electrical connections code-compliant?
Prefix all commands in shell
Why do cargo airlines frequently choose passenger aircraft rather than aircraft designed specifically for cargo?
Why impeach Trump now and not earlier?
What is the purpose of the rules in counterpoint composition?
A single word for "not allowed to be changed" or "must be this way"
When can "qui" mean "how"?
How to tell my Mom that I don't care about someone without upsetting her?
In Germany, why does the burden of proof fall on authorities rather than the company or individual when it comes to possible illegal funds?
How can I get a ride in the jump seat as a non-professional pilot?
Is a midspace space station between Earth and Mars practical?
Can two moons have intersecting orbits yet be guaranteed not to collide?
When to bemoan and when to moan
Why does std::atomic constructor behave different in C++14 and C++17
Centered text and Equations aligned
Vertically centered material in fixed height rows in tabular environment
How to draw 15-puzzle in LaTeXVertically aligning fixed height tablesfootnotemark and footnotetext in minipageUse column-separator & (ampersand) inside newenvironmentHow to format table with long column head entries?Know the cell width with tabular* or include a paragraph box without specifying its widthCombine column types defined in dcolumn with tabularx, part 2tabu package - gaps in vertical linesDifferent alignment on columns when the 'X' column wraps in tabularxWrapping text in tables which contains underscoresPrevent spreading of words in: Left aligned, automatically wrapped text, in a table
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
The goal is to obtain a table with fixed height rows, and to place the material inside -certain- cells vertically centered.
Looking for a robust and simple way, I have worked on this idea:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]4cm#2 % <- '4cm' fixed!
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell2cmtext \
hline
endtabularx
enddocument
(Similar to this approach using minipage.)
At this point, I would like to use the width of each column into my cell command, in order to replace the fixed "4cm" definition by the generic column width values.
What I am looking for, if possible, is to get the "current" witdh column register used by tabularx, tabular or array, and to use it like an parbox argument. This will also be necessary to use includegraphics [width = x] inside the cells.
For example, you can do it successfully with the paracol package:
documentclassarticle
usepackageparacol
begindocument
deftextThis is a text example inside a cell
columnratio0.8
beginparacol2
parbox[t][2cm][c]csname pcol@columnwidthnumber1endcsnametext
endparacol
enddocument
tables tabularx minipage parbox
add a comment
|
The goal is to obtain a table with fixed height rows, and to place the material inside -certain- cells vertically centered.
Looking for a robust and simple way, I have worked on this idea:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]4cm#2 % <- '4cm' fixed!
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell2cmtext \
hline
endtabularx
enddocument
(Similar to this approach using minipage.)
At this point, I would like to use the width of each column into my cell command, in order to replace the fixed "4cm" definition by the generic column width values.
What I am looking for, if possible, is to get the "current" witdh column register used by tabularx, tabular or array, and to use it like an parbox argument. This will also be necessary to use includegraphics [width = x] inside the cells.
For example, you can do it successfully with the paracol package:
documentclassarticle
usepackageparacol
begindocument
deftextThis is a text example inside a cell
columnratio0.8
beginparacol2
parbox[t][2cm][c]csname pcol@columnwidthnumber1endcsnametext
endparacol
enddocument
tables tabularx minipage parbox
What are you trying to achieve withhsize=hsizeinnewcolumntypeC>hsize=hsizecenteringarraybackslashX?
– Mico
Sep 27 at 10:58
Thanks @Mico. It was a bug in the MWE. It is not relevant for the main question.
– e_moro
Sep 27 at 12:36
add a comment
|
The goal is to obtain a table with fixed height rows, and to place the material inside -certain- cells vertically centered.
Looking for a robust and simple way, I have worked on this idea:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]4cm#2 % <- '4cm' fixed!
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell2cmtext \
hline
endtabularx
enddocument
(Similar to this approach using minipage.)
At this point, I would like to use the width of each column into my cell command, in order to replace the fixed "4cm" definition by the generic column width values.
What I am looking for, if possible, is to get the "current" witdh column register used by tabularx, tabular or array, and to use it like an parbox argument. This will also be necessary to use includegraphics [width = x] inside the cells.
For example, you can do it successfully with the paracol package:
documentclassarticle
usepackageparacol
begindocument
deftextThis is a text example inside a cell
columnratio0.8
beginparacol2
parbox[t][2cm][c]csname pcol@columnwidthnumber1endcsnametext
endparacol
enddocument
tables tabularx minipage parbox
The goal is to obtain a table with fixed height rows, and to place the material inside -certain- cells vertically centered.
Looking for a robust and simple way, I have worked on this idea:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]4cm#2 % <- '4cm' fixed!
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell2cmtext \
hline
endtabularx
enddocument
(Similar to this approach using minipage.)
At this point, I would like to use the width of each column into my cell command, in order to replace the fixed "4cm" definition by the generic column width values.
What I am looking for, if possible, is to get the "current" witdh column register used by tabularx, tabular or array, and to use it like an parbox argument. This will also be necessary to use includegraphics [width = x] inside the cells.
For example, you can do it successfully with the paracol package:
documentclassarticle
usepackageparacol
begindocument
deftextThis is a text example inside a cell
columnratio0.8
beginparacol2
parbox[t][2cm][c]csname pcol@columnwidthnumber1endcsnametext
endparacol
enddocument
tables tabularx minipage parbox
tables tabularx minipage parbox
edited Sep 27 at 19:18
Peter Mortensen
5783 silver badges7 bronze badges
5783 silver badges7 bronze badges
asked Sep 27 at 9:37
e_moroe_moro
1697 bronze badges
1697 bronze badges
What are you trying to achieve withhsize=hsizeinnewcolumntypeC>hsize=hsizecenteringarraybackslashX?
– Mico
Sep 27 at 10:58
Thanks @Mico. It was a bug in the MWE. It is not relevant for the main question.
– e_moro
Sep 27 at 12:36
add a comment
|
What are you trying to achieve withhsize=hsizeinnewcolumntypeC>hsize=hsizecenteringarraybackslashX?
– Mico
Sep 27 at 10:58
Thanks @Mico. It was a bug in the MWE. It is not relevant for the main question.
– e_moro
Sep 27 at 12:36
What are you trying to achieve with
hsize=hsize in newcolumntypeC>hsize=hsizecenteringarraybackslashX?– Mico
Sep 27 at 10:58
What are you trying to achieve with
hsize=hsize in newcolumntypeC>hsize=hsizecenteringarraybackslashX?– Mico
Sep 27 at 10:58
Thanks @Mico. It was a bug in the MWE. It is not relevant for the main question.
– e_moro
Sep 27 at 12:36
Thanks @Mico. It was a bug in the MWE. It is not relevant for the main question.
– e_moro
Sep 27 at 12:36
add a comment
|
2 Answers
2
active
oldest
votes
You can use linewidth:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]linewidth#2 %
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell0.5linewidthtext \
hline
endtabularx
enddocument
This is just what I was looking for. I recommend this simple way of treatment height fixed tables.
– e_moro
Sep 28 at 10:17
hsize also works
– e_moro
Oct 6 at 17:07
add a comment
|
Thinking outside of the box...
Hat tip to Phelype for clueing me in to both @wholewidth and linethickness.
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellsep
cellwd=80
cellsep=5
makeatletter
%linethickness.1pt
newcommandacell[1]noindent%
framebox(cellwd,cellwd)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
makeatother
begindocument
What precedes.
acellHere is a test of my parbox
acellxyz
acellNot sure if this is what is desired
cellrowskip
acellHa-ha!
acellWe are almost there!
acellFinis!
What follows.
enddocument

If you want a more packaged implementation, I introduce the syntax
begincelltable[<linethickness>]<cell width><cell height><2X cell sep>
|<cell data 1,1> |<cell-data 1,2>
cellrowskip
|<cell data 2,1> |<cell-data 2,2>
endcelltable
Here is the MWE:
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellht
newcountcellsep
makeatletter
acell
newcommandacell[1]noindent%
framebox(cellwd,cellht)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
newenvironmentcelltable[4][@wholewidth]
cellwd=#2relax
cellht=#3relax
cellsep=#4relax
linethickness#1%
vspace#1%
parcatcode`par
makeatother
begindocument
What precedes.
begincelltable[3pt]70505
|Here is a test of my parbox
|xyz
|Not sure if this is what is desired
cellrowskip
|Ha-ha!
|We are almost there!
|Finis!
endcelltable
What follows.
enddocument

1
Uselinethickness...to change@wholewidth
– Phelype Oleinik
Sep 27 at 14:14
1
Thank you again, Phelype, for your assistance.
– Steven B. Segletes
Sep 27 at 14:16
Yes, I had thought to consider another approaches like yours. But I prefer to stay within the tabular environment to use its powerfull features. Good answer, by the way.
– e_moro
Sep 28 at 10:34
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/4.0/"u003ecc by-sa 4.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%2f509978%2fvertically-centered-material-in-fixed-height-rows-in-tabular-environment%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
You can use linewidth:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]linewidth#2 %
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell0.5linewidthtext \
hline
endtabularx
enddocument
This is just what I was looking for. I recommend this simple way of treatment height fixed tables.
– e_moro
Sep 28 at 10:17
hsize also works
– e_moro
Oct 6 at 17:07
add a comment
|
You can use linewidth:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]linewidth#2 %
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell0.5linewidthtext \
hline
endtabularx
enddocument
This is just what I was looking for. I recommend this simple way of treatment height fixed tables.
– e_moro
Sep 28 at 10:17
hsize also works
– e_moro
Oct 6 at 17:07
add a comment
|
You can use linewidth:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]linewidth#2 %
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell0.5linewidthtext \
hline
endtabularx
enddocument
You can use linewidth:
documentclassarticle
usepackagetabularx
begindocument
deftextThis is a text example inside a cell
newcommandcell[2]parbox[t][#1][c]linewidth#2 %
newcolumntypeC>centeringarraybackslashX
begintabularxtextwidthX
hline
text & cell0.5linewidthtext \
hline
endtabularx
enddocument
answered Sep 27 at 14:48
Ulrike FischerUlrike Fischer
228k9 gold badges340 silver badges747 bronze badges
228k9 gold badges340 silver badges747 bronze badges
This is just what I was looking for. I recommend this simple way of treatment height fixed tables.
– e_moro
Sep 28 at 10:17
hsize also works
– e_moro
Oct 6 at 17:07
add a comment
|
This is just what I was looking for. I recommend this simple way of treatment height fixed tables.
– e_moro
Sep 28 at 10:17
hsize also works
– e_moro
Oct 6 at 17:07
This is just what I was looking for. I recommend this simple way of treatment height fixed tables.
– e_moro
Sep 28 at 10:17
This is just what I was looking for. I recommend this simple way of treatment height fixed tables.
– e_moro
Sep 28 at 10:17
hsize also works
– e_moro
Oct 6 at 17:07
hsize also works
– e_moro
Oct 6 at 17:07
add a comment
|
Thinking outside of the box...
Hat tip to Phelype for clueing me in to both @wholewidth and linethickness.
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellsep
cellwd=80
cellsep=5
makeatletter
%linethickness.1pt
newcommandacell[1]noindent%
framebox(cellwd,cellwd)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
makeatother
begindocument
What precedes.
acellHere is a test of my parbox
acellxyz
acellNot sure if this is what is desired
cellrowskip
acellHa-ha!
acellWe are almost there!
acellFinis!
What follows.
enddocument

If you want a more packaged implementation, I introduce the syntax
begincelltable[<linethickness>]<cell width><cell height><2X cell sep>
|<cell data 1,1> |<cell-data 1,2>
cellrowskip
|<cell data 2,1> |<cell-data 2,2>
endcelltable
Here is the MWE:
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellht
newcountcellsep
makeatletter
acell
newcommandacell[1]noindent%
framebox(cellwd,cellht)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
newenvironmentcelltable[4][@wholewidth]
cellwd=#2relax
cellht=#3relax
cellsep=#4relax
linethickness#1%
vspace#1%
parcatcode`par
makeatother
begindocument
What precedes.
begincelltable[3pt]70505
|Here is a test of my parbox
|xyz
|Not sure if this is what is desired
cellrowskip
|Ha-ha!
|We are almost there!
|Finis!
endcelltable
What follows.
enddocument

1
Uselinethickness...to change@wholewidth
– Phelype Oleinik
Sep 27 at 14:14
1
Thank you again, Phelype, for your assistance.
– Steven B. Segletes
Sep 27 at 14:16
Yes, I had thought to consider another approaches like yours. But I prefer to stay within the tabular environment to use its powerfull features. Good answer, by the way.
– e_moro
Sep 28 at 10:34
add a comment
|
Thinking outside of the box...
Hat tip to Phelype for clueing me in to both @wholewidth and linethickness.
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellsep
cellwd=80
cellsep=5
makeatletter
%linethickness.1pt
newcommandacell[1]noindent%
framebox(cellwd,cellwd)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
makeatother
begindocument
What precedes.
acellHere is a test of my parbox
acellxyz
acellNot sure if this is what is desired
cellrowskip
acellHa-ha!
acellWe are almost there!
acellFinis!
What follows.
enddocument

If you want a more packaged implementation, I introduce the syntax
begincelltable[<linethickness>]<cell width><cell height><2X cell sep>
|<cell data 1,1> |<cell-data 1,2>
cellrowskip
|<cell data 2,1> |<cell-data 2,2>
endcelltable
Here is the MWE:
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellht
newcountcellsep
makeatletter
acell
newcommandacell[1]noindent%
framebox(cellwd,cellht)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
newenvironmentcelltable[4][@wholewidth]
cellwd=#2relax
cellht=#3relax
cellsep=#4relax
linethickness#1%
vspace#1%
parcatcode`par
makeatother
begindocument
What precedes.
begincelltable[3pt]70505
|Here is a test of my parbox
|xyz
|Not sure if this is what is desired
cellrowskip
|Ha-ha!
|We are almost there!
|Finis!
endcelltable
What follows.
enddocument

1
Uselinethickness...to change@wholewidth
– Phelype Oleinik
Sep 27 at 14:14
1
Thank you again, Phelype, for your assistance.
– Steven B. Segletes
Sep 27 at 14:16
Yes, I had thought to consider another approaches like yours. But I prefer to stay within the tabular environment to use its powerfull features. Good answer, by the way.
– e_moro
Sep 28 at 10:34
add a comment
|
Thinking outside of the box...
Hat tip to Phelype for clueing me in to both @wholewidth and linethickness.
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellsep
cellwd=80
cellsep=5
makeatletter
%linethickness.1pt
newcommandacell[1]noindent%
framebox(cellwd,cellwd)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
makeatother
begindocument
What precedes.
acellHere is a test of my parbox
acellxyz
acellNot sure if this is what is desired
cellrowskip
acellHa-ha!
acellWe are almost there!
acellFinis!
What follows.
enddocument

If you want a more packaged implementation, I introduce the syntax
begincelltable[<linethickness>]<cell width><cell height><2X cell sep>
|<cell data 1,1> |<cell-data 1,2>
cellrowskip
|<cell data 2,1> |<cell-data 2,2>
endcelltable
Here is the MWE:
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellht
newcountcellsep
makeatletter
acell
newcommandacell[1]noindent%
framebox(cellwd,cellht)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
newenvironmentcelltable[4][@wholewidth]
cellwd=#2relax
cellht=#3relax
cellsep=#4relax
linethickness#1%
vspace#1%
parcatcode`par
makeatother
begindocument
What precedes.
begincelltable[3pt]70505
|Here is a test of my parbox
|xyz
|Not sure if this is what is desired
cellrowskip
|Ha-ha!
|We are almost there!
|Finis!
endcelltable
What follows.
enddocument

Thinking outside of the box...
Hat tip to Phelype for clueing me in to both @wholewidth and linethickness.
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellsep
cellwd=80
cellsep=5
makeatletter
%linethickness.1pt
newcommandacell[1]noindent%
framebox(cellwd,cellwd)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
makeatother
begindocument
What precedes.
acellHere is a test of my parbox
acellxyz
acellNot sure if this is what is desired
cellrowskip
acellHa-ha!
acellWe are almost there!
acellFinis!
What follows.
enddocument

If you want a more packaged implementation, I introduce the syntax
begincelltable[<linethickness>]<cell width><cell height><2X cell sep>
|<cell data 1,1> |<cell-data 1,2>
cellrowskip
|<cell data 2,1> |<cell-data 2,2>
endcelltable
Here is the MWE:
documentclassarticle
usepackagestackengine
newcountcellwd
newcountcellht
newcountcellsep
makeatletter
acell
newcommandacell[1]noindent%
framebox(cellwd,cellht)parboxthenumexprcellwd-cellseprelax pt%
centering#1kern@wholewidthignorespaces
newcommandcellrowskip\[dimexpr-1pt+@wholewidthrelax]
newenvironmentcelltable[4][@wholewidth]
cellwd=#2relax
cellht=#3relax
cellsep=#4relax
linethickness#1%
vspace#1%
parcatcode`par
makeatother
begindocument
What precedes.
begincelltable[3pt]70505
|Here is a test of my parbox
|xyz
|Not sure if this is what is desired
cellrowskip
|Ha-ha!
|We are almost there!
|Finis!
endcelltable
What follows.
enddocument

edited Sep 27 at 14:33
answered Sep 27 at 14:06
Steven B. SegletesSteven B. Segletes
176k9 gold badges224 silver badges456 bronze badges
176k9 gold badges224 silver badges456 bronze badges
1
Uselinethickness...to change@wholewidth
– Phelype Oleinik
Sep 27 at 14:14
1
Thank you again, Phelype, for your assistance.
– Steven B. Segletes
Sep 27 at 14:16
Yes, I had thought to consider another approaches like yours. But I prefer to stay within the tabular environment to use its powerfull features. Good answer, by the way.
– e_moro
Sep 28 at 10:34
add a comment
|
1
Uselinethickness...to change@wholewidth
– Phelype Oleinik
Sep 27 at 14:14
1
Thank you again, Phelype, for your assistance.
– Steven B. Segletes
Sep 27 at 14:16
Yes, I had thought to consider another approaches like yours. But I prefer to stay within the tabular environment to use its powerfull features. Good answer, by the way.
– e_moro
Sep 28 at 10:34
1
1
Use
linethickness... to change @wholewidth– Phelype Oleinik
Sep 27 at 14:14
Use
linethickness... to change @wholewidth– Phelype Oleinik
Sep 27 at 14:14
1
1
Thank you again, Phelype, for your assistance.
– Steven B. Segletes
Sep 27 at 14:16
Thank you again, Phelype, for your assistance.
– Steven B. Segletes
Sep 27 at 14:16
Yes, I had thought to consider another approaches like yours. But I prefer to stay within the tabular environment to use its powerfull features. Good answer, by the way.
– e_moro
Sep 28 at 10:34
Yes, I had thought to consider another approaches like yours. But I prefer to stay within the tabular environment to use its powerfull features. Good answer, by the way.
– e_moro
Sep 28 at 10:34
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%2f509978%2fvertically-centered-material-in-fixed-height-rows-in-tabular-environment%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
What are you trying to achieve with
hsize=hsizeinnewcolumntypeC>hsize=hsizecenteringarraybackslashX?– Mico
Sep 27 at 10:58
Thanks @Mico. It was a bug in the MWE. It is not relevant for the main question.
– e_moro
Sep 27 at 12:36