This question builds off of the one here: enter link description here
However, my question is how do I wrap around the text?
Here is what I am trying to do.
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[fill=black!40!white,
thick,
draw,
minimum height=0.5cm,
minimum width=3.2cm,
label=south:The quick brown fox jumps over the lazy dog %< -- This uses an anchor of the node for the location
] at (0,1.5) {Canonical Polyadic};
\end{tikzpicture}
\end{document}
What I get is this long line of text at the south of the rectangle.
I have tried specifying text width = 3.2 cm, etc but they don't see to me to be having any effect.



The quick brown fox \\ jumps over the lazy dogbut that did not do anything. What does manually adding gaps to the text mean? I did try placing as a separate node\node[below of=check, text width = 2 cm] {The quick brown fox jumps over the lazy dog};and this seems to work. Thanks! – user3236841 Nov 24 '21 at 15:52\tcboxlike in https://tex.stackexchange.com/a/364234/1952 – Ignasi Nov 24 '21 at 16:50