I've read Setting different margin sizes in different pages and Change \textwidth and \textheight in mid-document, but it doesn't work to well for my use case.
I'm using the geometry and fancyhdr package. I did some 'hacking' to accomplish what I have right now, which pretty much is just that the first page has a big top-margin of 2.5in so that my fancyhdr fits in there nicely.
I only want the header on the first page though, thus I set thispagestyle{fancy}. However, the margin still applies to the second page and I don't know how to change that.
newgeometry wouldn't work, because I don't know where exactly the first page will end. Of course I could do some more hacking and just do trial&error, but I thought maybe there is some better way.
In short: Is there a way to change the margin after the first page?
Here is a MWE:
\documentclass[a4paper,10pt,oneside]{article}
\usepackage[english]{babel}
\usepackage[letterspace=150]{microtype}
\usepackage{fancyhdr}
\usepackage[top=2.5in,bottom=1.5in,right=1.5in,left=1.5in,headheight=95pt,headsep=2cm]{geometry}
\usepackage{lipsum}
\thispagestyle{fancy}
\pagestyle{empty}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[C]{
\fontsize{22}{22}\scshape{I am\\ a\\ title}\\
\fontsize{12}{25}\scshape{Sub {\large\textperiodcentered} Title}
}
\begin{document}
\lipsum[1-2]
\lipsum[1-4]
\lipsum[1-2]
\end{document}
\pagebreakand then use\newgeometryI suppose? – cherrung Nov 21 '13 at 16:24quotethat changes teh effective margins rather than newgeometry which really changes the page size (unless you really need page head and foot to change as well, but either way if you do a forced page break it is much easier. – David Carlisle Nov 21 '13 at 16:29