I am trying to use the crop package on a book document, but I would like to have a bleed area and crop marks only for the top, bottom, and outer part, not the inner one.
\documentclass{book}%
\geometry{%
inner=17mm,%
outer=15mm,%
top=21.343mm,%
bottom=21.343mm,%
paperheight=8in,%
paperwidth=5.25in,%
}%
\usepackage[width={10.5in},height={16in},lualatex,cam,axes]{crop}
With this (the size for the crop is exaggerated for testing), all pages are aligned to the top left corner, both for even and odd pages. If I add center to crop, it's all aligned to the center.
I have tried to look at the crop documentation, but could not find/understand much.
I am using lualatex, if that is relevant.
Edit:
Here is a full example:
\documentclass{book}%
\usepackage{lipsum}
\usepackage{geometry}
\geometry{%
inner=17mm,%
outer=15mm,%
top=21.343mm,%
bottom=21.343mm,%
paperheight=8in,%
paperwidth=5.25in,%
}%
\usepackage[width={10.5in},height={16in},lualatex,cam,axes]{crop}
\begin{document}
\chapter{Introduction}
\lipsum[1-20]
\end{document}
