在句子中移动箭头和实体

在句子中移动箭头和实体

目前,两个箭头指向跳了超过在句子中。我想知道如何将这两个箭头从(在句首)

编辑:我正在尝试复制幻灯片 12-25讲话。

我唯一的选择是包含带有指向不同单词的箭头的图像。

\begin{document}
  \frame{
    \frametitle{Learning Algorithm(Contd.)}

    \begin{figure}
          \includegraphics[width=.9\textwidth]{Fig1.PNG}
          \label{fig:Fig1}
    \end{figure}

  }

  \frame{
    \frametitle{Learning Algorithm(Contd.)}

    \begin{figure}
          \includegraphics[width=.9\textwidth]{Fig2.PNG}
          \label{fig:Fig2}
    \end{figure}

  }
  \end{document}

图。1

图2

答案1

我建议您使用自定义array环境来堆叠单词/箭头/解释三元组。观察\color宏的使用以设置颜色。

在此处输入图片描述

\documentclass{beamer}

\usepackage{mathtools} % for "\mathclap" macro
\newcommand\stacktab[2]{%
    $\begin{array}[t]{@{}c@{}}
     \text{#1} \\ \uparrow \\ \mathclap{#2} \end{array}$}
\newcommand\uIN{\upsilon^{}_{\!IN}}
\newcommand\uOUT{\upsilon^{}_{\!OUT}}

\begin{document}
\begin{frame}
The quick brown fox \stacktab{jumped}{\uOUT} 
\stacktab{\color{blue}over}{\uIN} the lazy dog.

\bigskip
\stacktab{\color{magenta}The}{\uOUT} quick brown fox jumped 
\stacktab{\color{red}over}{\uIN} the lazy dog.

\bigskip
The quick brown fox jumped over the \stacktab{lazy}{\uIN} 
\stacktab{\color{purple}dog}{\ \uOUT}. % shift "\UOUT" slightly to the right

\end{frame}
\end{document}

相关内容