I'm trying to change the size of a single page in my document. Following this and this answer, I used \eject \pdfpagewidth=8.27in \pdfpageheight=15in, but the page number is not at the bottom, but at it's usual distance from top in a normal page as shown in the below figure. How can I make the page number go to the bottom?
Code snippet:
\documentclass{article}
\title{Summary of various Image and Video Quality Metrics on various Databases}
\author{Nagabhushan S N}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{xcolor}
\usepackage{float}
\usepackage{array, makecell}
\usepackage[paperheight=11.69in,paperwidth=8.27in,margin=1in,footskip=0.25in]{geometry}
\usepackage[pagebackref=true]{hyperref}
\hypersetup {
colorlinks = true
}
\begin{document}
\eject \pdfpagewidth=8.27in \pdfpageheight=15in
\section{Blah blah blah}\label{sec:vqa}
More blah blah blah
\end{document}
Sample Image:
PS: I'm using pdflatex.

