it seems that when using wrapfig within the beamer class, and aligning an image on the right, it sometimes breaks the text lines to make the last line of a paragraph full width, at the expense of making the first line of the paragraph much too short. A minimal example is:
Code: Select all
\documentclass[t]{beamer}
\usepackage{wrapfig}
\begin{document}
\begin{frame}
\begin{wrapfigure}[7]{r}[0pt]{4.2 true cm}
\includegraphics[height=3 true cm]{iclicker}
\end{wrapfigure}
For class participation, you should
obtain (and, later, register) an iClicker device.
\end{frame}
\end{document}