I'm trying to typeset a version of a document that will have the document on the half of each page, but I want the bottom half to have thin ruled lines for note taking. Any one have any thoughts about how I could do this automatically? Could I some how make a custom footer for each page?
|
In ConTeXt, the page layout has a parameter
\setuplayout
[height=fit,
bottomdistance=1in,
bottom=4.8in]
\startsetups bottom:rule
\vbox
{\dorecurse{32}{\blackrule[width=\textwidth,height=1pt]\blank[12pt]}}
\stopsetups
\setupbottomtexts[\setups{bottom:rule}]
\showframe
\starttext
\dorecurse{10}{\input knuth \par}
\stoptext
In The |
|||
|
|
|
Depending on what you want the 'document on one half of each page' to look like, you might be able to use Otherwise I would use |
|||
|
|