I'm trying to format a table like the following:
0.0a summarry b other summarry
(long)
.1a junk b more junk
1.0a etc b so forth
Ie, with all the contents top- and left-aligned and everything lined up semi-nicely and the main columns the same size.
So far the best I've been able to come up with is:
\documentclass{minimal}
\usepackage{amsmath}
\usepackage{fontspec}
\usepackage{array}
\setmainfont{DejaVu Sans}
\title{---}
\date{}
\newcolumntype{T}{>{\vtop\bgroup\vspace*{-\ht\strutbox}\hbox\bgroup}
c<{\egroup\egroup}}
\begin{document}
\begin{tabular}{ T T T l T l }
\hline
0&.0&a&
summary
&b&
other summary (long)
\\ \hline
&.1&a&
junk
&b&
more junk
\\ \hline
1&.0&a&
etc
&b&
so forth
\\ \hline
\end{tabular}
\end{document}

