如何在 LaTeX 中获取 PDF 尺寸-70x60mm

如何在 LaTeX 中获取 PDF 尺寸-70x60mm

我需要获取 70 x 60 毫米的 PDF 尺寸。如何获取这些尺寸?

答案1

例如,包geometry可以设置纸张尺寸:

\documentclass{article}
\usepackage[paperwidth=70mm, paperheight=60mm]{geometry}
\begin{document}
Hello World!
\end{document}

相关内容