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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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