The paralist package offers the option of typesetting an itemized list with a \topsep length of zero, and this is especially useful in a tabular setting. However, the following minimal example does not seem to remove the space at the top of the second column as would be expected when compiled with pdflatex.
\documentclass{article}
\usepackage{paralist}
\setlength{\pltopsep}{0pt}
\setlength{\plpartopsep}{0pt}
\begin{document}
\begin{tabular}{p{20mm} p{50mm}}
Itemize: & {%
\begin{compactitem}
\item First item
\end{compactitem}}\\
Enumerate: & {%
\begin{enumerate}
\item First item
\end{enumerate}}\\
Description: & {%
\begin{description}
\item[Descriptor] First item
\end{description}}\\
\end{tabular}
\end{document
Can someone explain how I might get the first line of the second column to line up with the first line of the first column, please?
I can workaround with a negative \vspace before the respective list environments but I want a more elegant solution which I think paralist is supposed to provide.
