I need a way to take a source tex (LaTeX) document generated by rednotebook and have the pages distributed and oriented on landscape paper such that when bound, the pages are oriented the correct way in a booklet.
I found the booklet package, but I do not see a way to use this package to accomplish my objective. The booklet package seems to address quartos, octavos, etc, in traditional bookbinding. But I am looking for a way to distribute and orient pages for stitching through the fold. Quartos and octavos are an example of case binding (cf. wikipedia on bookbinding -> methods of hardcover binding).
A "composition notebook" for the purposes of this question, is a mass produced booklet of 100 sheets (200 sides) with pages measuring 7 1/2" x 9 3/4". The booklet has hard cardstock or cardboard for a cover with pages sewn through the fold.
So for example, suppose I have a tex document which would render to a 200 page dvi at 7 1/2" x 9 3/4". These could potentially be printed front and back to create 100 sheets.
Instead, I would want to modify that tex document so that instead I have a 200 pages distributed across 100 sides of 50 sheets. Pages would be distributed this way:
- Sheet 1: Side front: Pages 1, 200
- Sheet 1: Side back : Pages 2, 199
- Sheet 2: Side front: Pages 3, 198
- Sheet 2: Side back : Pages 4, 197
- etc.
Ideally, I could modify a .tex file so that for any arbitrary number of pages, the TeX would render so that multiple .dvi files are created, or that there is some concept of distributing these pages across multiple composition notebooks. So 500 pages would result in 3 documents with 1-200 in the first, 201-400 in the next and 401-500 in the last. Or to allow distribution across books with a specified number of pages. But this is only a nice-to-have.
I'm a beginner to TeX. As for the source I am modifying, rednotebook does seem to generate fairly clean .tex files. Rednotebook uses txt2tags to render to .tex files from txt2tags source. The resulting .tex file is of the article document class. I would provide more source of the headers if it is helpful. I don't have that available on the machine I am using presently.
pdfpagespackage and itssignatureoption (which must be in multiples of 4 for obvious reasons). See this answer. – jon Mar 13 '16 at 22:50quire.tex) simply includes the content, but 'redistributes' the pages so that you can fold and bind the pages in the manner you suggested. Note also thatpdfpagescan make a quire of any multiple of 4, so you can do what you want. You will understand what I mean when you compile both documents in that answer. – jon Mar 18 '16 at 03:34