tkiz를 사용하여 자동으로 줄 끝 부분에 레이블을 배치하고 싶습니다.
불행하게도 "자동"은 레이블을 줄 끝의 중앙에 배치합니다.
예
\documentclass[a4paper]{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\newcommand\ua[6]{%
\draw (#1) -- (#4)
node[at start, auto=left]{#2}
node[at start, auto=right]{#3}
node[at end, auto=left]{#5}
node[at end, auto=right]{#6};
}
\begin{tikzpicture}[node distance=4cm]
\node(a)[draw, rectangle, align=left]{A\\head};
\node(b)[draw, rectangle, right=of a, align=left]{B\\head};
\node(c)[draw, rectangle, below=of b, align=left]{C\\head};
\node(d)[draw, rectangle, left=of c, align=left]{D\\head};
\ua{a}{a1 label}{a2 label}{b}{b1 label}{b2 label}
\ua{b}{b3 label}{b4 label}{c}{c1 label}{c2 label}
\ua{c}{c3 label}{c4 label}{d}{d1 label}{d2 label}
\ua{d}{d3 label}{d4 label}{a}{a3 label}{a4 label}
\end{tikzpicture}
\end{document}
나는 이와 같은 것을 기대합니다. (여기서 레이블이 있는 줄에 대한 명령을 얻으려고 하는 이유를 알 수 있습니다.)
\documentclass[a4paper]{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[every node=./style={align=center}, node distance=4cm]
\node(a)[draw, rectangle, align=left]{A\\head};
\node(b)[draw, rectangle, right=of a, align=left]{B\\head};
\node(c)[draw, rectangle, below=of b, align=left]{C\\head};
\draw (a) -- (b)
node[at start, anchor=south west]{a1 label}
node[at start, anchor=north west]{a2 label}
node[at end, anchor=south east]{b1 label}
node[at end, anchor=north east]{b2 label};
\draw (b) -- (c)
node[at start, anchor=north east]{b1 label}
node[at start, anchor=north west]{b2 label}
node[at end, anchor=south east]{c1 label}
node[at end, anchor=south west]{c2 label};
% ... and so on...
\end{tikzpicture}
\end{document}
참고: "pos", "near end", "near start" 등에 대해 알고 있지만 짧은 레이블을 사용하면 결과가 좋지 않고 긴 레이블을 사용하면 여전히 기본 노드와 겹칩니다.
답변1
let
, calc
및 label
:을 사용하는 방법
\documentclass[varwidth,border=50]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{positioning}
\begin{document}
\newcommand\ua[6]{
\draw (#1) -- (#4)
let
\p1=($(#4)-(#1)$),
\n1={atan2(\y1,\x1)} % for PGF < 3.0 atan2(\x1,\y1)
in
node[at start, label={\n1+45:#2}]{}
node[at start, label={\n1-45:#3}]{}
node[at end, label={\n1+135:#5}]{}
node[at end, label={\n1+225:#6}]{};
}
\begin{tikzpicture}[node distance=4cm, label distance=-2mm]
\node(a)[draw, rectangle, align=left]{A\\head};
\node(b)[draw, rectangle, right=of a, align=left]{B\\head};
\node(c)[draw, rectangle, below=of b, align=left]{C\\head};
\node(d)[draw, rectangle, left=of c, align=left]{D\\head};
\ua{a}{a1 label}{a2 label}{b}{b1 label}{b2 label}
\ua{b}{b3 label}{b4 label}{c}{c1 label}{c2 label}
\ua{c}{c3 label}{c4 label}{d}{d1 label}{d2 label}
\ua{d}{d3 label}{d4 label}{a}{a3 label}{a4 label}
\end{tikzpicture}
\end{document}
편집하다:wrobell의 의견 이후에 코드를 더 읽기 쉽게 만들기 위해 다음 \n1={90-scalar(atan2(\p1))}
으로 대체했습니다.\n1={atan2(\y1,\x1)}
답변2
그냥 제안입니다. 두 번째 예가 마음에 든다면 이를 구현하는 명령을 작성하세요. 두 개의 명령이 필요합니다. 하나는 수평선용이고 다른 하나는 수직선용입니다. 모든 수평 경로는 왼쪽에서 오른쪽으로, 수직 경로는 위에서 아래로 이동합니다. 다음 코드에서 앵커를 수정해야 하지만 도움이 될 수 있습니다.
\documentclass[a4paper]{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\newcommand\horzpath[6]{%
\draw (#1) -- (#4)
node[at start, anchor=south west]{#2}
node[at start, anchor=north west]{#3}
node[at end, anchor=south east]{#5}
node[at end, anchor=north east]{#6};
}
\newcommand\vertpath[6]{%
\draw (#1) -- (#4)
node[at start, anchor=north west]{#2}
node[at start, anchor=north east]{#3}
node[at end, anchor=south east]{#5}
node[at end, anchor=south west]{#6};
}
\begin{tikzpicture}[node distance=4cm]
\node(a)[draw, rectangle, align=left]{A\\head};
\node(b)[draw, rectangle, right=of a, align=left]{B\\head};
\node(c)[draw, rectangle, below=of b, align=left]{C\\head};
\node(d)[draw, rectangle, left=of c, align=left]{D\\head};
\horzpath{a}{a1 label}{a2 label}{b}{b1 label}{b2 label}
\vertpath{b}{b3 label}{b4 label}{c}{c1 label}{c2 label}
\horzpath{d}{d1 label}{d2 label}{c}{c3 label}{c4 label}
\vertpath{a}{a3 label}{a4 label}{d}{d3 label}{d4 label}
\end{tikzpicture}
\end{document}