Timothy
unread,Mar 2, 2009, 1:58:45 AM3/2/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LaTeX Users Group
I'm having trouble with landscape as well. I'm building using
pdflatex, and working from a .sty file and template docs set up for a
dissertation. I want to turn some wide tables sideways.
The main template document I'm using has "\usepackage{lscape}" in it,
and one of the chapters has the following table code:
\begin{landscape}
\begin{table}%[p!]
\begin{center}
\caption[Short table caption for LOT]{Sample table caption (to appear
with the actual table). \label{sampletable}}
\vspace{0.3in}
\begin{tabular}{ccc}
\hline
\hline
Col A & Col B & Col C \\
\hline
1 & 2 & 3 \\
4 & 5 & 6\\
\hline
\end{tabular}
\end{center}
\end{table}
\end{landscape}
When I build, I get a page blank except for the page number. Based on
just the page number, the page appears to still be in portrait mode,
but I would want the page number oriented as if in portrait mode
anyway.
I've replaced the \usepackage{lscape} with \usepackage{pdflscape}
since I'm using pdflatex. The behavior is slightly different. For one
thing, it takes 4 builds in a row to stabilize. For the first 3
builds, the whole doc goes into landscape mode and looks terrible. On
the fourth build, it returns to portrait mode. Then instead of a page
blank except for the page number, I get a wholly blank page.
I'd be grateful for hints.
-Timothy