Howto output plot to pdf, eps or svg ?
Is it possible to output a plot to a pdf, eps or svg file? Does this work for all sorts of plots?
Is it possible to output a plot to a pdf, eps or svg file? Does this work for all sorts of plots?
If the saveing function cannot work well, you can try to use a pdf converter control to transfer pdf to plot, beside to plot, pdf to html or image is also allowed..
Yes, you can save plots to those formats. Here's an example
sage: p = plot(x^2, x)
sage: p.save('test.pdf')
sage: p.save('test.eps')
sage: p.save('test.svg')
It works for any of Sage's Graphics
objects.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2010-08-23 05:36:55 +0200
Seen: 10,571 times
Last updated: Jul 12 '13