Alexis Lee writes:
I have a Latex table (begin{tabular}), and I want it to break one of the columns if it needs to.
So rather than:
<------------ size of page ------------> /---------------------------------------------------\ | field | field | long field | field | | field | field | long long long long field | field | | field | field | long field | field | ---------------------------------------------------/
I get: /--------------------------------------\ | field | field | long field | field | | field | field | long long | field | | | | long long | | | | | field | | | field | field | long field | field | --------------------------------------/
Anyone?
Use something like
\begin{tabular}{|l|l|p{3in}|l|}
to set the third column as a 3-inch-wide paragraph. As Leslie Lamport used to say, "it's documented in the [his] LaTeX book", p 205.
..Adrian