Page Layout ⇒ B5 format in A4 sheet
B5 format in A4 sheet
I'm a beginner in the Latex world.
I'd like to use B5 size format and want it to be printed in A4 paper.
The problem is that the context aligns left top direction but I want it to locate center of the paper.
I've searched various topics but it was like finding a needle in haystack.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
B5 format in A4 sheet
Code: Select all
\documentclass[11pt,b5paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[dvips=false,pdftex=false,vtex=false]{geometry}
\usepackage[cam,a4,center]{crop}
\usepackage{blindtext}
\geometry{%
includeheadfoot,
margin=2cm
}
\begin{document}
\Blinddocument
\end{document}Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: B5 format in A4 sheet
You even let me know some other interesting tips together.
Thank you so much.