控制页码和文本之间的行距

控制页码和文本之间的行距

根据我的论文的以下要求,我想以行数为单位设置页码和文本之间的距离。

页码必须位于文本最近一行的上方或下方至少两个空格处。

下面是我正在处理的类文件。

emu.cls:

\LoadClass[a4paper,12pt,oneside]{book}
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{emu}[2019/06/03 My custom thesis class]

\usepackage{newtxtext,newtxmath} % This is one of the ways of setting Times New Roman font.
\usepackage[doublespacing]{setspace} % double space in main text, otherwise single space for captions, header, footer.
\usepackage{geometry}\geometry{left=4cm,top=2.5cm,bottom=2.5cm} % I think right margin is set implicitly.
\usepackage{graphicx} % to include figures.
\setlength{\parindent}{5ex} % "approximately five spaces" is mentioned in the manual. 5ex means xxxxx hopefully.
\usepackage{floatrow} % To center things. For example, no need to use \centering inside figure.
%\geometry{footskip=1cm} % Hmm. How to control the distance in terms of lines?

答案1

%\geometry{footskip=1cm} % Hmm. How to control the distance in terms of lines?

例如,你可以使用

footskip=2\normalbaselineskip

尽管对于您指的是“正常行间空间”还是设置双倍行距后的间距没有进行具体说明。

从 12pt 书籍类别开始,默认行间距 ( \baselineskip) 为 14.5pt,因此您可以将\footskip其设置为所需的任意倍数。

相关内容