代码片段示例

代码片段示例

我的绘图程序 (R) 可以绘制一组图形,每个图形都位于同一个 pdf 的单独页面上。有没有办法在 LaTeX 中将其转换为单个 4x4 或 8x2 图形?还有其他方法,但这种方法更可取。

答案1

这非常简单。请使用pdfpages.sty点击此处查看手册


示例输出

替代文本


代码片段示例

我使用了一个从这里然后将其重命名为movies.pdf

\documentclass{article}
\usepackage[a4paper,margin=1cm]{geometry}
\usepackage{pdfpages}
\begin{document}
\includepdf[%
landscape=true,%
pages={1-16},%Include pages from 1 to 16.
nup=2x3,%If landscape=false then it defines columns x rows. Otherwise it defines rows by columns. 
]{movies.pdf}%Pdf file name with or without extension.
\end{document}

相关内容