I m working on one table which has one row which spans over 3 rows but text in this row is very lengthy so it uses more than 3 lines so all text is not visible. How can i increase row height dynamically to fit this row.
\documentclass[crop]{standalone}
\usepackage{multirow}
\begin{document}
\Huge
\begin{tabular}{|c|c|c|}
\hline
\multirow{3}{*}{\parbox{8cm}{This is line1 ~\\ ~\\ This is line 2 ~\\ ~\\ This is line3 ~\\ ~\\ This is line 4}} & cell1 & cell2 \\ \cline{2-3}
& cell3 & cell4 \\ \cline{2-3}
& cell5 & cell6 \\ \hline
\end{tabular}
\end{document}
line3 and line4 are not visible as it uses more than 3 row space.
As shown in the image:

How can i control it?
Regards

\footnotesizeshould be sufficient to fit everything in there. However, it makes NO sense to allocate 3 rows as space and than attempt to fit 4 rows, with many white space rows, within that area. If you need 4 rows, why not use 4 rows? – Mythio Aug 21 '13 at 08:39