答案1
在twocolumn
文章下,您可以\footnotetext[<num>]
在第一列中插入。这将设置没有脚注标记的脚注。下面我将脚注设置为打印为\fnsymbol
,其顺序为*
, †
, ‡
, §
, ¶
, ‖
, **
, ††
, ‡‡
(错误),与标题\thanks
:
\documentclass[twocolumn]{article}
\usepackage{lipsum}
\title{A title}
\author{An author\thanks{Some reference to this author}}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\begin{document}
\sloppy% Just for this example
\maketitle
\footnotetext[1]{Here is some footnote at the bottom of the first column that might reference the author.}%
\section{A section}
\lipsum[1-10]
\end{document}