在 2 列文档的摘要中添加脚注

在 2 列文档的摘要中添加脚注

\footnote在文档摘要部分使用时,脚注不会显示在页面底部。有什么解决办法吗?

以下是一个例子:

    \documentclass[12pt,twocolumn]{article}

    \title{text}
    \author{names}
    \begin{document}
    \twocolumn[
      \begin{@twocolumnfalse}
      \maketitle
      \begin{abstract}
      foo\footnote{faa...}
      \end{abstract}
      \end{@twocolumnfalse}
    ]
    \end{document}

显示了数字,但没有显示页面底部的文字。

答案1

\footnote将建筑分为\footnotemark建筑内部abstract\footnotetext建筑外部\twocolumn[...]

在此处输入图片描述

\documentclass[twocolumn]{article}

\title{A title}
\author{An author}

\usepackage{lipsum}% Just for this example

\begin{document}

\twocolumn[
  \begin{@twocolumnfalse}
    \maketitle
    \begin{abstract}
      {\lipsum*[1]}\footnotemark
    \end{abstract}
    \strut
  \end{@twocolumnfalse}
]

\footnotetext{A footnote.}
\section{A section}\lipsum

\end{document}

答案2

使用article类,下面的代码就可以工作了。这是你想要的吗?

\documentclass{article}

\title{text}
\author{names}
\begin{document}
\maketitle
\begin{abstract}
foo\footnote{faa...}
\end{abstract}
\end{document}

在此处输入图片描述

相关内容