I often create programmes for events, and I've just been reading about the crop package, and was wondering, is there any way to create two identical pages from one source, and then to have the crop lines surround them?
What I have so far:
\documentclass[landscape]{article}
\usepackage[margin=1cm]{geometry}
\usepackage{blindtext}
\newcommand{\dual}[1]{\begin{minipage}[c][\textheight][c]{0.45\linewidth}\centering #1\end{minipage}\hspace{0.05\linewidth}\begin{minipage}[c][\textheight][c]{0.45\linewidth}\centering #1\end{minipage}}
\begin{document}
\dual{
\blindtext[2]
}
\end{document}
The ideal would be for each programme (the minipages defined in dual in this case) to have crop marks to make it easy to guillotine the separate programmes, without the need to compile a separate file (e.g. to have to use pdfpages).


\fbox{}around theminipage? – Sigur Jan 03 '13 at 17:59cropallows for lines that don't touch the page. – Nathanael Farley Jan 03 '13 at 18:21