This should should be a simple question, but after reviewing other responses I still can't seem to get it working. I've simplified my example to the following:
\begin{tabular}{p{.5in} l }
\begin{tabular}{p{.5in} }
very long first column that spans multiple row.s
\end{tabular}
&
\begin{tabular}{p{.5in} }
2nd column
\end{tabular}
\end{tabular}
I simply want to get the text in both columns to be vertically aligned to the top. Unfortuantely Try as I might, currently the 2nd column is always vertically centered in the table.
tabularenvironments? If you remove the innertabularenvironments, the cell contents are aligned at the top. To make a cell span several rows, you would usually use\multirowfrom themultirowpackage. – Jake Aug 3 '11 at 1:07