图片来自 TikZ

图片来自 TikZ

我尝试使用 TikZ 制作下面的图片。 在此处输入图片描述

我目前拥有的代码:

\begin{tikzpicture}
\draw[fill,pattern=north west lines, pattern color=blue!30] (-5,0)--(0,0)--(0,2)node[below left]{AIR}--(-5,2)--cycle;
\draw[fill,pattern=north east lines, pattern color=black!30] (5,0)--(0,0)--(0,2)node[below right]{EAU}--(5,2)--cycle;
\definecolor{uququq}{rgb}{0.15,0.95,0.15}
grid [step=0.5];
\draw[-,>=latex](-5,1)--(0,1);
\draw[-,>=latex](0,1)--(5,1);
\end{tikzpicture}

我无法得到粉色矩形,也无法写出单词空气欧亚大陆, 和视频如图所示。

答案1

开始之前:

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{patterns}

\begin{document}
\begin{tikzpicture}
\fill [draw=blue, pattern=north west lines, pattern color=blue!30] (-5,0) rectangle (5,2);
\draw[fill=white] (-5,1) -| (-1,1.5) -| (0,2) -- (-5,2) -- cycle;
\draw[fill=red!20] (0,0) rectangle (0.4,2);
\node at (2.5,1) {EAU};
\node at (-2.5,1.5) {AIR};
\end{tikzpicture}
\end{document}

请注意,我首先画出整个“水”矩形,然后在其上放置不规则的“空气”白色形状和粉色矩形。对于“空气”,我使用符号-|将坐标与线连接起来,先是水平,然后是垂直。

结果

相关内容