我在幻灯片中展示了一个 UML 图,我想在覆盖层中添加一些注释。当我这样做时,连接线从开头出现。我该如何摆脱它们?
\documentclass{beamer}
\usepackage{tikz-uml}
\begin{document}
\begin{frame}
\begin{tikzpicture}
\umlemptyclass{Class}
\visible<2>{\umlnote[x=5]{Class}{Lorem Ipsum etc}}
\end{tikzpicture}
\end{frame}
\end{document}
答案1
使用\only<>
而不是 就\visible<>
成功了。