To draw a diagram like this, what code do I need? help me...What is this.
Asked
Active
Viewed 515 times
-3
Torbjørn T.
- 206,688
2 Answers
7
I probably shouldn't, but as a very simple example. I only added one of the curved lines on the right though.
\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}
Torbjørn T.
- 206,688
5
To build your figure, you can use, quickly this GUIs,
IPE, http://ipe.otfried.org/;XFigorWinFig, http://winfig.com/;LaTeXdraw, http://latexdraw.sourceforge.net/InkScape, https://inkscape.org/en/. WithInkScapeyou can create your figure and after you export your picture inLaTeX.
Sebastiano
- 54,118
-
-
Definitely. There is also an old program
jpicedt; also Adobe Illustrator, withpstricks. I have insert some very easy. Do you know others? – Sebastiano Dec 19 '16 at 07:14


:)– Guilherme Zanotelli Nov 28 '16 at 15:36random stepsmethod shown in http://tex.stackexchange.com/questions/35534/tips-for-creating-semi-random-blob-in-tikz to create the "iceberg". – Torbjørn T. Nov 28 '16 at 15:36