I'd like to vertically align the contents of a table row where all columns are formatted as parboxes. All but one cells of a given row contain regular text paragraphs and thus align fine. But one cell contains an itemize list, and the first item of that list does not align with the first lines of the other cells of the same row. Here's an example to show what I'm trying to explain:
Code: Select all
\documentclass[draft]{report}
\usepackage{paralist}
\begin{document}
\newlength{\cw}
\setlength{\cw}{.2\linewidth}
\begin{tabular}{*{3}{p{\cw}}}\hline
A regular table column containing some text.&
\begin{itemize}
\item A list which is not
\item vertically aligned.
\end{itemize}&
\begin{compactitem}
\item A compact list which is
\item also not vertically aligned.
\end{compactitem}
\end{tabular}
\end{document}
What am I missing? Help is appreciated!
TIA, Jukka