I am trying to do a document in which I have a text box in the first page and the rest of document I have fancy style.
I tried to do it and I can do it if I do two different documents (and so two different tex files). In the first one I used
\usepackage[paperwidth=16cm,paperheight=24cm]{geometry}
\usepackage[a4,frame,center]{crop}
and in the second one I used:
\documentclass[a4paper,twoside]{report}
\pagestyle{fancy}
Is there any way to do just one document?

Code
\documentclass{article} \usepackage[paperwidth=16cm,paperheight=24cm]{geometry} \usepackage[a4,frame,center]{crop} \usepackage{lipsum}
\begin{document} \thispagestyle{empty} \lipsum
%now i want to use \documentclass[a4paper,twoside] \newpage \newgeometry{a4paper,twoside} \restoregeometry \lipsum
\end{document}
The first part is ok but the second is not...what is supposed to write in newgeometry?
– pipita Aug 11 '16 at 17:17