在 tikz-uml 中使用覆盖时出现杂散线

在 tikz-uml 中使用覆盖时出现杂散线

我在幻灯片中展示了一个 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<>成功了。

相关内容