Page LayoutBooklet layout

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Duckman
Posts: 10
Joined: Tue Jan 03, 2012 4:09 pm

Booklet layout

Post by Duckman »

To make nice booklets from existing PDF file's I use a small LaTeX code.

Code: Select all

\documentclass[a4paper]{article}
\usepackage[pdftex]{color,graphicx,epsfig}
\usepackage[final]{pdfpages}
\begin{document}
	\includepdf[pages=-,% 
 		%nup=1x2,
		landscape,		
		%booklet=true,	%make a booklet  max 36 page, than use signature
		signature=36,	%Page Page per packet, divisible by 4		
		%frame=true,	%frame around page
		delta=0 40	%offset(0 40 for binding)
	]{file.pdf}
\end{document}
This works better than the booklet print from Adobe.
But now I like to integrate this function in my document, that the output is directly a booklet. How do I do that?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply