Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Watermark "confidentiel" au premier plan sur les pdf importés #13

Open
Niirok opened this issue Sep 3, 2017 · 1 comment
Open

Watermark "confidentiel" au premier plan sur les pdf importés #13

Niirok opened this issue Sep 3, 2017 · 1 comment

Comments

@Niirok
Copy link

Niirok commented Sep 3, 2017

En utilisant le template avec l'option \documentclass[confidential]{tnreport}, le watermark "confidentiel" apparaît sur les pages rédigées en arrière plan. Cependant, lors de l'utilisation du package pdfpages, (\usepackage{pdfpages}), et plus particulièrement de la commande \includepdf, la watermark apparaît devant le texte du pdf.
watermark

@oster
Copy link
Contributor

oster commented Sep 19, 2017

Je ne sais pas si il y a une bonne solution à ce problème. En effet si vous incluez une page complète pdf (dont le fond n'est pas transparent) alors le watermark "confidentiel" ne sera plus visible.
Par contre, si vous souhaitez que le texte inclus (par \includepdf) soit lisible, une solution est de remplacer le code latex suivant dans le fichier tnreport.cls :

\RequirePackage{draftwatermark}
\@sc@wm@stampfalse
\SetWatermarkText{Confidentiel}
\SetWatermarkScale{.8}
\DeclareOption{confidential}{\@sc@wm@stamptrue}
\ProcessOptions 

Par le code suivant :

\RequirePackage{eso-pic}
\RequirePackage{draftwatermark}
\@sc@wm@stampfalse
\SetWatermarkText{}
%\SetWatermarkScale{.8}
\AddToShipoutPicture{%
    \AtTextCenter{%
        \makebox[0pt]{%
            \scalebox{12}{%
                \rotatebox[origin=c]{45}{%
                    \color[gray]{.93}\normalfont Confidentiel}}}}}
\DeclareOption{confidential}{\@sc@wm@stamptrue}
\ProcessOptions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants