Page LayoutBook page order change in PDF

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
OSXMonk
Posts: 1
Joined: Tue Apr 08, 2014 6:36 pm

Book page order change in PDF

Post by OSXMonk »

Dear friends,

I am just 2 days novice in LaTeX. Started yesterday and formatted a book in two days which looks nice now :)
I have wrote some text and it is generating fine pdf. The problem I am facing now is, I want to print pages in different order. For example, if I have 100 pages book, the I want to print pages in 100,1 then 99,2 then 98,3 and so on with odd numbered pages on right and even numbered pages on left. Is it possible?

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

esdd
Posts: 36
Joined: Sat Jan 25, 2014 9:13 pm

Book page order change in PDF

Post by esdd »

If you want to get a booklet you can use the package pdfpages in a new document

Code: Select all

\documentclass{book}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=-,booklet,landscape]{<yourdocumentname>}
\end{document}
Best regards
Elke
Post Reply