Hi,
I stored a series of gmap outputs to a document store and am trying to replay them to one or more sheets in a PDF file. Each image should fit in a 2.75x3.5" rectangle and I wanted them 3 across (in landscape mode).
The code I'm using is:
options mprint nodate nonumber center orientation=landscape; options topmargin=.25IN bottommargin=.25IN leftmargin=.25IN rightmargin=.25IN ; ods graphics on / width=3.5in height=2.75in; ods pdf notoc file="&path.test.pdf";
ods layout gridded columns=3 advance=table; ods region width=3.5in height=2.6in; proc document name=in.ActV; replay \zipmap / levels=all; run; quit;
ods layout end; ods pdf close;
Directing this to HTML, I get what I would expect: 3 columns and however many rows the data populates. Going to PDF, the 1st column disappears and only 1 or two graphs show up per page. The image that does show up is the 2nd column shifted to the 3rd column's position.
I'm not sure what's going on, or how to tell Proc document to drop an image in each of the row/column positions. None of the arguments in the advance= ODS option seems to fit. I attached the sample pdf file to illustrate the issue.
?
Thanks!
--Ben
... View more