\documentclass[tikz,border=10pt]{standalone}
\usepackage{lipsum}
\usetikzlibrary{calc}
\pgfdeclarelayer{background}
\pgfsetlayers{background,main}
\tikzset{
papyrus line/.style={ line width=1pt }
}
\def\drawRole#1#2#3{
\begin{scope}[yscale=#2,scale=0.6*#3]
\draw[papyrus line] (A.#1 west) .. controls +(0,1) and +(0,1) .. +(-1,0) .. controls +(0,-1) and +(0,-1) .. +(-.2,0) .. controls +(0,.7) and +(0,.7) .. +(-.8,0) .. controls +(0,-.5) and +(0,-.5) .. +(-.5,0) -- +(-.2,0);
\draw[papyrus line] (A.#1 west) +(-.6,-.75) -- +(0,-.75);
\draw[papyrus line] (A.#1 west) +(-.65,-.375) -- +(-.25,-.375);
\draw[papyrus line] (A.#1 east) .. controls +(0,.7) and +(.4,0) .. +(-.5,0.751) -- ($(A.#1 west)+(-.5,.751)$);
\end{scope}
}
\newcommand\papyrus[2][1]{
\tikz{
\node[inner xsep=1em, inner ysep=0.5em] (A) {#2};
\begin{pgfonlayer}{background}
\drawRole{north}{1}{#1}
\drawRole{south}{-1}{#1}
\draw[papyrus line] (A.north east) -- (A.south east);
\draw[papyrus line] (A.south west) -- (A.north west);