[Tex/LaTex] How to specify the row height in LaTeX table

tables

I want to create a LaTeX table with three rows which have different row heights.
How can I do this?

The following code

\renewcommand\arraystretch{2.4} \setlength\minrowclearance{2.4pt}

seems make each row has the same height.

Best Answer

Try this:

\documentclass{article}
\begin{document}
\begin{tabular}{cc}
\hline
hi & tall one\\[10ex]
\hline
hi & medium one\\[5ex]
\hline
hi & standard one\\
\hline
\end{tabular}
\end{document}

So you can specify the height of a row with the optional argument

Related Question