我有时会LaTeX
结合使用pdfpages
包来操作PDF文件的页面(不一定由创建LaTeX
),例如将几页合并为一页,或更改页面的顺序。
我的问题是如何找到外部 PDF 文件中每页的大小?我想pdfpages
按高度重新排序页面。
答案1
可能有更简单的方法可以做到这一点,但你可以用它\settoheight
来测量页面的高度:
\documentclass{article}
\newlength{\imageheight}
\usepackage{graphicx}
\usepackage{printlen} % only for demonstration
\begin{document}
\settoheight{\imageheight}{\includegraphics[page=1]{example-image-a4}}
\uselengthunit{cm}\printlength{\imageheight} % only for demonstration
\end{document}