Closed anikfal closed 1 year ago
You really have multiple alternatives, depending on your needs:
firstpageonly
when loading the package.\DraftwatermarkOptions{stamp}
and \DraftwatermarkOptions{nostamp}
in your source at the points where you want to activate and deactivate the stamping of the watermark.
\DraftwatermarkOptions{text={.....})
and in the watermark text you include a conditional expression. For instance, you may use text={\ifodd\thepage ODD\else EVEN\fi}
to put the watermark "ODD" on odd pages and the watermark "EVEN" on even pages. Alternatively, for more complex conditionals, you may want to use the ifthen
package and then do things like text={\ifthenelse{\thepage=2}{HERE}{\relax}}
(this will print the watermark only on page 2).Hope this helps...
Please give me a specific example of putting watermark on selected pages. The method to do so was not much clear in the documentation.