如果可能的话,如何在 PDF 中包含剪切标记?(使用水印?)

如果可能的话,如何在 PDF 中包含剪切标记?(使用水印?)

更新:

nup=好的,所以我想也许水印包可以解决这个问题。我们所需要的只是根据命令中的选项设置某种 m x n 虚线网格线\includepdf。但我不知道如何以自动方式实现这一点。

原始帖子:

我可以使用\includepdf或仅使用普通的 PDF 打印机在单个页面上“打印”多个 PDF,如下所示(在 Adob​​e Acrobat 中):

在此处输入图片描述

然后输出是这样的: 在此处输入图片描述

我渴望的是有一个切割痕迹: 在此处输入图片描述

这样我就能准确地知道在纸槽上裁切的位置。如果我想在一张 A4 纸上以 2x3 的格式打印同一页 6 次,这将非常有帮助。这样我就可以准确地裁剪它们。

如果我们有这样的剪刀就更好了: 在此处输入图片描述

使用基本代码:

\documentclass[a4paper]{article}
\usepackage{pdfpages}
\begin{document}

\includepdf[
pages={33-38},
nup=1x2,     % or any format
landscape=false,
frame=false  % this is not a cut mark, which is something a want
]{Piano.pdf}

\end{document}

这可以按我们的意愿合并 PDF 页面。我要找的不是“框架”,而是类似的东西,比如装订线边距。

有任何乳胶页面可以做到这一点,或者提供类似的用途吗?

答案1

您可以在页面上绘制任意代码,例如:

\documentclass{article}
\usepackage{pdfpages,tikz}
\begin{document}

\includepdf[
duplicatepages=4,
nup=1x2,
landscape,
pagecommand={\thispagestyle{empty}%
              \tikz[overlay,remember picture]
                \draw[red,dashed,line width=10pt](current page.east)--(current page.west);}
]{example-image-A5}

\end{document} 

在此处输入图片描述

答案2

为什么不使用裁剪包来产生出血标记,然后在一个较大的页面上呈现多个页面(下面显示 4 合 1)。

\documentclass[a4paper]{article}

\usepackage[cam,cross]{crop}

\usepackage{pgfpages}
\pgfpagesuselayout{4 on 1}[a4paper,border shrink=5mm]

\newcounter{pn}\setcounter{pn}{1}
\newcommand\page{\section{Page \thepn}\stepcounter{pn}\newpage}

\begin{document}

\page
\page
\page
\page

\end{document}

输出

答案3

这是一个不需要加载 Ti 的解决方案Z 并使用pifont剪刀叮当棒。

\documentclass[a4paper]{article}
\usepackage{geometry,pifont}
\usepackage[calc]{picture}
\usepackage{pdfpages}
\begin{document}
\includepdf
[
pages={33-38},
  nup=1x2,
  landscape,
  frame=false,
  picturecommand={%
    \put(0,.5\paperheight){\line(1,0){\paperwidth}}%
    \put(15,.5\paperheight){\ding{33}}%
  }
]{kant}
\end{document}

将康德切为合适的尺寸

相关内容