如何在脚注中设置顶行和底行之间的间距

如何在脚注中设置顶行和底行之间的间距

我正在写一篇文章。我怎样才能在脚注和上面的对象之间留一个空格。谢谢。

您可以在以下位置找到所有必要的文件这个链接。 脚注和其他对象

\documentclass{elektr}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    urlcolor=blue,
    citecolor=blue}
\usepackage[all]{xy,xypic}
\usepackage{amsfonts,amssymb,amsmath,amsgen,amsopn,amsbsy,theorem,graphicx,epsfig}
\usepackage{eufrak,amscd,bezier,latexsym,mathrsfs,eurosym,enumerate}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{cleveref,multirow}
\usepackage[dvipsnames]{xcolor}
\usepackage[pagewise]{lineno}
\linenumbers

\yil{}
\vol{}
\fpage{}
\lpage{}
\doi{}

\title{Synthesizing a robust proactive model}

\author[AUTHOR and AUTHOR]{
    \textbf{John Doe\thanks{[email protected]}~}\\
    Department of Computer Engineering, Turkey, \\ ORCID iD: https://orcid.org/
    \\ [1.8em]
    
    \rec{.201}
    \acc{.201}
    \finv{..201}
}
\input{elksty.tex}
\setcounter{page}{1}
\begin{document}
    \maketitle
            \begin{abstract}Mobile phones are the most common personal vehicles used for communication in the world. The most common type of written communication other than voice calls on mobile phones is SMS (short message service)....
        
        \keywords{data mining, machine learning}
    \end{abstract}
        \section{Introduction}
    \label{Int}
         Mobile devices, particularly smart phones, are being used at an increasing level by users due to various functions they provide  According to the data obtained by Statistica \footnote{Number of smartphone users worldwide 2016-2021. Website \url{https://www.statista.com/statistics/330695/number-of-smartphone-users-worldwide/} [Accessed December 25, 2018]}  the SMS traffic increased to 8.3 trillion in 2015 from over 5 trillion in 2009. 
    
\end{document}

答案1

包中的 定义\thanks没有为脚注留出足够的空间。但是,即使解决这个问题,例如使用,和脚注之间也会存在冲突。\thanks{[email protected] \medskip}lineno

您的 MWE 的两个问题都可以通过添加包来解决bigfoot

A

这是代码。请注意注释。

% !TeX TS-program = pdflatex

\documentclass{elektr}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    urlcolor=blue,a
    citecolor=blue}
\usepackage[all]{xy,xypic}
\usepackage{amsfonts,amssymb,amsmath,amsgen,amsopn,amsbsy,theorem,graphicx,epsfig}
\usepackage{eufrak,amscd,bezier,latexsym,mathrsfs,eurosym,enumerate}  %% The eufrak package is redundant if the amsfonts package i used <<<<<<<<<<<<<<
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{cleveref,multirow}
\usepackage[dvipsnames]{xcolor}

\usepackage{bigfoot} % added <<<<<<<
\usepackage[pagewise]{lineno}
\linenumbers

\yil{}
\vol{}
\fpage{}
\lpage{}
\doi{}

\title{Synthesizing a robust proactive model}

\author[AUTHOR and AUTHOR]{%
    \textbf{John Doe\thanks{[email protected]}}
    Department of Computer Engineering, Turkey, \\ ORCID iD: https://orcid.org/
    \\ [1.8em]
    
    \rec{.201}
    \acc{.201}
    \finv{..201}
}

\input{elksty.tex}  % many warning in compilation <<<<<<<<<<

\setcounter{page}{1}
\begin{document}    
    \maketitle  

\begin{abstract}Mobile phones are the most common personal vehicles used for communication in the world. The most common type of written communication other than voice calls on mobile phones is SMS (short message service)....

\keywords{data mining, machine learning}
\end{abstract}

\section{Introduction}
\label{Int}

Mobile devices, particularly smart phones, are being used at an increasing level by users due to various functions they provide  According to the data obtained
by Statistica \footnote{Number of smartphone users worldwide 2016-2021. \\ % changed <<<<<<<<<<<<
Website \url{https://www.statista.com/statistics/330695/number-of-smartphone-users-worldwide/} [Accessed December 25, 2018]}  the SMS traffic increased to 8.3 trillion in 2015 from over 5 trillion in 2009. 

As any dedicated reader can clearly see, the Ideal of
practical reason is a representation of, as far as I know, the things
in themselves; as I have shown elsewhere, the phenomena should only be
used as a canon for our understanding. The paralogisms of practical
reason are what first give rise to the architectonic of practical
reason. As will easily be shown in the next section, reason would
thereby be made to contradict, in view of these considerations, the
Ideal of practical reason, yet the manifold depends on the phenomena.
Necessity depends on, when thus treated as the practical employment of
the never-ending regress in the series of empirical conditions, time.
Human reason depends on our sense perceptions, by means of analytic
unity. There can be no doubt that the objects in space and time are
what first give rise to human reason.

\end{document}

答案2

这些的目的是什么

\yil{}
\vol{}
\fpage{}
\lpage{}
\doi{}

相关内容