2

am using this: %%% https://tex.stackexchange.com/a/97188/27721

\usepackage{array}
\newcolumntype{Z}{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}X}

and would like to use (that is, integrate into the above) sth like that:

{>{\hsize=1.5\hsize}X>{\hsize=0.5\hsize}X}

(which is taken from David's tabularx manual)

how?

PS:

\begin{tabularx}{\textwidth}{@{}*{1}{p{\mylengthydate}}*{1}{X}*{1}{Z}@{}}

UPDATE

Expanded the question with proper MWE here:

1 Answers1

4

Assuming you want the X column to be three times as wide as the Z column -- as well as the Z column type being defined as in your query above and there being no whitespace to the left of the first column or to the right of the final column -- you could set up the structure of the tabularx environment as follows:

begin{tabularx}{\textwidth}{@{} p{\mylengthydate} 
                                >{\hsize=1.5\hsize}X 
                                >{\hsize=0.5\hsize}Z @{}}
Mico
  • 506,678