summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/eso-pic/eso-ex2.tex
blob: affe690bd7107822510e6be97b8dceb29c358097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

% file `eso-ex2.tex'; an example for background pictures

\documentclass{article}

\usepackage{eso-pic}
\usepackage{graphicx}

% `rose.eps' from CTAN: macros/generic/boxedeps/
\newcommand\BackgroundPicture{%
  \put(0,0){%
   \parbox[b][\paperheight]{\paperwidth}{%
     \vfill
     \centering
     \includegraphics[width=\paperwidth,height=\paperheight,%
                      keepaspectratio]{rose}%
     \vfill
    }
  }
}
% The picture is centered on the page background

\AddToShipoutPicture{\BackgroundPicture}

\begin{document}

\section{\TeX}

\newpage

\ClearShipoutPicture
\section{Empty}

\newpage

\AddToShipoutPictureBG{\BackgroundPicture}
\section{\LaTeX}

\end{document}