[Tex/LaTex] Increase LaTeX table row height

tablesvertical alignment

How does one increase the height of the rows in a LaTeX table?

Best Answer

Use package easytable

\documentclass{article}
\usepackage[thinlines]{easytable}
\begin{document}

\begin{TAB}(r,1cm,2cm)[5pt]{|c|c|}{|c|c|c|}% (rows,min,max)[tabcolsep]{columns}{rows}
hi & tall one    \\
hi & medium one  \\
hi & standard one\\
\end{TAB}

\end{document}

enter image description here