In order to fit multiple figures on one line, my document has A4 (portrait) and A3 (landscape) pages. To set up the A3 pages I created a new environment (a trick I adapted from another solution). Please note that I can't create a separate pdf for the A3 pages and add it in because figure references, pages, sections etc. will be constantly changing.
However, when I plot the figures on the A3 page, the main caption is placed as if it was A4. (See below) How do I center the caption relative to the A3 page?
I include the code without the text in the A4 sections:
\documentclass[12pt]{article}
% Pictures & Labels
\usepackage[capitalise]{cleveref}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{textcomp}
\usepackage{float}
\usepackage[section]{placeins}
% Paper Style
\usepackage[a4paper,
width=150 mm,
top=25 mm,
bottom=25 mm]
{geometry}
\usepackage[title,toc,page]{appendix}
%% Allow A3 sheets - - New environment
\newenvironment{a3page}
{\newpage
\advance\textwidth\pdfpagewidth
\headwidth = \textwidth
\pdfpagewidth=2\pdfpagewidth}
{\newpage}
\begin{document}
%% Start A3 page
\begin{a3page}
\section{Title}
\begin{figure}[H]
\centering
\begin{subfigure}[t]{0.16\textwidth}
\centering
\includegraphics[height=4cm]{images/pic.png}
\caption{}
\label{subfig:}
\end{subfigure}%
%
%
\begin{subfigure}[t]{0.16\textwidth}
\centering
\includegraphics[height=4cm]{images/pic.png}
\caption{}
\label{subfig:}
\end{subfigure}%
%
%
\begin{subfigure}[t]{0.16\textwidth}
\centering
\includegraphics[height=4cm]{images/pic.png}
\caption{}
\label{subfig:}
\end{subfigure}%
%
%
\begin{subfigure}[t]{0.16\textwidth}
\centering
\includegraphics[height=4cm]{images/pic.png}
\caption{}
\label{subfig:}
\end{subfigure}%
%
%
\begin{subfigure}[t]{0.16\textwidth}
\centering
\includegraphics[height=4cm]{images/pic.png}
\caption{}
\label{subfig:}
\end{subfigure}%
%
%
\begin{subfigure}[t]{0.16\textwidth}
\centering
\includegraphics[height=4cm]{images/pic.png}
\caption{}
\label{subfig:}
\end{subfigure}%
%
%
\begin{subfigure}[t]{0.05\textwidth}
\centering
\includegraphics[height=4cm]{images/pic2.png}
\end{subfigure}%
\centering
\caption{This caption isn't centered}\label{fig:}
\end{figure}
%
%
\end{a3page}
\end{document}


