答案1
只要房子不是某种tikzpicture
,这意味着你嵌套tikzpicture
了 ,你就可以把它放在一个节点中。你还可以包含外部图形。
\documentclass[tikz,border=3mm]{standalone}
\usepackage{fontawesome}
\begin{document}
\begin{tikzpicture}
\draw[help lines] grid ++ (10,10);
\node[scale=2] at (3,4) {\faHome};
\node at (6,7) {\includegraphics[width=8mm]{example-image-duck}};
\begin{scope}[shift={(5,5)}]
\clip(-0.5,-0.5) -- (-0.5,0.2) -- (-0.6,0.2) -- (0,0.5) --
(0.6,0.2) -- (0.5,0.2) |- cycle;
\node at (0,0) {\includegraphics[width=16mm]{example-image-duck}};
\end{scope}
\end{tikzpicture}
\end{document}