获得更多边距空间

获得更多边距空间

我想让单页文档的底部边距更小一些。我试过使用几何图形,但即使我使用

\usepackage[noheadfoot=true,left=1in,right=1in,top=1in,bottom=0in]{geometry}

或者

\usepackage[noheadfoot=true,left=1in,right=1in,top=1in,bottom=-15in]{geometry}

页面底部仍有很大的空白(至少一英寸)。如何恢复这个空间,以便在一页上容纳更多文本?

答案1

我认为将bottom选项设置为负长度不是一个好主意。相反,我会设置bottom=1mm(或其他非常小的正长度),同时指定noheadfoot选项并设置\pagestyle{empty}

在此处输入图片描述

showframe由于设置了选项,因此绘制了文本块周围的矩形。

\documentclass[letterpaper]{article}
\pagestyle{empty}
\usepackage{lipsum} 
\usepackage[hmargin=1in,top=1in,bottom=1mm,noheadfoot,
            showframe]{geometry}
\begin{document}
\lipsum[1-14] % plenty of filler text
\end{document}

相关内容