节点之间的连接处有圆角

节点之间的连接处有圆角

在 tikz 中连接节点时,例如

\draw (one-out) -- (two-in);
\draw (two-out) -| (three-in-down);

连接通常具有直角和尖角。有没有办法让它们更圆?或者我必须在这些角上放置圆弧才能在节点连接中获得圆角?

答案1

如上所述,请发布完整的最小示例。圆角选项可在手册中找到。

以下是一个例子

\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}
  \coordinate (A) at (0,0);
  \coordinate (B) at (3,3);
  \draw[rounded corners=7mm] (A) -| (B);
  \draw[rounded corners=1mm,red,very thick,opacity=0.5] (A) -| (B);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容