I have a slide that has some items and then underneath I have a figure, which is define as tikzpicture, while I want to point some arrows from items to the figure. The problem is that now both the figure and the items start from the center of the slide, and basically the figure is on top of the items. Any ideas how to solve this?
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{positioning,tikzmark}
\begin{document}
\begin{frame}{Test}
\begin{itemize}
\item Item 1 \tikzmark{a}
\item Item 2 \tikzmark{b}
\item Item 3 \tikzmark{c}
\item Item 4
\end{itemize}
\centering
\begin{tikzpicture}[remember picture,overlay]
\node {\includegraphics[width=0.8\textwidth]{my-picture}};
\foreach \i/\j in {(0.5,0.66)/a} \draw [cyan,->] ({pic cs:\j}) -- \i;
\end{tikzpicture}
\end{frame}
\end{document}
The resulting layout should look like this sketch:



columnsortabularenvironment? – Timothy Truckle Jan 07 '17 at 12:25at (...,...)after\nodeindicating some appropiate coordinates in order to shift the picture. – CarLaTeX Jan 07 '17 at 12:25\begin{frame}[t]{Test}? – samcarter_is_at_topanswers.xyz Jan 07 '17 at 12:36