I am trying to use \thanks inside \author in a twocolumn article. The document shows an asterisk next to the author's name, but the footnote is not appearing at the bottom of the first page or anywhere else in the document.
The abstract is one column and \thanks works if the multicol package is used, however it would be easier if the article is simply twocolumn. Here is a working example.
\documentclass [11pt, twocolumn] {article}
\usepackage[affil-it]{authblk}
\usepackage{blindtext}
\usepackage{abstract}
\begin{document}
\title{Latin text\\ \textit{and}\\ It's in Latin}
\author{James Smith%
\thanks{The author would like to thank someone.}}
\affil{USA University}
\date{November 2012}
\twocolumn[
\begin{@twocolumnfalse}
\maketitle
\begin{abstract}
\blindtext
\vspace{1cm}
\end{abstract}
\end{@twocolumnfalse}
]
\section{Introduction}
\blindtext
\end {document}


\twocolumnhack on this website when I was playing around with getting the abstract to be single column. I searched for a while trying to fix this issue with\thanksso I'm surprised I never came across\saythanks. – Forrest Nov 04 '12 at 04:59abstractpackage, which I believe was created for just this situation. In case it's helpful, the package documentation has an example of use that mentions\saythanks. – cyberSingularity Nov 04 '12 at 11:23