- I'm using Overleaf to prepare a LaTeX template. For that, I would have to use footnotes in the title, but when I use footnotes in the title they show up as symbols instead of numbers.
- When I use footnotes in body text, they appear as numbers and start at 1. Apparently, the footnotes used in the title and body text don't seem to be in sync with each other.
- For example, the following code is a simple example to demonstrate the issue I'm facing,
\documentclass{article}
\usepackage[paperheight=6in,
paperwidth=5in,
top=10mm,
bottom=20mm,
left=10mm,
right=10mm]{geometry}
\begin{document}
\title{This is my title\footnote{Just a note.}}
\maketitle
Hello\footnote{World}
\end{document}
Here, I expect that in the title the footnote will be marked as 1 and in the body as 2 and so on. I've tried various ways found on the web, but none seem to work. Your support would be greatly appreciated.

