在一张纸上创建多个“页面”

在一张纸上创建多个“页面”

这个问题问得可能有点奇怪,尤其是就我使用的术语而言,但是是否可以将多个“页面”放在一张纸上(例如 letter 或 A4)?小页面必须有页码,以便页面可以相互引用。此外,页面边框也很有用,尽管设置好页面后可能很容易做到这一点。下图显示了一张纸上有多个页面,在本例中是六页。迷你页面应该是真正的页面,这样无论用一页纸做什么,都可以用这些迷你页面之一来完成。

还有一件事,小页面不应该是大页面的缩小版本,即字体应该是整页中的正常 10、11、12pt 字体。不使用 pdfpages 可以做到这一点吗?

G

答案1

不使用 pdfpages 可以做到这一点吗?

是的

姆韦

迷你页面(foo.tex):

\documentclass{article}
\usepackage[paperwidth=9cm,paperheight=8cm]{geometry}
\usepackage{lipsum}
\begin{document}
\section{Lore ipsum}\lipsum[1][1-6]
\section{Nam dui}\lipsum[2][1-6]
\section{Nulla malesuda}\lipsum[3][1-9]
\section{Quisque ullamcorper}\lipsum[4][1-11]
\section{Fusce mauris}\lipsum[5][1-9]
\section{Suspendise vel felis}\lipsum[6][1-8]
\end{document}

多页 ( whatever.tex):

\documentclass{article}
\usepackage[margin=1cm]{geometry}
\usepackage{graphicx} 
\centering\parskip1em
\begin{document}
\fbox{\includegraphics[page=1]{foo.pdf}}\quad
\fbox{\includegraphics[page=2]{foo.pdf}}\par
\fbox{\includegraphics[page=3]{foo.pdf}}\quad
\fbox{\includegraphics[page=4]{foo.pdf}}\par
\fbox{\includegraphics[page=5]{foo.pdf}}\quad
\fbox{\includegraphics[page=6]{foo.pdf}}\par
\end{document}

答案2

我的答案太长了,无法在这里给出。不过我在我的一艘 TUGboat 上写过这个。闪闪发光专栏介绍了将一组小页面放到单个大页面上的各种方法。7 页专栏位于https://tug.org/TUGboat/tb31-3/tb99glister.pdf

答案3

pgfpages(及其扩展pgfmorepages) 具有预定义的布局6 on 1

下面的代码使用pgfmorepages因为这样可以很容易地为页面添加边框。通过将原始几何形状设置为横向 a6,生成的页面在放入更大的 a4 文档时不会缩放。

\documentclass{article}
%\url{https://tex.stackexchange.com/q/514680/86}

\pagestyle{empty}
\thispagestyle{empty}
\usepackage[a6paper,landscape]{geometry}

\usepackage{pgfmorepages}
\pgfmorepagesloadextralayouts

\pgfpagesuselayout{6 on 1}[a4paper,border code=\pgfusepath{draw}]

\begin{document}
\Huge

\vspace*{\fill}
\centerline{1}
\vspace*{\fill}

\newpage

\vspace*{\fill}
\centerline{2}
\vspace*{\fill}

\newpage

\vspace*{\fill}
\centerline{3}
\vspace*{\fill}

\newpage

\vspace*{\fill}
\centerline{4}
\vspace*{\fill}

\newpage

\vspace*{\fill}
\centerline{5}
\vspace*{\fill}

\newpage

\vspace*{\fill}
\centerline{6}
\vspace*{\fill}


\end{document}

相关内容