how do I get the page number to be in landscape mode like the regular text?
It should be placed on the right edge if the paper is standing upright! And it should be rotated 90 degrees like the rest of the landscaped text.
I hope you understand.. Please ask if you need more info.
I am using memoir (article) and have tried both with lscape and pdflscape, but it doesn't seem to help

And I can't find any usable info about it in memman.pdf, lscape.pdf or pdflscape.pdf. (I'm on a mac with MacTeX 2007).
Small example:
Code: Select all
\documentclass[11pt,a4paper,openany,article,final]{memoir}
\usepackage[english]{babel}
\usepackage[left=2.0cm,top=2.0cm,bottom=2.4cm,right=2.0cm]{geometry}
\usepackage{blindtext}
\usepackage{lscape}
%\usepackage{pdflscape}
\pagestyle{plain}
\begin{document}
AAA \Blindtext
\begin{landscape}
BBB \Blindtext
\end{landscape}
CCC \Blindtext
\end{document}
Johan