[sage-support] Re: sagetex: granular builds for large documents

2009-12-01 Thread Eric Drechsel
On Dec 1, 3:30 pm, Dan Drake dr...@kaist.edu wrote: Hi Eric, On Tue, 01 Dec 2009 at 11:44AM -0800, Eric Drechsel wrote: I'm experimenting with a homework workflow using sagetex. I'd like to make efficient use of resources, which seems to be a (the?) major deficiency with sagetex,

[sage-support] Re: sagetex: granular builds for large documents

2009-12-01 Thread Eric Drechsel
Hi Harald, thanks for the suggestion, I had thought of that too. It seems like a viable route. Each subdocument ends up on its own set of pages, but I guess that's the case when using \include too. -- Eric On Dec 1, 3:11 pm, Harald Schilly harald.schi...@gmail.com wrote: On Dec 1, 8:44 pm, Eric

[sage-support] Re: sagetex: granular builds for large documents

2009-12-01 Thread Marshall Hampton
I use pyPdf to glue pdfs together, its nice if you already like python and want to automate such tasks: http://pybrary.net/pyPdf/ -Marshall On Dec 1, 5:11 pm, Harald Schilly harald.schi...@gmail.com wrote: On Dec 1, 8:44 pm, Eric Drechsel ericd...@gmail.com wrote: 1. Is it possible to have

Re: [sage-support] Re: sagetex: granular builds for large documents

2009-12-01 Thread Dima Pasechnik
one can just use pdfpages in (pdf) LaTeX: \documentclass{article} \usepackage{pdfpages} \begin{document} \includepdf[pages=-]{bla} \includepdf[pages=-]{foo} \end{document} creates a pdf document consisting of bla.pdf followed by foo.pdf 2009/12/2 Marshall Hampton hampto...@gmail.com: I use