编辑边距

编辑边距

是否可以减少页码后面的空白,使其如下面的屏幕截图所示?!我使用\documentclass{article}但不提供geometry序言中的包。非常感谢您的帮助。

在此处输入图片描述

或者如何将下面屏幕截图中的页面编号提高到稍微高一点的数值?!在这种情况下,我提供以下内容

\usepackage{geometry}
\geometry{footskip=15pt}

在此处输入图片描述

答案1

我的建议是使用

\usepackage{geometry}
\geometry{
  footskip = 0pt, % Remove skip between bottom of text block and footer
  bottom = \dimexpr\baselineskip+<len> % Distance from bottom of page to 
                                       % bottom of text block
}

距离\baselineskip将显示页脚(其中包括页码),而任何值<len>都会增加底部边距(或者您可以不使用它)。

相关内容