hi
in a two column layout, how can I get a watermark in each column
Chimanrao
Page Layout ⇒ two column layout watermark in each column
NEW: TikZ book now 40% off at Amazon.com for a short time.

two column layout watermark in each column
Hi,
you could use, for example, the background package in combination with PGF/TikZ:
You must compile the example code twice.
you could use, for example, the background package in combination with PGF/TikZ:
Code: Select all
\documentclass{report}
\usepackage{multicol}
\usepackage{background}
\usepackage{lipsum} % just to generate some text
\SetBgAngle{0}
\SetBgScale{8}
\SetBgContents{%
\begin{tikzpicture}
\matrix [column sep =0.4cm,ampersand replacement=\&]
{ \node [rotate=90] {First column}; \& \node [rotate=90] {Second column};\\};
\end{tikzpicture}}
\setlength\columnsep{18pt}
\begin{document}
\begin{multicols}{2}
\lipsum[1-40]
\end{multicols}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...