添加评论表单,点击后出现并消失

添加评论表单,点击后出现并消失

让我们考虑一下如何在投影仪上构建它,知道我们可以改变它上面的文本,并使它们在点击时出现并在点击时消失,以便我们每次谈论特定的事情时都可以制作许多它们?

特别是试图将其作为评论并出现在白色部分,但这是一个可能的图形,并且每次点击它都会出现特定的文本!这是图 抱歉,我对 latex 和 beamer 还很陌生。谢谢您的时间和考虑

答案1

在将边界框设置为图片大小的范围内添加云注释。这样,云就不会占用额外空间。(实际上,在这个例子中不需要范围,但有了它,图形可以在范围之后继续,而不会影响云部分。)

\documentclass{beamer}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{calc,shapes}
\begin{document}
\begin{frame}
  \frametitle{Test}
  \centering
  \begin{tikzpicture}
    \node[inner sep=0pt](Img){\includegraphics[width=0.7\linewidth]{example-image}};
    \draw<2->[line width=2pt,red](Img.north west) rectangle +(4,-2.5);
    \draw<3->[line width=2pt,black!20!green](Img.south west) rectangle ($(Img.south east) + (0,3.1)$);
    \onslide<4->{%
      \begin{scope}
        \useasboundingbox(Img.south west)--(Img.north east);
        \node[draw,cloud,anchor=south east,aspect=3,fill=blue,text=white] (Cloud) at ($(Img.north east)+(-0.5,0.5)$){2 variables};
        \draw[-latex,very thick] (Cloud.south west) to[bend right] ($(Img.center)+(2,1)$);
      \end{scope}}
  \end{tikzpicture}
\end{frame}
\end{document}

在此处输入图片描述

相关内容