I'm going to write a lecture note . I'd like to make create a watermark like this but i don't know how to do it. Can you help me to draw this watermark?
Asked
Active
Viewed 3,127 times
5
-
2Welcome to TeX.SX. Which part do you define as the watermark? – Johannes_B Dec 08 '19 at 04:46
-
Oh the words on the left hand side of this page. – 129492 Dec 08 '19 at 04:50
-
Do you want this on all pages? – Dec 08 '19 at 04:53
-
Yes, i want this on all pages. – 129492 Dec 08 '19 at 04:58
-
watermarks near the margin are not useful enough for preventing copyright issues. It will be better if you put the watermarks that blends with the contents. – Display Name Dec 08 '19 at 06:45
1 Answers
15
Welcome! You can do that e.g. with eso-pic and tikz. The distance to this watermark to the text is specified in ([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}
For different "watermarks" on even vs. odd pages, you can use
\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}
-
-
If i want to make the different between odd pages and even pages, how to do it? – 129492 Dec 08 '19 at 06:08
-
-
-
1@minhthien_2016 Equal to the height of the paper or the text area? In the first case
\draw[very thick,pink] (AE.east) -- (AE.east|-current page.north) (AE.west) -- ++ (AE.east|-current page.south);and in the second case\draw[very thick,pink] (AE.east) -- (AE.east|-current page text area.north) (AE.west) -- ++ (AE.east|-current page text area.south);. – Dec 08 '19 at 13:51 -


