%20%EC%97%AC%EB%9F%AC%20%ED%8E%98%EC%9D%B4%EC%A7%80%20PDF%EB%A5%BC%20%EB%B0%B1%EA%B7%B8%EB%9D%BC%EC%9A%B4%EB%93%9C%EC%97%90%20%ED%8F%AC%ED%95%A8%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95.png)
추가 정보(머리글, 페이지 번호 등)를 인쇄하기 위해 하나/여러 페이지의 PDF를 배경으로 포함하고 싶습니다.
을 살리다mwe 패키지 문서작업을 위해 디렉토리에
\documentclass[oneside]{book}
\usepackage{mwe}
\usepackage{pdfpages}
\newcommand\invisiblesection[1]{%
\refstepcounter{section}%
\addcontentsline{toc}{section}{\protect\numberline{\thesection}#1}%
\sectionmark{#1}}
\begin{document}
\pagestyle{headings}
\part{First}
\invisiblesection{My section}
% Only single pages
\AddToShipoutPictureBG*{\includegraphics[page=1]{mwe}}
.\pagebreak
\AddToShipoutPictureBG*{\includegraphics[page=2]{mwe}}
.\pagebreak
\AddToShipoutPictureBG*{\includegraphics[page=3]{mwe}}
.\pagebreak
% ...
\part{Second}
\invisiblesection{My section 2}
% No headers, ...
\includepdf[pages=1-]{mwe}
\end{document}