我在使用 TikZ-UML 时遇到问题,因为当我的图表中存在关系时,边界框会意外地变大。
\begin{tikzpicture}[framed]
\umlsimpleclass[x=0,y=0]{A}
\umlsimpleclass[x=0,y=-2]{B}
\umlinherit{B}{A}
\end{tikzpicture}
结果是
而当我的图中没有任何关系时似乎没有问题:
\begin{tikzpicture}[framed]
\umlsimpleclass[x=0,y=0]{A}
\umlsimpleclass[x=0,y=-2]{B}
%\umlinherit{B}{A}
\end{tikzpicture}
答案1
显然我设置了relation weight=2pt
里面\tikzumlset
。我本来以为这会增加关系的线宽,结果忘了把它删掉。
删除relation weight
解决了我的问题。