I try to make a slide using beamer which is mostly a list with a small picture in the top right corner. I can make this using columns and having two separate itemize environments, but this is really ugly, as the itemize environments do not line up and also the spacing is off. Currently it looks like this:
This is the code used to create the page:
\documentclass{beamer}
\begin{document}
\begin{frame}{Fancyslide}
\begin{columns}
\begin{column}{0.65\textwidth}
\begin{itemize}
\item First item, somewhat short
\item Another argument
\item Another argument
\item Long argument that should get wrapped twice because it does not fit in the line
\end{itemize}
\end{column}
\begin{column}{0.3\textwidth}
\begin{figure}
\centering
\includegraphics[width=\textwidth]{image}
\end{figure}
\end{column}
\end{columns}
\begin{itemize}
\item Another long argument which shall span the entire line
\item How to align the itemize environments?
\item How to ensure that the spacing between items of the different itemize environments is consistent with the other spacings of items?
\item Final argument
\end{itemize}
\end{frame}
\end{document}
Any ideas of how I can make this consistent and beautiful? Note: (Currently) not possible with beamer/LaTeX is a perfectly acceptable answer. At least then I would know that I should stop trying.
EDIT: Zarko provided an answer using the wrapfig package. Unfortunately I cannot reproduce his results. Taking his code and only replacing the image names by my example image I get an aweful result with pdflatex and a not satisfying one with xelatex (writing over the image). So I guess I have run into TeX's infamous version dependency issue :-(
Looking for more stable solutions if possible.




