答案1
该图绘制起来非常简单。
\documentclass[tikz,border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw[fill=blue!10] (0,0) rectangle ++ (7,6);
\path (4.6,4.8) node[draw,minimum width=2.8cm,minimum height=1.35cm] (r1) {}
(11,3) node[minimum width=5.6cm,minimum height=2.7cm] (r2) {};
\draw foreach \Anchor in {south west,north west,south east,north east}
{(r1.\Anchor) -- (r2.\Anchor)};
\node[draw,minimum width=5.6cm,minimum height=2.7cm,fill=blue!10] at (r2){};
\end{tikzpicture}
\end{document}
然而,这对我来说有点像 XY 问题。你真正想要的是3d
和perspective
库,以及tikz-3dplot
包。现在你可以搜索带有其中任何一个标签的帖子,例如已标记的问题tikz-3dplot
。