38 lines
937 B
TeX
38 lines
937 B
TeX
/* CHAPTER 9. Multipage facilities */
|
|
|
|
/*
|
|
* Impose a document two up. cpdf_twoUp does so by retaining the existing
|
|
* page size, scaling pages down. cpdf_twoUpStack does so by doubling the
|
|
* page size, to fit two pages on one.
|
|
*/
|
|
void cpdf_twoUp(int);
|
|
void cpdf_twoUpStack(int);
|
|
|
|
/*
|
|
* cpdf_padBefore(pdf, range) adds a blank page before each page in the given
|
|
* range.
|
|
*/
|
|
void cpdf_padBefore(int, int);
|
|
|
|
/*
|
|
* cpdf_padAfter(pdf, range) adds a blank page after each page in the given
|
|
* range.
|
|
*/
|
|
void cpdf_padAfter(int, int);
|
|
|
|
/* cpdf_pageEvery(pdf, n) adds a blank page after every n pages. */
|
|
void cpdf_padEvery(int, int);
|
|
|
|
/*
|
|
* cpdf_padMultiple(pdf, n) adds pages at the end to pad the file to a
|
|
* multiple of n pages in length.
|
|
*/
|
|
void cpdf_padMultiple(int, int);
|
|
|
|
/*
|
|
* cpdf_padMultiple(pdf, n) adds pages at the beginning to pad the file to a
|
|
* multiple of n pages in length.
|
|
*/
|
|
void cpdf_padMultipleBefore(int, int);
|
|
|