I want to put a background image on a title page of a document. Is it possible and does it work?
EDIT:
The answer by Presidenten using the eso-pic package and my answer found after some research using the wallpaper package both work.
I want to put a background image on a title page of a document. Is it possible and does it work?
EDIT:
The answer by Presidenten using the eso-pic package and my answer found after some research using the wallpaper package both work.
Assuming you have a background file named background.png - Add this code before \begin{document}
\usepackage{eso-pic}
\newcommand\BackgroundPic{%
\put(0,0){%
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight,%
keepaspectratio]{background.png}%
\vfill
}}}
...and this immediately after \begin{document}:
\AddToShipoutPicture*{\BackgroundPic}
The * will make sure that the background picture will only be put on one page.
If you wish to use the picture on multiple pages, skip the *:
\AddToShipoutPicture{\BackgroundPic}
Then use this command to stop using the background picture:
\ClearShipoutPicture
After some research, I found an answer myself. This is a little bit different to the answer by Presidenten, both solutions work.
The package wallpaper works well for this purpose.
You need to import the package in the header:
\usepackage{wallpaper}
After that you can use commands like:
\ThisLRCornerWallPaper{0.5}{somerights.png}
\LRCornerWallPaper{0.5}{somerights.png}
The LRCorner-command places the image in the lower-right corner of the site. There are commands like \ULCornerWallPaper and so on for the other corners and \CenterWallPaper and \TileWallPaper for centering or tiling the image.
The This at the start of the command places the image only on the current page, without this the image is placed on all following pages.
The numerical argument {0.5} scales the image to 0.5 the size of the page.
No pages of output. Just add some text before or after \ThisLRCornerWallPaper{0.5}{somerights.png}, and it will work just fine.
– guest_5758
Dec 06 '15 at 13:18
wallpaper itself uses eso-pic. I've got option clashes when using eso-pic, so it might be relevant for others, too.
– PixelMaster
Sep 20 '18 at 23:05
The @david-carlisle response is perfect. But for my particular case I had to add the transparent parameter, as indicated below.
\usepackage{transparent}
\usepackage{eso-pic}
\newcommand\BackgroundPic{%
\put(0,0){%
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
{\transparent{0.4} \includegraphics[width=\paperwidth,height=\paperheight,%
keepaspectratio]{background.png}}%
\vfill
}}}
! Undefined control sequence... \includegraphics, you're missing a graphics package such as\usepackage{graphics}– DrMeers May 30 '12 at 12:48\AddToShipoutPicture{\BackgroundPic{fig1.png}}instead? What modifications have to be done to the code? – Kagaratsch Nov 04 '15 at 20:45