[Tex/LaTex] Flow chart document symbol

flow chartsnodestikz-pgf

I am doing an old-style flow chart with TiKz, and I am defining my nodes with the \tikzstyle command (example \tikzstyle{startstop} = [rectangle, rounded corners, minimum width=3cm, minimum height=1cm,text centered, draw=black] for the start and stop nodes), but I haven't been able to find or create this figure:The document symbol

It is used to represent documents in flow charts.

Best Answer

Welcome to TeX-SE! The good news is that this shape is already defined in the shapes.symbols library.

\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{shapes.symbols}
\begin{document}
\begin{tikzpicture}
 \node[tape,tape bend top=none,draw,font=\sffamily]{I'm a tape.};
\end{tikzpicture}
\end{document}

enter image description here