I have this:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{fit,arrows,calc,positioning}
\begin{document}
\tikzstyle{b} = [rectangle, draw, fill=blue!20, node distance=3cm, text
width=6em, text centered, rounded corners, minimum height=4em, thick]
\tikzstyle{c} = [rectangle, draw, inner sep=0.5cm, dashed]
\tikzstyle{l} = [draw, -latex',thick]
\begin{tikzpicture}[auto]
\node [b] (a) {hello};
\node [b, below=of a] (b) {hello};
\end{tikzpicture}
\end{document}
How can I create this? :
\tikzstyle{X} = [....]
In order to do this:
\draw [X] (a) --{hello} (b);
And produce this:
Thank you very much


dashed. See also https://tex.stackexchange.com/questions/327982/draw-a-dash-dotted-line/327983#327983 – Torbjørn T. Jan 17 '18 at 21:28