I would like to know how I can get a linebreak inside a rotated node using tikz. I tried to use the align=center option together with \rotatebox{}{}, but i get an error. Here is an example of a working code but without the linebreak:
\begin{figure}[h!tp]
\begin{tikzpicture}[generaloptions/.style 2 args={
draw,ultra thick,font={\bfseries},inner sep=0,outer sep=0,minimum height=#1,minimum width=#2}]
\node[generaloptions={3.5cm}{1.5cm},align=center,anchor=south west,font=\footnotesize\bfseries] (l1) at ([xshift=-1.5cm]big.south west) {\rotatebox{90}{Line Break}};
\end{tikzpicture}
\end{figure}
I would like something like this but instead i get an error:
\begin{figure}[h!tp]
\begin{tikzpicture}[generaloptions/.style 2 args={
draw,ultra thick,font={\bfseries},inner sep=0,outer sep=0,minimum height=#1,minimum width=#2}]
\node[generaloptions={3.5cm}{1.5cm},align=center,anchor=south west,font=\footnotesize\bfseries] (l1) at ([xshift=-1.5cm]big.south west) {\rotatebox{90}{Line \\ Break}};
\end{tikzpicture}
\end{figure}
I am I missing something? Thanks!


