| |
|
|
Poster Printing Tips
Mac Guidelines for printing from Power Point to Adobe PDF:
- Open orginal document in Power Point.
- Click File, then Print.
- Click Page Setup.
- Adjust your Width and Height to your desired size.
- Click Options
- Check your Paper Size. If it is not the correct size, then use the Paper Size drop-down menu to select Manage Custom Sizes.
- Click the Plus Sign in the bottom left corner.
- Adjust your Width and Height to your desired size. Change your margins to 0.00.
- Double click on the word "Untitled", and rename it to Poster, then click OK.
- You should have returned to the Page Setup window. For Paper Size, be sure to select Poster if it is not already, then click OK.
- Click OK in the next window as well. If you get a paper size error, click OK to continue without fixing.
- On the Print window, check the box for "Show Quick Preview" if it is not already checked. Make sure that the preview shows your entire poster exactly as you would like it to be printed. If you are printing a poster that will be smaller than you designed it, then check "Scale to Fit Paper" to shrink it.
- Click PDF, then Save as PDF.
- Choose your title and location then click Save.
LaTeX instructions for including a background image
Add this code before
the \begin{document} part
\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 one right following the \begin{document} :
\AddToShipoutPicture{\BackgroundPic}
The name of background image is background.png.
This comes from "Zoltan's Blog" written by Peter Kuscik.
|