Under Beamer, how to draw a sipmle arrow between words in itemize?
I do not need to configure the size, location or any other detail settings. What I need is simply a default arrow.
I tried \rightarrow and \implies but without luck.
Under Beamer, how to draw a sipmle arrow between words in itemize?
I do not need to configure the size, location or any other detail settings. What I need is simply a default arrow.
I tried \rightarrow and \implies but without luck.
To use the arrows, you need to be in math mode. E.g.,
\begin{itemize}
\item This $\rightarrow$ that
\end{itemize}
You shouldn't need any special packages for that to work.
Choose the one you like:

% arara: pdflatex
\documentclass{beamer}
\usepackage{marvosym} % \MVRIGHTarrow
\usepackage{stmaryrd} % \shortrightarrow
\usepackage{textcomp} % \textrightarrow
\begin{document}
\begin{frame}
\begin{itemize}
\item This \MVRightarrow{} that
\item This $\shortrightarrow$ that
\item This \textrightarrow{} that
\item This $\rightarrow$ that
\item This $\longrightarrow$ that
\end{itemize}
\end{frame}
\end{document}
And if you prefer the "implies" version:

\begin{itemize}
\item This $\Rightarrow$ that
\item This $\Longrightarrow$ that
\item This $\implies$ that
\end{itemize}
\rightarrow? Did you do$\rightarrow$? – Adam Liter Apr 16 '14 at 15:11