Hallo zusammen,

ich möchte Fußnoten (bzw. mit kleinen Buchstaben nummerierte Tabellenfußnoten) in einer tabularx-Tabelle. Das funktioniert auch soweit. Sobald ich jedoch zusätzlich das hyperref-Paket lade, werden die Fußnotentexte nicht mehr angezeigt. Das Problem verschwindet wieder, wenn ich von tabularx auf tabular umsteige.

Hier ist ein entsprechendes Minimalbeispiel:
Code:
\documentclass{scrreprt}

\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}

\usepackage{tabularx}

%\usepackage{tablefootnote}
%\usepackage{hyperref}

\begin{document}

\begin{table}
  \caption{Beschriftung}
  \label{tab:test}
	\centering
	\begin{minipage}{\linewidth}
		\begin{tabularx}{\textwidth}{ll}
			1. Spalte\footnote{Hier kommt eine erste Fußnote.\label{foot:erste_fussnote}} & 2. Spalte\footnote{Hier kommt eine zweite Fußnote.\label{foot:zweite_fussnote}} \\
			bla\footref{foot:erste_fussnote} & blub\footref{foot:zweite_fussnote} \\
			ble\footref{foot:erste_fussnote} & blob\footref{foot:zweite_fussnote} \\				
		\end{tabularx}
	\end{minipage}
\end{table}

\end{document}
Hat jemand noch eine Idee zur Lösung des Problems, Fußnoten, footref, tabularx und hyperref zur Zusammenarbeit zu bewegen?