¿Cómo hacer esta marca de agua?

¿Cómo hacer esta marca de agua?

Voy a escribir una nota de conferencia. Me gustaría crear una marca de agua como esta pero no sé cómo hacerlo. ¿Puedes ayudarme a dibujar esta marca de agua?

ingrese la descripción de la imagen aquí

Respuesta1

¡Bienvenido! Puedes hacer eso, por ejemplo, con eso-picy tikz. La distancia entre esta marca de agua y el texto se especifica en ([xshift=-1ex]current page text area.west).

\documentclass{article}
\usepackage{tikzpagenodes}
\usepackage{eso-pic}
\usepackage{lipsum}%<- only to add some text
\AddToShipoutPicture{\begin{tikzpicture}[overlay,remember picture]
 \node[anchor=south,rotate=90,pink,font=\sffamily\Huge] 
 (AE) at ([xshift=-1ex]current page text area.west){Albert Einstein};
 \draw[very thick,pink] (AE.east) -- ++ (0,4)
   (AE.west) -- ++ (0,-4);
\end{tikzpicture}}
\begin{document}
\section{Blub}

\lipsum[1-10]
\end{document}

ingrese la descripción de la imagen aquí

Para diferentes "marcas de agua" en páginas pares e impares, puede utilizar

\documentclass{article}
\usepackage{tikzpagenodes}
\usepackage{eso-pic}
\usepackage{lipsum}%<- only to add some text
\AddToShipoutPicture{\begin{tikzpicture}[overlay,remember picture]
\ifodd\value{page}
 \node[anchor=south,rotate=90,pink,font=\sffamily\Huge] 
 (AE) at ([xshift=-1em]current page text area.west){Albert Einstein};
 \draw[very thick,pink] (AE.east) -- ++ (0,4)
   (AE.west) -- ++ (0,-4);
\else
 \node[anchor=south,rotate=-90,pink,font=\sffamily\Huge] 
 (CFG) at ([xshift=1em]current page text area.east){Carl Friedrich Gauss};
 \draw[very thick,pink] (CFG.west) -- ++ (0,4)
   (CFG.east) -- ++ (0,-4);
\fi   
\end{tikzpicture}}
\begin{document}
\section{Blub}

\lipsum[1-20]
\end{document}

ingrese la descripción de la imagen aquí

información relacionada