[Tex/LaTex] Repeated text watermark on the whole page

outputwatermark

I'm want to put a repeated short text on the whole page as watermark…
I've read the xwatermark guide but didn't find anything helpful.

Any idea how to handle that?

Best Answer

How's this for starters?

\documentclass{article}
\usepackage{xwatermark}
\usepackage{xcolor}
\usepackage{calc}
\newlength\testh
\newlength\testw
\newcommand{\shorttextwatermark}{draft }
\setlength{\testh}{\heightof{\shorttextwatermark}}
\setlength{\testw}{\widthof{\shorttextwatermark}}
\newwallpaper[allpages,tilexsize=10\testw,tileysize=10\testh,boxalign=left]{\shorttextwatermark}
\begin{document}
    hello
\end{document}

enter image description here