creating a tabular environment inside a list item seems to cause the bullet/number/description to become vertically centered (relative to the table).
How can I make the first line of a table appear on the same line/height as the the description item?
Thank you.
Example:
Code: Select all
\documentclass{article}
\begin{document}
\begin{description}
\item[vertically centered]
\begin{tabular}{ l l }
123 & 123 \\
123 & 123 \\
123 & 123 \\
123 & 123 \\
\end{tabular}
\end{description}
\end{document}