pdfpages/includepdf 오프셋이 작동하지 않습니다.

pdfpages/includepdf 오프셋이 작동하지 않습니다.

제본을 위해 저널을 조립하려고 합니다. 여러 페이지의 pdf 파일을 포함하기 위해 바인딩 오프셋과 함께 includepdf를 사용할 때 바인딩 오프셋이 잘못 적용되었습니다. 첫 번째 페이지는 올바르게 오프셋되었지만 나머지 페이지는 그렇지 않습니다. 즉, 첫 번째 페이지에 왼쪽 오프셋이 있고 두 번째 페이지에도 왼쪽 오프셋, 세 번째는 오른쪽 오프셋, 네 번째는 왼쪽 오프셋 등입니다.

페이지가 올바르게 오프셋되도록 이 문제를 해결하려면 어떻게 해야 합니까?

다음은 MWE 및 샘플 입력 파일입니다.

MWE:

\documentclass[10pt,twosided]{book}
\usepackage{pdfpages}
\usepackage[hmarginratio=1:1,paperwidth=6in,paperheight=9in]{geometry}
\usepackage[letter,frame,axes,cross,pdftex,center]{crop}

\includepdfset{offset=0.25in 0in,noautoscale,pages={-},pagecommand={}}
\pagestyle{empty}
\begin{document}
\includepdf{file}
\end{document}

샘플 입력 파일:(file.pdf를 생성하려면 먼저 pdflatex로 컴파일해야 함)

\documentclass[10pt]{article}
\setcounter{page}{29} % <--- Adjust this to correct page number
\setlength{\textwidth}{4.5in}
\setlength{\textheight}{7.125in}
\setlength{\parskip}{.07in}
\usepackage{lipsum}
\begin{document}
\title{ A file}
\author{ an author}

\maketitle

\begin{abstract}
An abstract
\end{abstract}

\lipsum[1-20]

\end{document}

주목: 결합이 올바르게 작동하지 않고 TIKZ 등을 처리할 수 없기 때문에 pdf 파일을 포함하여 저널을 조립하고 있습니다.

답변1

frame옵션 을 추가하면 \includepdf오프셋이 올바르게 뒤집힌 것을 볼 수 있습니다.

그러나 포함된 문서의 크기가 포함된 문서에 비해 너무 큽니다.

아마도 당신은 이런 것을 원하십니까?

조정된 오프셋

\documentclass[10pt]{article}
\setcounter{page}{29} % <--- Adjust this to correct page number
\usepackage[textwidth=4.5in,textheight=7.125in,paperwidth=5.75in,paperheight=9in]{geometry}

\usepackage{parskip}
\usepackage{lipsum}
\begin{document}
\title{ A file}
\author{ an author}

\maketitle

\begin{abstract}
An abstract
\end{abstract}

\lipsum[1-20]

\end{document}

\documentclass[10pt,twoside]{book}
\usepackage{pdfpages}
\usepackage[hmarginratio=1:1,paperwidth=6in,paperheight=9in]{geometry}
\usepackage[letter,frame,axes,cross,pdftex,center]{crop}

\includepdfset{offset=.25in 0in,noautoscale,pages={-},pagecommand={}}
\pagestyle{empty}
\begin{document}
\includepdf{file}
\end{document}

관련 정보