Graphics, Figures & Tables ⇒ Height of single row in table
-
- Posts: 11
- Joined: Wed Sep 15, 2010 2:44 pm
Height of single row in table
does anybody know whether I can adjust the height of single rows in a table without influencing the other?
Cheers
Newbi
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Height of single row in table
Height of single row in table
there's a number of ways to achieve what you desire; however, the simpler approach (in my opinion) would be to use some of the commands provided by the makecell package; a little example:
Code: Select all
\documentclass{article}\usepackage{makecell}\begin{document}\begin{tabular}{cc}Column1a & Column2a \\Column1b & \Gape[1cm][1cm]{Column2b} \\Column1c & Column2c \\Column1d & Column2d \\\end{tabular}\end{document}
-
- Posts: 11
- Joined: Wed Sep 15, 2010 2:44 pm
Re: Height of single row in table
Any Ideas?
Height of single row in table
-
- Posts: 11
- Joined: Wed Sep 15, 2010 2:44 pm
Height of single row in table
Code: Select all
\\[-2ex]
Thanks a lot!
Newbi