KOMA scrartcl 类中的脚注离文本太近

KOMA scrartcl 类中的脚注离文本太近

我使用scrartclKOMA 类,但发现脚注太靠近文本底部。我该如何更改?我想

  1. 之间有更多空间,
  2. 在一页上显示更多文本。

我用

\documentclass[12pt,captions=nooneline,DIV=14,BCOR=2mm, oneside,BCOR=12mm, parskip=half]{scrartcl}

hyperrefbiblatex

DIV此外,奇怪的是,更改上面一行中的值对我的论文没有影响……而更改字体大小则有影响(12pt例如从 11pt 更改为 11pt)。有什么想法吗?

这是装载了我所有的包裹和来自知识共享法律法规的文本的 MWE

\documentclass[12pt,captions=nooneline,DIV=12,BCOR=2mm, oneside,BCOR=12mm, parskip=half]{scrartcl}

\usepackage[Large]{caption}
\usepackage{geometry}

\usepackage[utf8]{inputenc}
\usepackage{textcomp}
\usepackage{booktabs}
\usepackage[bitstream-charter]{mathdesign}
\usepackage[activate={true,nocompatibility},final,tracking=true,kerning=true,spacing=true,factor=1100,stretch=10,shrink=10]{microtype}
\usepackage[firstinits=true,citestyle=authoryear,isbn=false,maxcitenames=3,maxbibnames=99,doi=false,url=false]{biblatex} 
\usepackage{titlesec}
\titleformat{\section}[hang]{
    \usefont{T1}{qhv}{b}{n}\selectfont} 
    {}
    {0em}
    {\hspace{-0.4pt}\Large \thesection\hspace{0.6em}}

\usepackage{siunitx}
\usepackage{multicol}
\usepackage{subfigure}
\usepackage{pdflscape}
\usepackage{eurosym}
\usepackage{epsfig}
\usepackage{multicol}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{graphicx}
\usepackage{xcolor}
\usepackage{setspace}
\onehalfspacing
\usepackage{hyperref}
\hypersetup{colorlinks=true, linktocpage=true, linkcolor=blue,  citecolor=blue,
urlcolor=blue,pdfpagemode=UseOutlines,pdftitle={Your title here},allbordercolors=blue,
    pdfauthor={ },
    pdfsubject={News},
    pdfkeywords={ },
    bookmarksnumbered=true,
    bookmarksopen=true ,pdfstartview=Fit      }

\usepackage{hypcap}

\begin{document}
You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Work, You may not impose any technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by Section 4(d), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by Section 4(d), as requested.\footnote{whoa look at all this white space wasted below!! and look how close this footnote is from the above text!!!!}
You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under: (i) the terms of this License; (ii) a later version of this License with the same License Elements as this License; or, (iii) either the unported Creative Commons license or a Creative Commons license for another jurisdiction (either this or a later license version) that contains the same License Elements as this License (e.g. Attribution-NonCommercial-ShareAlike 3.0 (Unported)) ("the Applicable License"). You must include a copy of, or the Uniform Resource Identifier for, the Applicable License with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that restrict the terms of the Applicable License or the ability of a recipient of the Work to exercise the rights granted to that recipient under the terms of the Applicable License. You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties. When You distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work, You may not impose any technological measures on the Derivative Work that restrict the ability of a recipient of the Derivative Work from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of the Applicable License.
\footnote{whoa look at all this white space wasted below!!}

\end{document}

答案1

您可以使用 控制文本和脚注之间的间距\skip\footins。请参阅以下 MWE。

\documentclass[12pt,parskip=half,DIV=12]{scrartcl}

\usepackage[Latin9]{inputenc}
\usepackage[english]{babel}
\usepackage{blindtext} % generates dummy document

\usepackage{hyperref}

% Distance text -- footnote
\setlength{\skip\footins}{10mm plus 2mm}


\begin{document}
\Blindtext
Footnote as requested\footnote{This is a footnote! This is a footnote! 
  This is a footnote! This is a footnote! This is a footnote! }
\Blindtext
Footnote as requested\footnote{This is a footnote! This is a footnote! 
  This is a footnote! This is a footnote! This is a footnote! }

\end{document}

您可以使用 KOMA-Script 选项控制排版区域DIV=xx。尝试 xx 12 至 18。数字越大,边距越小。希望底部边距大于顶部或左侧边距。这是非常漂亮的排版。

MWE 的结果: 在此处输入图片描述

相关内容