我想在另一个形状(只有直角)内绘制一个形状(只有直角)。边缘应尽可能靠近,但不要重叠。
我可以手动做一些事情,如下所示:
\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}
您可以按照与我绘制红线相同的方式绘制黑线(使用-|
正交坐标,这大大缩短了代码)。