[Tex/LaTex] Change position of figure in beamer

beamergraphicspositioning

I need to put a figure in a specific position in a beamer presentation … Does it have a solution using X and Y coordinate or another thing? What do I need to change in the following code?

\begin{figure}
 \hspace{4cm}  \vspace{1cm}
   \includegraphics[width=0.15\textwidth,natwidth=69,natheight=87]{images/logo.jpg}
\end{figure}

Best Answer

You could also use the textpos package.

\documentclass{beamer}

\usepackage[absolute,overlay]{textpos}
\usepackage{graphicx}

\begin{document}
\begin{frame}
\begin{textblock*}{5cm}(3cm,1cm) % {block width} (coords)
\includegraphics[width=5cm]{images/logo.jpg}
\end{textblock*}
\end{frame}
\end{document}
Related Question