I want to place my image as a watermark at every page. Here's what I do in preamble:
\backgroundsetup{
scale=1.5,
angle=0,
firstpage = true,
opacity=0.1,
contents = {
\begin{tikzpicture}
\node at ([yshift = 0pt, xshift = 0pt] current page.center){
\includegraphics{shkolkovoLogo}
}
\end{tikzpicture}
}
}
which gives me this:
But I have two problems:
- As soon as I have done it I saw this in my log
Strange thing, because everything was okay until I placed this watermark.
- The watermark's opacity on the first page is somehow greater than on the others. Here's a photo of the first page
as you can see it's a bit different than what is shown on the very first picture. What could be the reason of these things happen? Thank you in advance!
MWE, but it has a lot of errors on the last line
\documentclass{article}
\usepackage{background}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{lipsum}
\usepackage{graphicx}
\backgroundsetup{
scale=1.5,
angle=0,
firstpage = true,
opacity=0.1,
contents = {
\begin{tikzpicture}
\node at ([yshift = 0pt, xshift = 0pt] current page.center){
\includegraphics{example-image-duck};
}
\end{tikzpicture}
}
}
\begin{document}
\lipsum[1-150]
\end{document}




\node at ([yshift = 0pt, xshift = 0pt] current page.center){ \includegraphics{shkolkovoLogo} } ;? It is also possible that some errors stem from other parts of your document. You should always provide a minimal working example (MWE) that starts with\documentclassand ends with\end{document}so that others can compile it.