right now I am generating a table which collects a few information based on different authors. I put the references as footnotes and as far as I got from the stackexchange here, I have to use a minipage otherwise I cannot use the footnotes (not resolved). Well that is working fine but the 14 references are listed in one single column. However, I would like to split it into two or three columns otherwise it looks really bad. The table (as picture) is given below as well as an example LaTeX code. I tried following the suggestions made here Split LaTeX footnotes into two columns using the dblfnote package but without success. I guess it is related to my minipage / table environment.
Thank you in advance, Tobi
\documentclass[a4paper, 11pt, ngerman]{scrreprt}
\usepackage{multirow}
\usepackage{hhline}
\usepackage{pdflscape}
\usepackage{xcolor}
\usepackage{colortbl}
\begin{document}
\begin{landscape}
\def\arraystretch{1.15}
\begin{table}[h]
\begin{minipage}{\textheight}
%
%
%
%
\begin{tabular}{lccccccccc}
\hline
\cellcolor{gray!10} 1&
\cellcolor{gray!10} 2&
\cellcolor{gray!10} 3&
\cellcolor{gray!10} 4&
\cellcolor{gray!10} 5&
\cellcolor{gray!10} 6&
\cellcolor{gray!10} 7&
\cellcolor{gray!10} 8&
\cellcolor{gray!10} 9&
\cellcolor{gray!10} Quelle
\\\hline
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
AA & BB & CC & DD & EE & FF & GG & HH & II &
\footnote{Footnote 1}
\footnote{Footnote 2}
\footnote{Footnote 3}
\footnote{Footnote 4}
\footnote{Footnote 5}
\footnote{Footnote 6}
\footnote{Footnote 7}
\\\hline
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\\\hline
\end{tabular}
\caption{Test table}
%
%
\vspace{1cm}
\end{minipage}
\end{table}
\end{landscape}
\end{document}


\usepackage[para]{footmisc}– Michael Palmer Sep 09 '17 at 20:59threeparttableto keep the notes within the floating table itself. – Michael Palmer Sep 09 '17 at 21:01