I'm doing a beamer presentation and I have two columns with items, and I would like to draw an arrow conecting two items in the different columns. I'm not familiar with Tikz, son I having some problems. How can I do it ?
A minimal preamble here:
\documentclass{beamer}
\usetheme{Darmstadt}
\usepackage{multicol}
\begin{document}
\begin{frame}
\begin{columns}
\column{.5\textwidth}
\begin{itemize}
\item element A
\item element B
\item element C
\item element D
\item element E
\end{itemize}
\column{.5\textwidth}
\begin{itemize}
\item element F
\item element G
\end{itemize}
\end{columns}
\end{frame}
\end{document}
I would like to draw an arrow between elements B and F.
Thank you in advance!!
