Draw and multi-page pdf?



El mi?, 31-10-2012 a las 12:59 -0700, Daniel Lakeland escribi?:
> Is it possible to output a multi-page pdf via draw using the 
> terminal='pdfcairo or terminal='pdf options?

Daniel,

Download current 'draw.lisp' and 'grcommon.lisp' from repository. There
are four new terminals:
- multipage_pdf
- multipage_pdfcairo
- multipage_eps
- multipage_eps_color

Something like the following example should work:

draw(
    file_name = "parabol",
    terminal  = multipage_pdfcairo,
    dimensions = 100*[10,10],
    gr2d(explicit(x^2,x,-1,1)),
    gr3d(explicit(x^2+y^2,x,-1,1,y,-1,1))) $

This stuff only required some minor changes to the animated_gif code.

--
Mario