1

I'm using landscape to rotate title pages. The problem is that title page is not limited and may require more than one page. And there are different colon-titles in first and others pages. I want the foot and head colon-titles to be rotated when I'm using landscape mode. How can I do it? Thank you in advance!

Maria
  • 145
  • 1
    Welcome to TeX.SX! Could you provide a minimal working example (MWE) of what you have already? – Markus Nov 27 '14 at 07:37
  • Regarding the header and footer, see http://tex.stackexchange.com/questions/209685/landscape-mode-and-page-numbering/209692#209692 – John Kormylo Nov 27 '14 at 16:01

1 Answers1

3

Instead of using a landscape package, one could lay out the page using tikzpagenodes and only rotate the text. For example:

title page

\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{tikzpagenodes}

\begin{document}
\thispagestyle{empty}
\begin{tikzpicture}[remember picture,overlay]
\path
  (current page text area.west) +(-\headsep,0pt) node[above,rotate=90,inner sep=0pt] {header}
  (current page text area.east) +(\footskip,0pt) node[above,rotate=90,inner sep=0pt] {\thepage}
  (current page text area.center) node[rotate=90,inner sep=0pt]
    {\begin{minipage}{\textheight}
    \begin{center}
    \Huge A Gigantic, Humongous, Very Large and Really Over-hyped Title!!!
    \end{center}
    \end{minipage}
  };
\end{tikzpicture}

\newpage
A normal page.
\end{document}
John Kormylo
  • 79,712
  • 3
  • 50
  • 120