I am trying to include an image in my document, and I don't know if I am doing it the right way.
What I want is that on a certain page, I place an image in the background (only being in the background on a small part of the page) AND have it not affect the placement of anything else (so removing the image or reintroducing the background image doesn't change the position of the text in the page).
I have so far been using the tikzpicture environment, though I am not convinced this is the best way to do this.
\begin{tikzpicture}[remember picture,overlay]
\node[xshift=10.5cm, yshift=-3.3cm, opacity=0.3, inner sep=0pt] at (current
page.north west) {\includegraphics[width=\textwidth,height=2cm]{myimage.png}};
\end{tikzpicture}
After this code, I have included the text for the page normally. So the page begins with a title like
\begin{center}
\textbf{\Large Some kind of title}
\end{center}
etc etc.
This seems to do what I want, but it slightly shifts the text in the page down. I thought the overlay command was supposed to prevent this.
eso-picpackage? – samcarter_is_at_topanswers.xyz Jun 18 '17 at 13:37