Das Problem lag an folgendem Code, der nicht im Minimalbeispiel der Frage zu finden war. Zum einen hatte ich den falschen Befehl auch noch falsch geschrieben: \foot**e**note, zum anderen wollte ich eine Fußnote innerhalb einer Gleitumgebung einfügen. Folgendes Beispiel ist falsch:<br>
\begin{table}<br>
\caption{Lebenswegphasen und –module nach DIN 15978\footenote}<br>
15978\footenote}
\label{tab:Module15978}<br>
\label{tab:Module15978}
\includegraphics[width=\textwidth]{DIN15978.jpg}<br>
\includegraphics[width=\textwidth]{DIN15978.jpg}
\end{table}<br>
\end{table}
\footnotetext{\cite{ModuleDIN15978}}<br>
\footnotetext{\cite{ModuleDIN15978}}
Lösung:
\begin{table}<br>
\begin{table}
\caption{Lebenswegphasen und –module nach DIN 15978 \protect\footnotemark}<br>
\protect\footnotemark}
\label{tab:Module15978}<br>
\label{tab:Module15978}
\includegraphics[width=\textwidth]{DIN15978.jpg}<br>
\includegraphics[width=\textwidth]{DIN15978.jpg}
\end{table}<br>
\end{table}
\footnotetext{\cite{ModuleDIN15978}}<br>
\footnotetext{\cite{ModuleDIN15978}}
Am besten ist es jedoch, ohne Fußnoten zu arbeiten:
\begin{table}<br>
\begin{table}
\caption{Lebenswegphasen und –module nach DIN 15978 \cite{ModuleDIN15978}}<br>
\cite{ModuleDIN15978}}
\label{tab:Module15978}<br>
\label{tab:Module15978}
\includegraphics[width=\textwidth]{DIN15978.jpg}<br>
\includegraphics[width=\textwidth]{DIN15978.jpg}
\end{table}