[Tex/LaTex] How to align an image to center

beamerhorizontal alignment

How do I align an image to center?

In a beamer presentation I have a 2-3 items on a slide followed by an image.
The image is not wide enough to cover whole slide, so it leaves around 30% space from right. How do I adjust it to leave enough space on both sides?

\begin{frame}
\frametitle{Outlook}
\begin{itemize}
\item apps
\item apps
\item apps
\includegraphics[scale=0.3]{P2P}    
\end{itemize}
\end{frame}

Best Answer

It is enough to use the center enviroment:

\begin{center}
    \includegraphics{yourimage}
\end{center}
Related Question