如何在 Beamer 中的单词之间画简单的箭头?

如何在 Beamer 中的单词之间画简单的箭头?

在 Beamer 下,如何在 itemize 中的单词之间画一个简单的箭头?

我不需要配置大小、位置或任何其他细节设置。我需要的只是一个默认箭头。

我尝试过\rightarrow\implies但是没有成功。

答案1

要使用箭头,您需要处于数学模式。例如,

    \begin{itemize}
    \item This $\rightarrow$ that
    \end{itemize}

您不需要任何特殊的包来实现该功能。

答案2

选择您喜欢的一个:

在此处输入图片描述

% 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}

如果你更喜欢“暗示”版本:

在此处输入图片描述

\begin{itemize}
    \item This $\Rightarrow$ that
    \item This $\Longrightarrow$ that
    \item This $\implies$ that
\end{itemize}

相关内容