I have a 2×2 array of subfigures and the ideal size I'd like them at is a bit wider than the textwidth. I saw this solution for a single figure (Custom margin settings for figure in LaTeX) but am not sure how to adapt it for subfigures.
edit: a 1×2 example of the way I'm building my subfigures
\begin{figure}[ht!]
\centering
\begin{subfigure}[b]{6cm}
\centering
\includegraphics[width=6cm]{...}
\end{subfigure}
\quad
\begin{subfigure}[b]{6cm}
\centering
\includegraphics[width=6cm]{...}
\end{subfigure}
\end{figure}
Best Answer
You can use a
\makebox
for each row of subfigures (change the lengths to suit your needs):The
demo
option forgraphicx
simply replaces actual figures with black rectangles; do not use that option in your actual document.