--
Luca Ferrari,
fluc...@libero.it
You can specify the column to be of p-type (fixed width, justified). Like
this:
begin{tabular}{p{5cm} p{5cm}}
very very very very very very very very very very very very very very very
very long text & just a bit more
\end{tabular}
> In other words Latex writes
> all the text on a single line. I've tried to insert the '\\' into the
> coloumn text but it's not what I want.
\\ in a tabular environment has a different meaning, it ends a table row.
\newline does what you intend to do.
Regards,
Wald
\begin{tabular}{cp{5cm}}
....
\end{tabular}
now the 2. column will have a width of 5cm and it will break the line
acordingly
--
/daleif
F2.10 - Institut for Matematiske Fag, Matematisk Afdeling
Århus Universitet
c, l, and r are no-line-break-columns. Use p{...} if you want lines to
be broken. Use package ltablex if you want LaTeX to calculate column
widths.
Martin
c, l, and r are no-line-break-columns. Use p{...} if you want lines to
c, l, and r are no-line-break-columns. Use p{...} if you want lines to
You have to specify a fixed width column (using the p{width} specifier)
otherwise LaTeX doesn't know where to break long lines.
Peter W.