我正在使用 Springer 模板svmono
编写我教授的几何教科书。在 Texmaker 中编译后,我收到一个 pdf 文件,页面大小为 21.587cm x 28cm。我想将其更改为 16cm x 24cm,那么我该怎么做?
答案1
\pdfpagewidth
您通过和 来设置 PDF 页面的尺寸\pdfpageheight
。但是,使用 的标准参数时svmono
,文本不适合页面。显示了通过设置\oddsidemargin
和进行更正的示例。\evensidemargin
\documentclass{svmono}
\usepackage{lipsum} % A text for an illustration
\pdfpagewidth16cm
\pdfpageheight24cm
\oddsidemargin0cm % correction (PS)
\evensidemargin\oddsidemargin % correction (PS)
\begin{document}
\lipsum
\end{document}