Page Layout ⇒ Amsbook and b5paper
Amsbook and b5paper
\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).
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
Amsbook and b5paper
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}