I'm using tabu to create a table that has a couple multi-line cells (the m style). However, when I set the line spacing outside the table, it seems that the space between lines is not recalculated in the table, and when I make the font small, the spacing is too large:

\documentclass{article}
\usepackage{tabu}
\begin{document}
\linespread{1.5}\selectfont
\noindent
\begin{tabu}{|X[m,c]|X[-2,m,c]|X[m,c]|}
{\scriptsize Line 1 \linebreak too much space here} &
{\Huge Title} &
Right side \linebreak Line 1 \linebreak and line 2
\end{tabu}
A normal paragraph: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
\end{document}
Putting another \linespread inside the table doesn't change anything. How can I solve this?


\parat the end. You can see the same effect outside of tabular it you enclose the last paragraph in a{}, and change the\linespreadinside it. Unless there is a\parthe changes inside won't have any effect. – Peter Grill Oct 3 '12 at 2:05