[Tex/LaTex] Arrange business cards with crop marks

pdfpagesprinting

I have a single business card as PDF (paper size is 85mm x 54mm). Does anyone have a solution to arrange copies along an A4 paper with crop marks?

Here's an example:

enter image description here

With pdfpages, arranging works fine, but I can't get cropmarks. One could probably achieve something like this using Tikz, but I'd prefer something more out-of-the-box.

Best Answer

\documentclass[a4paper]{article}
\usepackage[scale=.95,landscape]{geometry}
\usepackage{ncccropbox,graphicx,multido}
\begin{document}
  \noindent
  \multido{}{3}{%
    \multido{}{3}{%
      \cropbox{\includegraphics[angle=90]{54x85}}}\\}
\end{document}

will produce

Crop boxes containing PDF

Note: The text is only the wrong way around because I used a 85x54 image rather than a 54x85 one so turned it.

Related Question