使用 PDFLaTeX 创建带有裁切标记的 PDF

使用 PDFLaTeX 创建带有裁切标记的 PDF

我的代码如下:

\documentclass{book}
\usepackage{lipsum}

\setlength{\paperheight}{9truein}%
\setlength{\paperwidth}{8truein}%

\makeatletter
\setlength\oddsidemargin{5pc}
\addtolength\oddsidemargin{-1in}    
\setlength\@tempdima{\paperwidth}
\addtolength\@tempdima{-\textwidth}
\addtolength\@tempdima{-5pc}
\setlength\evensidemargin{\@tempdima}
\addtolength\evensidemargin{-1in}
\makeatother
\usepackage[a4,cam,center,info]{crop}
\setlength\textwidth{30pc}
\setlength\textheight{40pc}
\begin{document}
\lipsum
\end{document}

Trim在输出的 PDF 文件中标记和剪切,请参考下图:

在此处输入图片描述

但我需要PDF带有Trim标记的输出,并且Trim标记不应被剪切,例如,

在此处输入图片描述

请提出可能性...

答案1

问题是,您要求crop放置文档的“纸张”(A4)没有足够的空间容纳您想要的纸张尺寸和标记。因此,只需选择另一种纸张尺寸作为选项即可crop

如果标准尺寸的包装都不适合您,您也可以选择定制尺寸,例如[width=10truein,height=11truein]

\documentclass{book}
\usepackage{lipsum}

\setlength{\paperheight}{9truein}%
\setlength{\paperwidth}{8truein}%

\makeatletter
\setlength\oddsidemargin{5pc}
\addtolength\oddsidemargin{-1in}    
\setlength\@tempdima{\paperwidth}
\addtolength\@tempdima{-\textwidth}
\addtolength\@tempdima{-5pc}
\setlength\evensidemargin{\@tempdima}
\addtolength\evensidemargin{-1in}
\makeatother

\usepackage[width=10truein,height=11truein,cam,center,info]{crop}

\setlength\textwidth{30pc}
\setlength\textheight{40pc}
\begin{document}
\lipsum
\end{document}

相关内容