im trying to create a tikz figure for my thesis. I'm a total tikz noob and couldn't find a example, which I could modify to look like:
I would be grateful for any help you could give me.
My basic start is this code example here:
\usetikzlibrary{calc,trees,positioning,arrows,chains,shapes.geometric,%
decorations.pathreplacing,decorations.pathmorphing,shapes,%
matrix,shapes.symbols}
\tikzset{
>=stealth',
punktchain/.style={
rectangle,
rounded corners,
% fill=black!10,
draw=black, very thick,
text width=10em,
minimum height=3em,
text centered,
on chain},
line/.style={draw, thick, <-},
element/.style={
tape,
top color=white,
bottom color=blue!50!black!60!,
minimum width=8em,
draw=blue!40!black!90, very thick,
text width=10em,
minimum height=3.5em,
text centered,
on chain},
every join/.style={->, thick,shorten >=1pt},
decoration={brace},
tuborg/.style={decorate},
tubnode/.style={midway, right=2pt},
}
\begin{tikzpicture}
[node distance=.8cm,
start chain=going below,]
\node[punktchain, join] (Goal) {Goal};
\node[punktchain, join] (Inventory Analysis) {Inventory Analysis};
\node[punktchain, join] (Impact Assesment) {Impact Assesmen};
\node[punktchain, join] (Interpretation) {Interpretation};
\end{tikzpicture}

