nページからなる文書Aと1ページからなる別の文書(B)があるとします。pdfpagesを使用して、iページ目にAのiページ目が左側、Bのiページ目が右側にある横長の文書を作成するにはどうすればよいでしょうか。
1 ページ: A、B の 1 ページ目
2 ページ: A、B の 2 ページ目
3 ページ: A、B の 3 ページ目
など
n が変更されると、ソリューションは自動的に更新されます。
答え1
これは を使用しませんpdfpages
が、要求どおりの動作をすると思います。 はテキストlipsum.pdf
のみを含む PDF でしたので\lipsum
、ファイル に置き換えてくださいA
。
\documentclass{article}
\usepackage[
a4paper,
landscape,
showframe% show text area
]{geometry}
\usepackage{graphicx}
\usepackage[export]{adjustbox} % for valign key
\usepackage{pgffor} % for foreach
% get page count from PDF
% cf. e.g. https://tex.stackexchange.com/questions/8316
\pdfximage{lipsum.pdf}
\def\nbframes{\the\pdflastximagepages}
\begin{document}
\pagestyle{empty}
\foreach \i in {1,2,...,\nbframes}
{%
\includegraphics[page=\i,width=0.47\linewidth,valign=c]{lipsum}\hfill
\includegraphics[width=0.47\linewidth,valign=c]{example-image}%
\newpage
}
\end{document}