|
From: Alain D. <del...@ti...> - 2006-03-25 16:21:58
|
Hello,
Alexander Nervedi a =E9crit :
> Hi miktex Gurus,
>
> i am struggling with long, baaad ugly tables spill over into 3-4 pages.=
>
> i have everything going through longtable. but the table spills into=20
> the right margin, even after making the script \tiny. i tried=20
> scaleboxing the longtable mikitex bailed out on me .. perhaps=20
> longtable does not support scale box. is there any way to control=20
> sizing within the longtable environment ?
I think this has nothing to do with longtable. Your data are just too=20
wide to get on the page.
Try to use a sideway system.
For example using the rotating package and then
\begin{table}
\centering
\begin{sideways} %<=3D=3D=3D=3D=3D=3D=3D for rotations
\begin{tabular}{|c|c|c|}
\hline
abcde & efghij & klmno\\
\hline
pqrst & uvwxyz & 12345\\
\hline
6789 & 7412 & 852369\\
\hline
\end{tabular}
\end{sideways} %<=3D=3D=3D=3D=3D=3D=3D for rotations
\caption{Test de table renvers=E9e}
\end{table}
But I don't know if it work with long table; there perhaps could be a=20
package/option/parameter for this in rotating or other.
I hope it did help, let us know,
Regards,
Alain Delmotte
|