I would like to draw a tape in tikz with a multiline label in it. The normal way of just using \\ doesn't work here.
MWE
\documentclass[tikz,border={5pt}]{standalone}
\usetikzlibrary{shapes.symbols,shapes.geometric}
\tikzset{
multidocument/.style={
shape=tape,
draw,
fill=white,
tape bend top=none
}
}
\begin{document}
\begin{tikzpicture}
\node [multidocument]{Multi line\\Label};
\end{tikzpicture}
\end{document}
align=centeraftertape bend top=none. – darthbith Sep 16 '14 at 15:41