Tikz: 교차로

Tikz: 교차로

선을 건너는 데 다른 레이아웃을 원합니다.

\documentclass[tikz]{standalone}
%\usetikzlibrary{knots} %doesn't work?

\begin{document}

\begin{tikzpicture}
\node (a) at (0,0) {a};
\node (b) at (2,0) {b};
\node (c) at (1,1) {c};
\node (d) at (1,-1) {d};

\draw (a) -- (b);
\draw (c) -- (d);
\end{tikzpicture}

\end{document}

다음과 같은 모양을 얻을 수 있는 라이브러리가 있습니까?

산출

관련 정보