左下角有草稿水印

左下角有草稿水印

我如何制作像本文档中那样的草稿水印:https://theory.cs.princeton.edu/complexity/book.pdf

答案1

您可以尝试使用 hspace 进行水平间距 - 以及使用 scalebox 进行放大 - 颜色灰色可以更改为红色等 -

在此处输入图片描述

\documentclass{scrartcl}% http://ctan.org/pkg/koma-script
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{url}% http://ctan.org/pkg/url
\usepackage{eso-pic}% http://ctan.org/pkg/eso-pic

\usepackage{draftwatermark}
\AddToShipoutPictureBG{% Add picture to background of every page
    \AtPageLowerLeft{%
        \raisebox{3\baselineskip}
            {\makebox[\paperwidth]
                {\begin{minipage}{21cm}
                        \centering
                    Draft [Revision 269] 30-06-2012 at 07:41:41
                    \copyright\ Me, Myself and I \\
                    \url{http://127.0.0.1:9800/research/chapter1.tex}
                \end{minipage}}}}%
    \AtPageLowerLeft{%
        \hspace*{3cm}
\makebox[0pt]{%
    \scalebox{4}{%
        \rotatebox[origin=c]{0}{%
            \color[gray]{.93}\normalfont DRAFT}}}
}}




\begin{document}
    \lipsum
\end{document}

相关内容