回忆录课中的小册子

回忆录课中的小册子

我刚刚读到这个问题关于使用 pdfpages 在 memoir 中创建 twoup 效果。这对我来说很有效,但我想知道如何设置小册子的页面顺序,以便可以将其对折并正确分页。我从来没有让小册子代码工作过。有什么想法吗?

答案1

pdfpages包提供了一种简单的方法来排列文件的页面PDF,以便将其打印为小册子。对于在 A4 横向纸张上排列的两张 A5 页面,正确的选项选择是

\documentclass{scrartcl}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=-,booklet,landscape]{document.pdf}
\end{document}

更多信息,例如如何将小册子拆分成几个书帖,可以在包装文档

答案2

假设有 4 页,则顺序为(我认为是短边双面打印)

2 3 4 1

所以

\includepdf[pages={2,3,4,1},...]{file.pdf}

(或类似)

答案3

如果您想要小册子方向的 4 对 1 布局,您可以像这样使用 pgfpages:

\documentclass{article}
% TEX.SE \url{}
\usepackage{lipsum}
\usepackage{pgfpages}


\pgfpagesdeclarelayout{4 on 1 booklet}
{
  \edef\pgfpageoptionheight{\the\paperheight} 
  \edef\pgfpageoptionwidth{\the\paperwidth}
  \edef\pgfpageoptionborder{0pt}
}
{
  \pgfpagesphysicalpageoptions
  {%
    logical pages=4,%
    physical height=\pgfpageoptionheight,%
    physical width=\pgfpageoptionwidth%
  }
  \pgfpageslogicalpageoptions{1}
  {%
    border shrink=\pgfpageoptionborder,%
    resized width=.5\pgfphysicalwidth,%
    resized height=.5\pgfphysicalheight,%
    center=\pgfpoint{.75\pgfphysicalwidth}{.25\pgfphysicalheight}%
  }%
  \pgfpageslogicalpageoptions{2}
  {%
    border shrink=\pgfpageoptionborder,%
    resized width=.5\pgfphysicalwidth,%
    resized height=.5\pgfphysicalheight,%
    rotation=180,%
    center=\pgfpoint{.75\pgfphysicalwidth}{.75\pgfphysicalheight}%
  }%
  \pgfpageslogicalpageoptions{3}
  {%
    border shrink=\pgfpageoptionborder,%
    resized width=.5\pgfphysicalwidth,%
    resized height=.5\pgfphysicalheight,%
    rotation=180,%
    center=\pgfpoint{.25\pgfphysicalwidth}{.75\pgfphysicalheight}%
  }%
  \pgfpageslogicalpageoptions{4}
  {%
    border shrink=\pgfpageoptionborder,%
    resized width=.5\pgfphysicalwidth,%
    resized height=.5\pgfphysicalheight,%
    center=\pgfpoint{.25\pgfphysicalwidth}{.25\pgfphysicalheight}%
  }%
}

\pgfpagesuselayout{4 on 1 booklet}

\begin{document}
\lipsum
\lipsum
\lipsum
\end{document}

有一个漏洞但是,在 pgfpages 中,需要先修复旋转问题。

答案4

尝试booklet包裹。

相关内容