如何修改清洁论文的底部边距?

如何修改清洁论文的底部边距?

我在用干净的论文模板v0.4.0。

我想知道如何修改页脚的高度。默认设置似乎有很大的余地。

在此处输入图片描述

答案1

cleanthesis.sty您链接中的 .zip 文件所包含的文件中,相关代码如下:

\setlength{\footheight}{120pt}      % avoids scrlayer-scrpage warning:
                                    % footheight to low warning
\setlength{\footskip}{185pt}        % BAD HACK that moves the foot downwards

修改这些并加载geometry包以更改页边距(我看不到边距在哪里定义以产生这样的间隙)得到如下结果:

在此处输入图片描述在此处输入图片描述

添加以下行:

\usepackage[margin=3cm]{geometry}
\setlength{\footheight}{20pt}
\setlength{\footskip}{60pt}

后:

% **************************************************
% Setup YOUR thesis document in this file !
% **************************************************
\input{my-thesis-setup}

my-thesis.tex文件中,使用数字和边距进行操作。这些是用于复制我上传的图片的值。geometry有良好的文档您可以通过 等进行修改top,并更改和bottom的值,直到您满意为止。这可行,但可能不是最好的解决方案。\footheight\footskip

相关内容