I had the issue of having two footnotes appear in \caption in a figure-environment. Fortunately, this answer (Using \footnote in a figure's \caption) provided a solution.
My code is as follows:
\begin{figure}
\begin{minipage}{\textwidth}
\includegraphics[width=0.5\textwidth]{ReportMenu}
\caption[The report submenu]{Each of the pre-defined reports appear as a menu item in the \textbf{Reporting} submenu. Some installations have custom reports made special by Innovative for them, and only appears on installations that request it. ``Report queue'' is the only item not a report,\footnotemark{} while ``Fleet statistics'' is a special report for fleet handling and only available for installations with the fleet module. In this example, all available (at writing) custom reports appear, none of which have been translated into English as they are designed for Danish and Norwegian installations. These custom reports will not appear on new installations.}
\footnotetext{Since iv2.9e, another item for report scheduling has appeared underneath the report queue and is also not a report.}
\label{fig:menu}
\end{minipage}
\end{figure}
Which yields the following result:

You'll notice that while the 5 for the inline note appears (this is correct at this point in the document), it does not appear the footnote itself.
How do I make the number (re-)appear on the footnote itself without having to manually force it? I have a feeling I have missed something obvious.


minipageI cannot use theSCfigurecorrectly, as the figure suddenly becomes rather thin. My figure in question is rather tall, so it would be neat to move it to the right/left of a page. But I consider that a different issue entirely. – Svip Oct 31 '13 at 11:48\afterpage,\minipage,\clearpagewhile having the footnote below the figure? The latter two work just fine, but without the footnote number. Else, can the number be brute forced somehow to be written there?\footnotetext[number]{text}does not work. – Lucas Nov 29 '15 at 02:47