¿Cómo configurar el nuevo margen en la página siguiente?

¿Cómo configurar el nuevo margen en la página siguiente?

Tengo un pie de página grande que debo colocar en la primera página de un documento. Para que encaje, utilicé el paquete de geometría y aumenté el margen inferior.

Para la manipulación del encabezado/pie de página, estoy usando fancyhdr. ¿Cómo uso \newgeometry{bottom=2cm}nuevamente en la 2ndpágina del texto, sin usar \newpagey adivinar en qué parte del texto comienza la segunda página?

¿Puede LaTex ejecutar comandos en la página siguiente? Algo como

\NextPageExecute{\newgeometry{bottom=3cm}}

resolvería el problema. Aquí está el MWE:

\documentclass{article} 

\usepackage{xcolor}
\usepackage{lipsum}

\usepackage[left=2cm,right=2cm,top=2cm,bottom=3cm]{geometry}

% Header customization, get the reference to the last page. 
\usepackage{fancyhdr, lastpage}
\pagestyle{fancy}

% Header customization, get the reference to the last page. 
\usepackage{fancyhdr, lastpage}
% Fancy pagestyle for the rest of the document.
\pagestyle{fancy}
\lhead{My form 11/17}
\rhead{Page \thepage of \pageref{LastPage}}
% Remove the horizontal line from the header.
\renewcommand{\headrulewidth}{0pt}
% Remove everything from the footline.
\cfoot{}

\definecolor{CUSTOM}{HTML}{00529e}

% Set the header and footer style. 
\fancypagestyle{empty}{%
  \fancyhf{}% Clear header/footer
  \lhead{My form 11/17}
  \rhead{Page \thepage of \pageref{LastPage}}
  \lfoot{
    Something something. \\
    Memo text. \\ 
    Some address information. \\
    Telephone numbers. \\
  }
  \rfoot{
    \textcolor{CUSTOM}{\Huge{HUGE TEXT}}
  }
}


\begin{document}

\thispagestyle{empty}

\lipsum

\lipsum

\lipsum

\end{document}.

La primera página se ve así:

ingrese la descripción de la imagen aquí

Y la segunda página tiene este espacio de pie de página innecesariamente grande:

ingrese la descripción de la imagen aquí

Respuesta1

El afterpagepaquete hace exactamente lo que estás buscando. Dado que solo desea el 3cmmargen inferior en la primera página y (por ejemplo) 2cmen otros lugares, recomendaría tener el diseño predeterminado 2cmy usarlo \newgeometrysolo en la primera página (seguido de una \restoregeometry\clearpageentrada \afterpage):

\documentclass{article} 

\usepackage{xcolor}
\usepackage{lipsum}
\usepackage{afterpage}

\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}% 2cm bottom (usual)

% Header customization, get the reference to the last page. 
\usepackage{fancyhdr, lastpage}
\pagestyle{fancy}

% Header customization, get the reference to the last page. 
\usepackage{fancyhdr, lastpage}
% Fancy pagestyle for the rest of the document.
\pagestyle{fancy}
\lhead{My form 11/17}
\rhead{Page \thepage of \pageref{LastPage}}
% Remove the horizontal line from the header.
\renewcommand{\headrulewidth}{0pt}
% Remove everything from the footline.
\cfoot{}

\definecolor{CUSTOM}{HTML}{00529e}

% Set the header and footer style. 
\fancypagestyle{empty}{%
  \fancyhf{}% Clear header/footer
  \lhead{My form 11/17}
  \rhead{Page \thepage of \pageref{LastPage}}
  \lfoot{
    Something something. \\
    Memo text. \\ 
    Some address information. \\
    Telephone numbers. \\
  }
  \rfoot{
    \textcolor{CUSTOM}{\Huge{HUGE TEXT}}
  }
}

\begin{document}
\newgeometry{left=2cm,right=2cm,top=2cm,bottom=3cm} % Change to 3cm bottom (temp)
\thispagestyle{empty}
\afterpage{\restoregeometry\clearpage}
% CONTENT HERE

\lipsum

\lipsum

\lipsum

\end{document}

Página 1:

Página 1

Página 2:

página 2

información relacionada