I currently have a graph that uses subfigures as follows:
\begin{figure}[!htbp]
\centering
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[width=3.5cm]{figure1.eps}
\caption{}
\end{subfigure}%
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[width=3.5cm]{figure2.eps}
\caption{}
\end{subfigure}%
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[width=3.5cm]{figure3.eps}
\caption{}
\end{subfigure}%
\begin{subfigure}[b]{0.3\textwidth}
\centering
\includegraphics[width=3.5cm]{figure4.eps}
\caption{}
\end{subfigure}%
\FigureCaptionOpt{caption}{captionCopy}
\end{figure}
As you probably noticed, it overflows the text, since each of the images is 0.3\textwidth and there are 4 images. Now, the whole thing is not centered, instead, it is aligned with the left margin and it overflows the right margin. Essentially, I want to shift it to the left, so that it overflows both margins by the same amount, while maintaining the sizes I specified in the command above.


