Julia: How can I write to a specific acrobat pdf page?

I am stuck trying to generate acrobat pdf of more than one page in Julia

I am currently using the following code to create a chart table:

t[1,1] = p1;
t[2,1] = p2;
t[3,1] = p3;
t[4,1] = p4;
file(t,"Daily.pdf");

      

But the file function compresses them all into one page. Is there a way to tell it to use multiple pages or split the table into multiple pages and tell the file functions to write each table to a specific page?

Thanks in advance.

+3


source to share





All Articles