General ⇒ break line in table
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
break line in table
cheers
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
break line in table
you could use a p-column (p like parbox) and force a linebreak by inserting \\ for example:
Code: Select all
\begin{tabular}{p{2cm}p{3cm}}
This\\is column 1 & column2
\end{tabular}
The array package provides m (middle) and b (bottom) column type.
Stefan