[Tex/LaTex] Add a footnote on the paper title

footnotestitles

I want to add a footnote to the title of my paper. I am able to get a asterisk appearing at the end of the title but there is no actual footnote on the bottom of the page where we normally expect footnote to be. Instead, it's still the AAAI copyright info. enter image description hereHere I've attached a MWE

\documentclass[letterpaper]{article}
\usepackage{aaai}
\usepackage{times}
\usepackage{helvet}
\usepackage{courier}
\frenchspacing
\setlength{\pdfpagewidth}{8.5in}
\setlength{\pdfpageheight}{11in}
\pdfinfo{
 /Title (Insert Your Title Here)
/Author (Put All Your Authors Here, Separated by Commas)}
\setcounter{secnumdepth}{0}  
\begin{document}
\title{Formatting Instructions \\for Authors Using \LaTeX{}\footnote{Example.}}
\author{AAAI Press\\
Association for the Advancement of Artificial Intelligence\\
2275 East Bayshore Road, Suite 160\\
Palo Alto, California 94303\\
}
\maketitle
\begin{abstract}
\begin{quote}
AAAI creates proceedings, working notes... 
\end{quote}
\end{abstract}


\end{document}

Best Answer

This is how. Download aaaihttp://www.aaai.org/Publications/Author/author.php

Note: Need to use \nocopyright before \maketitle and use \thanks for footnote. As mentioned in the comment by @Bernard, without aaai package works fine (with different style, one column). So this solution is for if aaai.sty is obtained from the link mentioned above (with two column style).

enter image description here