Newsgroups: comp.text.tex Date: 1995/05/29
I'm trying to set a table in LaTeX, and since it will have long entries, decided that landscape would be best for it. The output looks like the new dimensions aren't getting to (La)TeX, as it seems to be using the portrait textwidth (unless the margins are changed for landscape?). Would someone be able to tell me what is happening here, or am I missing something obvious :-) .
Input file
\documentclass[landscape]{article} \begin{center} {\LARGE A Centred Heading} \begin{tabular}{llllll} text & more text here & a little text & a little more text & text & a lot more text for TeX to typeset, but which overflows the hbox. \end{tabular} \end{center} \end{document}
From .log file: overfull \hbox (150+ pt too wide)…
If you will be using dvips as your dvi driver, you can use the rotating package from your nearest CTAN. The rotating package defines an environment sidewaystable.
Jeffrey Goldberg