When making presentations (with latex beamer class), I often go for a frame layout with text and equations on the left and a corresponding figure on the right. My standard solution has been to wrap the text in a minipage and figure in another minipage and add a small space in between, but it does not work when replacing the figure with a knitr chunk.
As this is a common slide design I hope someone out there knows how to produce it.

%-------------------------------[ Text + pdf on disk works fine ]
\begin{frame}
\begin{minipage}{5cm}
Text
\end{minipage}
\hspace{.5cm}
\begin{minipage}{5cm}
\begin{figure}
\includegraphics{my_figure.pdf}
\end{figure}
\end{minipage}
\end{frame}
%-------------------------------[ Text + knitr chunk does not work ]
\begin{frame}
\begin{minipage}{5cm}
Text
\end{minipage}
\hspace{.5cm}
\begin{minipage}{5cm}
<<echo=FALSE,eval=TRUE,out.width='4cm',out.height='4cm'>>=
plot(1:10)
@
\end{minipage}
\end{frame}
\begin{columns}...in beamer+ knitr. – baptiste Nov 16 '12 at 10:02results='asis'when you only want to show the figure and nothing else; it will make theknitroutput cleaner – Yihui Xie Nov 16 '12 at 17:43