I have a similar problem to this thread: http://latex-community.org/forum/viewto ... 45&t=28581
I want to reconstruct this figure:
I used Stefan's code to create such a figure in LaTeX. However, at this point I cannot get any further. Thus, I call for help!
Code: Select all
\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{quotes,shapes,positioning}
\tikzset{
treenode/.style = {shape=rectangle, rounded corners, draw, anchor=center, text width=5em, align=center, top color=white, bottom color=white, inner sep=1ex, font=\sffamily\normalsize},
do/.style = {treenode, diamond, inner sep=0pt},
}
\begin{tikzpicture}[-latex,
[every edge quotes/.style={fill=white, font=\footnotesize}, auto=right]]
\node [treenode] (fe) {A};
\node [treenode, right = 3cm] (re) {B};
\node [treenode, below = 2cm] (A) {Test};
\draw
(fe) edge [""] (A)
;
\end{tikzpicture}
\end{document}
