[Tex/LaTex] Text without hyphenation with Tikz

horizontal alignmenthyphenationtikz-pgf

How do I get the text does not break the line?
I have

\begin{tikzpicture}
\node[align=left,text width=3cm] {Contemplando a contemporaneidade};
\end{tikzpicture}

enter image description here

but i need

enter image description here

Best Answer

Or don't specify the text width at all, just add a line break at the appropriate position.

\node[align=left] {Contemplando a\\contemporaneidade};