i use \usepackage{draftwatermark} and tcolorbox.
But watermark is hidden by box.
How can put watermark overlay box and different per page: Top secret 1, Top secret 2, Top secret A, B...?
My minimal code:
\documentclass[11pt]{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{draftwatermark}
\SetWatermarkText{Top secret 1}
\SetWatermarkScale{4}
\SetWatermarkColor[rgb]{0.7,0,0}
\usepackage[most]{tcolorbox}
\begin{document}
\section{STAMP}
\blindtext
\begin{tcolorbox}[width=\textwidth,height=5cm]
Stamp hidden by box
\end{tcolorbox}
\blindtext
\newpage
\blindtext
\begin{tcolorbox}[width=\textwidth,height=5cm]
Stamp hidden by box
\end{tcolorbox}
\blindtext
\end{document}
Thank in advance


\AddToShipoutPictureFG*{% \begin{tikzpicture}[overlay,remember picture] \path (current page.south west) -- (current page.north east) node[midway,scale=6,color=pfrt,sloped] {<your text>}; \end{tikzpicture} }instead of the unstarred one, you can add a water mark per page. Or, if you have a list, this also can be made work, but this requires clear prescriptions from your side. – Aug 08 '19 at 03:06\AddToShipoutPictureFG*instead of\AddToShipoutPictureFGworks. That's what I meant by "starred" version. – Aug 08 '19 at 03:59