要绘制这样的图表,我需要什么代码?

要绘制这样的图表,我需要什么代码?

要绘制这样的图表,我需要什么代码?帮帮我...这是什么。

在此处输入图片描述

答案1

我可能不应该这么做,但这是一个非常简单的例子。不过我只在右边添加了一条曲线。

在此处输入图片描述

\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}

\fill [shade,
        top color=white,
        bottom color=blue] (-4,0) rectangle (4,-5);

\draw [decoration={random steps,segment length=0.3cm,amplitude=.1cm},
        decorate,
        rounded corners=.1cm]
     (-3,-4) -- (3,-4) -- (0,2) -- (-3,-4);


\draw [thick,blue] (-4,0) -- (4,0);

\node [above=2mm] at (0,0) {Content};
\node [below=1cm] at (0,0) {Semantic};

\draw [orange] (0.2,2) to[bend left] node[pos=0.5,sloped,below,font=\tiny,black] {WYSIWYG} (1.3,0.1);
\end{tikzpicture}
\end{document}

答案2

要构建你的人物,你可以快速使用这些 GUI,

相关内容