Search found 2 matches

by Matt
Tue Jul 19, 2011 11:25 am
Forum: Graphics, Figures & Tables
Topic: Page breaking and landscape longtables
Replies: 1
Views: 6317

Page breaking and landscape longtables

I have an answer:

Use the afterpage package to start the landscape environment after the end of the current page.


\afterpage{
\pagestyle{empty}
\begin{landscape}
\input{./Tables/myLongTable.tex}
\end{landscape}
\pagestyle{fancy}
}


I'd like to adjust the page margins using the geometry ...
by Matt
Fri May 27, 2011 12:50 pm
Forum: Graphics, Figures & Tables
Topic: Page breaking and landscape longtables
Replies: 1
Views: 6317

Page breaking and landscape longtables

Hello

I would like a particular behaviour in my document and I can't find anything about how to achieve it.

I have a couple of longtables in my document, which are wide enough to require empty landscape pages. I put them in with the code below. I would like the pages this produces to slot nicely ...