I want an article with two columns and a title section, but without a separate title page. I have achieved that, but the author's email address is not showing as a footnote (tried using thanks and footnote). Here is my example
\documentclass[12pt, a4paper, twocolumn]{article}
\usepackage{lipsum}
\usepackage[dvipsnames]{xcolor}
\usepackage[dvipdfm]{hyperref}
% redefine astract
\renewenvironment{abstract}
{\par\noindent\textbf{\abstractname}\ \ignorespaces \}
{\par\noindent\medskip}
% title, author, abstract
\title{\textbf{Some clear title}}
\author{Jane Doe\footnote{\href{mailto:jane.doe@bla.bla}{jane.doe@bla.bla}}}
%\author{Jane Doe\thanks{\href{mailto:jane.doe@bla.bla}{jane.doe@bla.bla}}}
\newcommand{\abstractText}{\noindent%
\lipsum[1]
}
\begin{document}
% starting twocolumn environment, and defining a header text in the optional
% argument of \twocolumn, where the header text is written at top of the page
% in one column with the width of the whole page
\twocolumn[
\begin{@twocolumnfalse}
\maketitle
{\color{gray}\hrule}
\bigskip
\begin{abstract}
\abstractText
\bigskip
{\color{gray}\hrule}
\bigskip
\end{abstract}
\end{@twocolumnfalse}
]
\section{Introduction}
\lipsum[2]
\section{Another section}
\lipsum[3]
\end{document}
Any hints on how to get the email address into the footnote is greatly appreciated.
