Page Layout ⇒ two column layout watermark in each column
two column layout watermark in each column
in a two column layout, how can I get a watermark in each column
Chimanrao
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
two column layout watermark in each column
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}