This question is two-fold ans thus the answer is, too. The symbols used for the footnotes are stored in a macro called
\@fnsymbol
. It's definition is as follows:
Code: Select all
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or *\or \dagger\or \ddagger\or
\mathsection\or \mathparagraph\or \|\or **\or \dagger\dagger
\or \ddagger\ddagger \else\@ctrerr\fi}}
A suitable redefinition takes care of your symbols wish.
As for the cramped footnotes: usually the
\author
command is used a bit differently, namely using
\thanks
instead of
\footnote
and the names delimited with
\and
:
Code: Select all
\documentclass[a4paper,11pt] {article}
\usepackage{xcolor}
\makeatletter
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or *\or %\dagger\or \ddagger\or
\mathsection\or \mathparagraph\or \|\or **\or \dagger\dagger
\or \ddagger\ddagger \else\@ctrerr\fi}}
\makeatother
\title{\color{blue}The Walt Disney World}
\author{%
\color{black}Micky Mouse\thanks{Born on 1924} \and
Donald Duck\thanks{Born on 1926} \and
Myself\thanks{Born now}%
}
\date{\color{red}February 2013}
\begin{document}
\maketitle
\end{document}

- titlefn1.png (12.48 KiB) Viewed 11025 times
But they indeed still look a bit cramped. A manual solution could be to insert a suitable
\kern
:
Code: Select all
\documentclass[a4paper,11pt] {article}
\usepackage{xcolor}
\makeatletter
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or *\or %\dagger\or \ddagger\or
\mathsection\or \mathparagraph\or \|\or **\or \dagger\dagger
\or \ddagger\ddagger \else\@ctrerr\fi}}
\makeatother
\title{\color{blue}The Walt Disney World}
\author{%
\color{black}Micky Mouse\thanks{Born on 1924} \and
Donald Duck\thanks{Born on 1926} \and
Myself\kern.07em\thanks{Born now}%
}
\date{\color{red}February 2013}
\begin{document}
\maketitle
\end{document}

- titlefn2.png (12.48 KiB) Viewed 11025 times
You can do the same if you want to stick to your original setting using a comma list.
Regards