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

2009-12-02 Thread Laurent
> I don't know how far Dan's > ideas are, but there is one immediate hack i can suggest you: Just > create PDF files for each chapter and then stick them together using a > PDF-merge tool. With Ubuntu : apt-get install pdftk pdftk *.pdf cat output combined.pdf Laurent -- To post to this group

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 : > I use pyPdf to glue pdfs tog

[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 wrote: > On Dec 1, 8:44 pm, Eric Drechsel wrote: > > > 1. Is it possible to have a master document that includes a bunc

[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 wrote: > On Dec 1, 8:44 pm, Eric Drechsel wrote: > > >

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

2009-12-01 Thread Eric Drechsel
On Dec 1, 3:30 pm, Dan Drake 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, especiall

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

2009-12-01 Thread Harald Schilly
On Dec 1, 8:44 pm, Eric Drechsel wrote: >  1. Is it possible to have a master document that includes a bunch of > complete subdocuments? The main "problem" is, that you may happen to define a variable in the beginning and modify it later and in the end it is used. Therefore there is no mechanism