[Tex/LaTex] Vertical skip between p{…} rows of tabular

paragraphsspacingtables

I want to increase a bit the vertical spacing in my tabular table. I did something like this:

\documentclass{article}

\begin{document}

\begin{tabular}{p{4cm}p{4cm}}
  Lorem ipsum dolor sit amet consectetur & adipisicing elit \\[6pt]
  sed do eiusmod tempor incididunt ut labore & et dolore magna aliqua.\\
\end{tabular}

\end{document}

but to my surprise, it doesn't work – it seems that the extra vertical space from [12pt] is somehow eaten by the space beneath the (shorter) parbox. What should I do?

Best Answer

You could put a strut in the first column.

\documentclass{article}
\begin{document}
\begin{tabular}{p{4cm}p{4cm}}
  Lorem ipsum dolor sit amet consectetur\rule[-6pt]{0pt}{6pt} & adipisicing elit \\
  sed do eiusmod tempor incididunt ut labore & et dolore magna aliqua.\\
\end{tabular}
\end{document}