So, you want to get something like this (the same code as
localghost provided, with changed crop settings and documentclass):
Code: Select all
\documentclass[11pt,b5paper,english]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[
centering,
headheight=14pt,
headsep=25pt,
includeheadfoot,
text={6in,7.7in},
dvips=false,
pdftex=false,
vtex=false
]{geometry}
\usepackage[height=10.8in,width=7.9in,cam,center]{crop}
\usepackage{blindtext}
\pagestyle{headings}
\begin{document}
\blinddocument
\end{document}
Try increasing width and height in crop settings for more space for croping marks (i.e. try H=11.8in, W=8.9in). Note that it is not A4 paper but smaller. However, after cropping you get page in B5. The logic is, you use
geometry package for setting (logical) page dimensions, how it will look at the end, after cropping/trimming, and you use
crop package for defining dimensions of the paper on which document will be printed (so, dimensions set by crop must be larger than those set by geometry).