It seems like this question gets asked a lot but with everything I have come across I was not able to figure out how to solve me problem. I have 3 figures side by side in a tabular environment and I want to be able to shift all 3 figures to the left in order to fit them on the page (right now the figures go off the page to the right). I am using the article format so there is plenty of white space to the left of the figures that I would like to utilize. here is my latex code
\begin{figure}[htbp]
\centering
\begin{tabular}{ccc}
\includegraphics[scale=0.35]{MEAInitialProb1.pdf}&
\includegraphics[scale=0.35]{MEA10Prob1.pdf}&
\includegraphics[scale=0.35]{MEA20Prob1.pdf}
\end{tabular}
\caption{Caption}
\label{fig:Prob1:MEA}
\end{figure}
tabularis wider than\textwidth, I presume. As such, they get shifted to the right. Centering them when in such an instance is covered in Center figure that is wider than\textwidth. The solution is to place the entiretabularinside a\makebox[\textwidth]{...}construction. – Werner Jun 11 '14 at 22:20\centeringtry\hss, and add another\hss\parafter\end{tabular}. However, it would be preferable to reduce the size of the figures, since what happens is that they don't fit in the margins. – JLDiaz Jun 11 '14 at 22:21\hssis not legal in a paragraph, just in an\hbox. – egreg Jun 11 '14 at 22:25