図形(直角のみ)を別の図形(直角のみ)の中に描きたいです。エッジは重ならず、できるだけ近づける必要があります。
次のように手動で何かを行うことができます。
\documentclass[tikz, border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw [] (0, 0) -- (1, 0) -- (1, 1) -- (3, 1) -- (3, 2) -- (0, 2) -- (0, 0);
\draw [color=red] (0.02, 0.02) -- (0.98, 0.02) -- (0.98, 1.02) -- (2.98, 1.02) -- (2.98, 1.98) -- (0.5, 1.98) --
(0.5, 1) -- (0.02, 1) -- % Part that diverges
(0.02, 0.02);
\end{tikzpicture}
\end{document}
生産する
しかし、もちろんこれはあまり堅牢ではありません (幅が変わると 0.02 の「シフト」を再計算する必要があります) また、移植性もありません。もっと良い方法はありますか?
答え1
次のことを試してください。
\documentclass[tikz, border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}[
u/.style = {yshift=#1\pgflinewidth},
s/.style = {xshift=#1\pgflinewidth}
]
\draw (0, 0) -- (1, 0) -- (1, 1) -- (3, 1) -- (3, 2) -- (0, 2) -- cycle;
\draw[color=red]
([u,s] 0,0) -| ([u,s=-] 1,1) -| ([u=-,s=-] 3,2)
-| ([u=-] 0.5,1) -| cycle;
\end{tikzpicture}
\end{document}
赤い線を描いたのと同じ方法で、黒い線を描くことができます (-|
直交座標を使用するとコードが大幅に短縮されます)。