I try to create a large flow chart, but even the first bit of it, which i tried to create, does not work, neither are the boxes shown, nor are they in a correct relative position to each other.
Code: Select all
\usepackage{tikz}
\usetikzlibrary{shapes.geometric,arrows}
\tikzstyle{Experiment} = [rectangle, draw=black, fill=blue!20, minimum width=5cm, text centered, minimum height=4cm, text width=4cm]
\tikzstyle{Method} = [rectangle, draw=black, fill=red!20, text width=4cm, text centered, minimum height=4cm, minimum width=4cm]
\tikzstyle{arrow} = [thick, ->, >=stealth]
\begin{tikzpicture}[node distance = 4cm, auto]
\node(Exp1)[Experiment]{Soaking of samples at $25$ $°C$ and $50$ $\%$ $r.H.$, $65$ $\%$ $r.H.$, $75$ $\%$ $r.H.$, $85$ $\%$ $r.H.$ and $95$ $\%$ $r.H.$};
\node(Exp2)[Experiment, right of=Exp1]{WVTR at $25$ $°C$, $35$ $°C$, $45$ $°C$ and $50$ $°C$ and $100$ $\%$ $r.H.$ across the encapsulant};
\node(Exp3)[Experiment, right of=Exp2]{Soaking at $85$ $°C$ and $5$, $10$, $15$, $20$, $35$, $40$, $45$, $50$, $55$, $60$, $80$, $85$, $90$ and $95$ $\%$ $r.H.$};
\node(Meas1)[Method, below of=Exp1]{Measurement every $20$ $min$ at each $r.H.$ for first $6$ $h$, afterwards once a $d$ for $3$ $d$};
\node(Meas3)[Method, below of=Exp3]{Measurement at each $r.H.$ after $3$ $d$};
\path[line](Exp1) -- (Meas1);
\path[line](Exp3) -- (Meas3);
Thx ahead already for any help!!!