脚注跨越双列文档中的两列

脚注跨越双列文档中的两列

我有一个简单的 Latex 代码,其中 article.cls 带有 twocolumn 选项。

\documentclass [11pt,twocolumn]{article}
\usepackage[affil-it]{authblk}
\usepackage{blindtext}
\usepackage{abstract}

\makeatletter
\newbox\abstract@box
\renewenvironment{abstract}
  {\global\setbox\abstract@box=\vbox\bgroup
     \hsize=\textwidth\linewidth=\textwidth
    \small
    \begin{center}%
    {\bfseries \abstractname\vspace{-.5em}\vspace{\z@}}%
    \end{center}%
    \quotation}
  {\endquotation\egroup}
\expandafter\def\expandafter\@maketitle\expandafter{\@maketitle
  \ifvoid\abstract@box\else\unvbox\abstract@box\if@twocolumn\vskip1.5em\fi\fi}
\makeatother


\begin{document}

\title{Title}
\author[1]{The first author\footnote{Corresponding author:
\\
The author would like to thank someone The author would like to thank someone .}}
\author[2]{The second author}
\affil[1]{University 1}
\affil[2]{University 2}

\date{\today}

\begin{abstract}
\blindtext
\end{abstract}

\maketitle

\section{Introduction}

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam lobortis facilisis sem. Nullam nec mi et neque pharetra sollicitudin.\footnote{The first footnote.
The first footnote. The first footnote.
The first footnote.The first footnote.
The first footnote.}
 Praesent imperdiet mi nec ante. Donec ullamcorper, felis non sodales commodo, lectus velit ultrices augue, a dignissim nibh lectus placerat pede.
The author would like to thank someone The author would like to thank someone.
vamus nunc nunc, molestie ut, ultricies vel, semper in, velit. Ut porttitor. Praesent in sapien. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Duis fringilla tristique 
neque.\footnote{The secont footnote. The author would like to thank someone The author would like to thank someone}
\end{document} 

我得到一个 PDF 文档,其中文本分两列,脚注也分两列。但是,我希望文档中的脚注分一列(脚注跨两列)。注意:我不想使用 \ begin {multicols} {2} 选项,而只使用指定的选项:\documentclass [11pt, twocolumn] {article}

在此处输入图片描述

如果有人知道如何解决这个问题并通过例子展示它,我将不胜感激。

相关内容