This is my code, which doesn't work:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\tikz \node {start\linebreak{}stop};
\end{document}
The \linebreak
command doesn't work. In order to make it working I have to say \node[text width=5em]..
. Is there any other method to make it working, without explicit specification of the node text width? Thanks!