Is there a way to create a pagestyle wich forces all of the content of a document to the recto pages and show a "note taking area" on the verso pages?

|
Is there a way to create a pagestyle wich forces all of the content of a document to the recto pages and show a "note taking area" on the verso pages?
|
||||
|
You could try using flowfram.sty and a combination of flowframes and staticframes. This is just to give you an idea of what might be possible:
The Code
I edited this to provide something a little closer to what the OP wanted. I used graph paper for notes, as I am more likely to want that: The point is that virtually anything can go into a static box. Further, static frames are efficient: The material is typeset only once, and then reused as needed. The graph paper comes from http://www.texample.net/tikz/examples/graph-paper/. Also, There are some limitations and you will have to read the documentation carefully. |
|||||||||
|
|
There is an implementation of the idea I gave previously in a comment:
The codeYou need two pdf files. One contains the original document. The other contains a single page with the layout for the notes. In the above example, the "original" document I used was
Once you have both pdfs, the following code is the "main driver" which merges the two as required:
Note that I removed page numbering in the notes page, which allowed me to retain the original page numbering of the main document, and thus all indexes, references to pages, etc. are correct. However, the hyperlinks are lost (not clickable). |
|||||||||||
|
\includegraphicsto insert the pages of the main document at recto pages, and the notes page at verso pages. If you are interested in this kind of solution, I can write a suitable "driver" document. Be warned however: you will lost all internal hyperlinks, and if you use \pageref, then your "main" document has to be tweaked to increase the page numbers by 2 (or perhaps you can number only recto pages) – JLDiaz Mar 8 at 10:01