设置稍后将添加内容的水印

设置稍后将添加内容的水印

我正在写一份文件,但现在才刚刚开始,还处于草稿阶段。我已经知道了章节名称以及每个章节要包含多少页,也就是说\section{Intro}最多应该有 3 页。之后就是\section{Objectives}……

我想加水印并保留 3 页作为简介。以下是我尝试过的方法:

\documentclass[12pt]{article}

\usepackage[brazil]{babel} 
\usepackage{lineno,xcolor}
\usepackage[printwatermark]{xwatermark}

\begin{document}

\section{Intro}

\newwatermark[allpages,color=red!50,angle=45,scale=3,xpos=0,ypos=0]{DRAFT}

\newpage~
\newpage~
\newpage~

\section{Objectives}

This section contain only this text. It is not a draft and should not have the watermark.

\end{document}

但水印覆盖了下一节。是否可以只给某一节加水印?

答案1

直接查看xwatermark包装文档,第 4 页:

布尔选项 firstpage、lastpage、allpages、firstpage、oddpages 和 evenpages 用于指定应接收水印的页面,可以用以下任意选项 page=x、pages=xy、pagex={x,y,z} 替换,其中 `x' 等代表任意页码。

如果这是您要找的东西,请告诉我。

\documentclass[12pt]{article}

\usepackage[brazil]{babel} 
\usepackage{lineno,xcolor}
\usepackage[printwatermark]{xwatermark}

\begin{document}

    \section{Intro}

    \newwatermark[pages=1-3,color=red!50,angle=45,scale=3,xpos=0,ypos=0]{DRAFT}% <-- watermark only for pages 1, 2 and 3

    \newpage~
    \newpage~
    \newpage~

    \section{Objectives}

    This section contain only this text. It is not a draft and should not have the watermark.

\end{document}

编辑:

\xwmwatermarkoff如果你不想指定页面,可以设置,请参阅这个答案

\documentclass[12pt]{article}

\usepackage[brazil]{babel} 
\usepackage{lineno,xcolor}
\usepackage{xwatermark}

\begin{document}

    \section{Intro}

    \newwatermark[allpages=true,color=red!50,angle=45,scale=3,xpos=0,ypos=0]{DRAFT}% <-- watermark only for pages 1, 2 and 3

    \newpage~
    \newpage~
    \newpage~

    \section{Objectives}
    \xwmwatermarkoff
    This section contain only this text. It is not a draft and should not have the watermark.

\end{document}

第 1 页(第 2 页和第 3 页也有水印):

enter image description here

第 4 页无水印:

enter image description here

相关内容