I have four large figures which I would like to tile 2x2. These figures will need to go beyond the \textwidth boundaries but I still want the 2x2 tile centered in the page. Looking at Center figure that is wider than \textwidth I've only been able to get the \centerfloat command from this answer to produce the desired outcome.

I'd like to be able to do this with the adjustbox package as described in this answer, but I'm having trouble getting creating the two rows of figures. Is it possible to get this functionality from the adjustbox package? I was trying to use the minipage option but haven't had success. This is what I currently get.

\documentclass{article}
\usepackage{subcaption}
\usepackage{mwe}% for this example only
\usepackage{adjustbox}
\begin{document}
\begin{figure}
\begin{adjustbox}{center}
\centering
\begin{subfigure}{.6\textwidth}
\includegraphics[width=1.0\linewidth]{example-image}
\end{subfigure}%
\begin{subfigure}{.6\textwidth}
\includegraphics[width=1.0\linewidth]{example-image}
\end{subfigure}
\begin{subfigure}{.6\textwidth}
\includegraphics[width=1.0\linewidth]{example-image}
\end{subfigure}%
\begin{subfigure}{.6\textwidth}
\includegraphics[width=1.0\linewidth]{example-image}
\end{subfigure}
\end{adjustbox}
\end{figure}
\end{document}


adjustbox, it's thecentercommand in the line\includegraphics[width=1.2\textwidth,center]{image}%. Alternatively you can use adjustbox as\begin{adjustbox}{center}which I thought might be the way to do it. Are you able to modify your solution to work for captions, or possibly use adjustbox? – user3756 Feb 18 '17 at 07:29\includegraphics[width=1.2\textwidth,center]{image}byadjustboxdisplays nocenterparameter. Why? – Y. zeng Jun 12 '23 at 11:35[valign=center]and\usepackge[export]{adjustbox}? – John Kormylo Jun 12 '23 at 14:09