% specific latex (not pdflatex) script to append 4 eps pages together so
% that pstops can be used on the resulting file to overlay the information
% pages on top of the watermark pages.

% Copyright 2003 Alan W. Irwin (irwin@beluga.phys.uvic.ca)

% This file is part of the Linux Brochure Project (LBP) package.

%	LBP is free software; you can redistribute it and/or modify
%	it under the terms of the GNU General Public License version 2 
%	as published by the Free Software Foundation.
	            
%	LBP is distributed in the hope that it will be useful,
%	but WITHOUT ANY WARRANTY; without even the implied warranty of
%	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%	GNU General Public License for more details.

%	You should have received a copy of the GNU General Public License
%	along with LBP; if not, write to the Free Software
%	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 
%	02111-1307  USA

\documentclass{article}
\input{geometry.tex}
%Check if we are compiling under latex or pdflatex
\ifx\pdftexversion\undefined
\usepackage[dvips]{graphicx}
\else
% Misspell since this is not supposed to be used under pdflatex
\usepackage[only_use_latex!]{graphicx}
\fi
\begin{document}
\pagestyle{empty}
% Be explicit on original sized bounding box since the bb generated by
% ps2eps is maximally trimmed.
\begin{figure}
\includegraphics[bb=0 0 {\paperwidth} {\paperheight}, 
height=\paperheight]{right.eps}
\end{figure}
\begin{figure}
\includegraphics[bb=0 0 {\paperwidth} {\paperheight},
height=\paperheight]{page123.eps}
\end{figure}
\begin{figure}
\includegraphics[bb=0 0 {\paperwidth} {\paperheight}, 
height=\paperheight]{left.eps}
\end{figure}
\begin{figure}
\includegraphics[bb=0 0 {\paperwidth} {\paperheight},
height=\paperheight]{page450.eps}
\end{figure}
\end{document}
