I have created longtable with some text and I want set same height for all cells.
It looks like:
\documentclass[11pt]{article}
\usepackage{longtable}
\begin{document}
\renewcommand{\tabcolsep}{0.5cm}
\renewcommand{\arraystretch}{2}
\begin{longtable}{ | p{7cm} | p{7cm} |}
\hline
TEXT TEXT TEXT TEXT.
&
TEXT TEXT TEXT.
\\ \hline
MORE TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
&
END.
\\ \hline
\end{longtable}
\end{document}
Is it possible to set same height for all cells in table?
