这个水印如何制作?

这个水印如何制作?

我要写一份讲义。我想创建一个这样的水印,但我不知道怎么做。你能帮我画这个水印吗?

在此处输入图片描述

答案1

eso-pic欢迎!您可以使用和来执行此操作tikz。此水印与文本之间的距离在 中指定([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}

在此处输入图片描述

对于偶数页和奇数页上的不同“水印”,您可以使用

\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}

在此处输入图片描述

相关内容