[Tex/LaTex] Shifting Figure to the Left in Beamer

beamergraphicshorizontal alignment

I have a figure in a .pdf file that I'd like to shift to the left a little bit in how it appears in the slide. How may I do this?

\frame
 { 
 \frametitle{Slide Title}
  \vspace{-0.75cm} 
   \begin{center}
   \includegraphics[width = 12.25cm]{PicTitle.pdf}
   \end{center}
 } 

Best Answer

You could try putting some space to the right of the figure.

\begin{center}
\includegraphics[width = 12.25cm]{PicTitle.pdf} \hspace*{4cm}
\end{center}

Just change the '4cm' as appropriate to get the effect you need.