同じトリミング領域を示すジオメトリ クロップ マークの位置を変更できますか?

同じトリミング領域を示すジオメトリ クロップ マークの位置を変更できますか?

トリムマークとテキスト自体の間にもっとスペースを残すことができるかどうか疑問に思いますgeometry。 トリミングされた領域を変更したくありません。

geometryMWE はクロップマークの明らかな動作を示します。

\documentclass{book}
\usepackage{lipsum}

\usepackage[ paperheight  =297mm,paperwidth   =210mm, 
             layoutheight =197mm,layoutwidth  =130mm,
             layoutvoffset= 50mm,layouthoffset= 40mm,
             margin=0pt, includeheadfoot,
             showcrop=true]{geometry}

\begin{document}
\chapter{In the Beginning}
\lipsum
\end{document}

答え1

マクロ \cropmarkgap は 0 から 20 (mm) まで調整可能です。

\documentclass{book}
\usepackage{lipsum}

\usepackage[ paperheight  =297mm,paperwidth   =210mm, 
             layoutheight =197mm,layoutwidth  =130mm,
             layoutvoffset= 50mm,layouthoffset= 40mm,
             margin=0pt, includeheadfoot,
             showcrop=true]{geometry}

\def\cropmarkgap{10}% mm

\makeatletter
\def\Gm@cropmark(#1,#2,#3,#4){% #1 = x direction, #2 = y direction, #3 & #4 no longet used
  \begin{picture}(0,0)
    \setlength\unitlength{1truemm}%
    \linethickness{0.25pt}%
    \put(\the\numexpr #1*\cropmarkgap\relax,0){\line(#1,0){\the\numexpr 20-\cropmarkgap}}%
    \put(0,\the\numexpr #2*\cropmarkgap\relax){\line(0,#2){\the\numexpr 20-\cropmarkgap}}%
  \end{picture}}%
\makeatother

\begin{document}
\chapter{In the Beginning}
\lipsum
\end{document}

答え2

20を必要に応じて変更します。

\documentclass{book}
\usepackage{lipsum}

\usepackage[paperheight =197mm,paperwidth  =130mm,
margin=0pt, includeheadfoot]{geometry}
\usepackage[a4,center]{crop}
\thinlines\unitlength1pt
\newcommand*\CROPmarkLT{%
    \begin{picture}(0,0)
    \put(-20,0){\line(-1,0){50}}\put(0,20){\line(0,1){50}}
    \end{picture}}
\newcommand*\CROPmarkRT{%
    \begin{picture}(0,0)
    \put(20,0){\line(1,0){50}}\put(0,20){\line(0,1){50}}
    \end{picture}}
\newcommand*\CROPmarkLB{%
    \begin{picture}(0,0)
    \put(-20,0){\line(-1,0){50}}\put(0,-20){\line(0,-1){50}}
    \end{picture}}
\newcommand*\CROPmarkRB{%
    \begin{picture}(0,0)
    \put(20,0){\line(1,0){50}}\put(0,-20){\line(0,-1){50}}
    \end{picture}}
\newcommand*\CROPinfo{\jobname\ \today}
\cropdef[\CROPinfo]\CROPmarkLT\CROPmarkRT\CROPmarkLB\CROPmarkRB{CROP}
\crop[CROP]
\begin{document}
    \chapter{In the Beginning}
    \lipsum
\end{document}

ここに画像の説明を入力してください

関連情報