Hello,
I am working on a LaTeX class to meet my school's thesis guidelines.
I haven't found a way to fully meet the requirements for rotating
pages for large tables and figures. The guidelines state that pages
which contain sideways tables or figures should be turned sideways in
the PDF. I can accomplish this using the pdflscape package.
The tricky part is rotating the page number. Instead of having the
number printed in the normal position, the rules state that the number
should be rotated as well. Their idea is that as you read the
document in your favorite PDF viewer, the page number on rotated pages
will be easily readable. For an example, see page 41 in the
guidelines at
http://www.ncsu.edu/grad/etd/docs/etd-guide.pdf
I have constructed a workaround by using fancyhdr and positioning the
page number within a picture environment. While I can get the page
number positioned correctly this way, there is no footskip to keep the
proper distance between the number and the rest of the page content
(in my case I am putting the number on the bottom). Rotating the
header and footer would presumably solve this problem.
This question is identical to the one at
http://www.latex-community.org/forum/viewtopic.php?f=5&t=1771#p21780
One suggestion on that thread is to use the gmeometric package. From
the package documentation, it seems to provide adequate options.
Unfortunately, I can't seem to get it to work in my thesis document,
or even in a short test document. For example, I would expect the
following to put page 2 in landscape, but this is not the case.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
\usepackage{lipsum}
\usepackage[portrait]{gmeometric}
\begin{document}
\lipsum[1-3]
\newpage
\geometry{landscape}
\lipsum[1-3]
\newpage
\geometry{portrait}
\lipsum[1-3]
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
I realize that this is an odd request, and that this is not a good
typographic practice. However, the rules are set and I don't have the
freedom to change them.
Thanks for any ideas,
-Josh