[Tex/LaTex] Placing image below the bullet points

beamergraphicspositioning

\documentclass{beamer}

\usepackage{pgf}
\usepackage{polski}
\usepackage[cp1250]{inputenc}
\usepackage{xcolor,hyperref}
\usepackage{graphicx}
\usepackage{float}
\begin{frame}[t]
\frametitle{Bezrobocie}

\begin{itemize}

\setbeamertemplate{itemize items}[square]   
\item <1-> ddddd
\item <2-> dddddd 
\end{itemize}

\includegraphics[scale=0.3, center, trim=1.75cm 11cm 0.5cm 11cm]{ddddd}



\end{frame}
\end{document}

Having the following frame in latex beamer i want to position includepgraphics object bellow the bullet points furthermore i want this image to appear as the last thing on slide. How to do this, because i am not able to find reasonable option?

Best Answer

to uncover the image at last, you should use the uncover option :

\uncover<2>{\includegraphics[width = \textwidth]{image.pdf}}

the number is the number of the slide.

To put the image at the right side and under the bullet, you can use a very small line where you put a unbreakable space with the ~ sign. One example is :

\begin{itemize}
    \setbeamertemplate{itemize items}[square]   
    \item <1-> ddddd
    \item <2-> dddddd 
    \item
    {\fontsize{0.1}{0.1}\selectfont ~}\vspace{-5pt}{\fontsize{0.1}{0.1}\selectfont ~}
    \uncover<3>{\includegraphics[width = \textwidth]{images}}
\end{itemize}

If it's only below,

\begin{itemize}
    \setbeamertemplate{itemize items}[square]   
    \item <1-> ddddd
    \item <2-> dddddd 
\end{itemize}
\uncover<3>{\includegraphics[width = \textwidth]{images}}

should work fine.

I'm not sure that I well understood your question. Let me know.