Page LayoutAmsbook and b5paper

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
ionica
Posts: 3
Joined: Thu Jul 16, 2009 10:22 pm

Amsbook and b5paper

Post by ionica »

For my thesis I have been using

\documentclass[b5paper]{amsbook}

but I never thought to check whether the output was really B5. Now I am ready to send everything to the printer, but I discovered that amsbook does not support b5paper and the output has paper size US Letter. It seems amsbook only supports Letter and A4.

Is there a trick to make the output directly B5? I would very much like this.

My other options are now using A4 and have the printer resize the pages (will be quite ugly) of using another documentclass (will probably mess up many other things).

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Amsbook and b5paper

Post by gmedina »

Hi,

have you tried using b5paper as a package option for geometry? Something like this:

Code: Select all

\documentclass{amsbook}
\usepackage[b5paper]{geometry}
\usepackage{lipsum}% just to generate filler text for the example

\begin{document}
\lipsum[1-50]
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
ionica
Posts: 3
Joined: Thu Jul 16, 2009 10:22 pm

Re: Amsbook and b5paper

Post by ionica »

Thanks, works like a charm!
Post Reply