Page Layouttwo column layout watermark in each column

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
chimanrao
Posts: 8
Joined: Mon Mar 01, 2010 8:39 am

two column layout watermark in each column

Post by chimanrao »

hi

in a two column layout, how can I get a watermark in each column

Chimanrao

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

two column layout watermark in each column

Post by gmedina »

Hi,

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}
You must compile the example code twice.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply