Please provide complete, compilable, examples, and not just a snippet of code[1]. I had to look up in the manual to know that the
chains library had to be loaded. Also, the style called "nonterminal" is undefined, and doesn't do anything, as far as I can see.
A possible solution, if I understand you correctly:
Code: Select all
\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{chains,positioning,decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}[decoration={brace,amplitude=3}]
\begin{scope}[start chain,node distance=5mm, every node/.style={on chain,join}, every join/.style={->}]
\node (A) [] {A};
\node (B) [] {B};
\node [] {C};
\end{scope}
\draw [decorate] (B.south east) -- node[below,text width=2.5cm]{Some description of said affiliation} (A.south west);
\end{tikzpicture}
\end{document}
I'm not sure why the positioning library has to be called, but without it the above code wouldn't compile.
[1]
Avoidable mistakes