Page 1 of 1

Save graphs into a pdf document with multiple pages

Posted: Tue Aug 16, 2016 6:30 am
by tvonbrasch
Hi

I want to store many graph objects into a single pdf file with multiple pages. Is there a way to store 6 graph objects per page. I cannot find a command that lets me do this. Is it possible to save graph objects into a single pdf document with multiple pages?
Thomas

Re: Save graphs into a pdf document with multiple pages

Posted: Tue Aug 16, 2016 9:13 am
by EViews Jason
You will need to use the spool object and then save the spool object to a pdf file.

Here is an example:

Code: Select all

spool a a.append x.line a.append y.line a.save(t=pdf) mypdf.pdf

Re: Save graphs into a pdf document with multiple pages

Posted: Wed Aug 17, 2016 5:43 am
by tvonbrasch
Perfect, thanks, just what I was looking for
T

Re: Save graphs into a pdf document with multiple pages

Posted: Fri Jan 15, 2021 3:14 pm
by amir sadeghi
How do I add page numbers to this pdf file?