浮动对象后的多个引用

浮动对象后的多个引用

在浮动后放置一个带有 footcitetext 的引用没有问题。但是如何处理多个引用?Footcitestext 不存在。

\documentclass[a4paper,12pt,bibtotoc,liststotoc,toc=flat,parskip=half]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[style=authortitle-icomp,natbib=true]{biblatex}

\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}

\usepackage{filecontents}

\begin{filecontents}{mybib.bib}
@article{farber:hybride-datenba,
Author = {Franz F{\"a}rber and Bernhard J{\"a}cksch and Christian Lemke and Philipp Gro{\ss}e and Wolfgang Lehner},
Date-Added = {2012-09-07 08:06:24 +0000},
Date-Modified = {2012-09-07 08:07:09 +0000},
Journal = {Datenbank Spektrum},
Pages = {81-92},
Title = {Hybride Datenbankarchitekturen am Beispiel der neuen SAP In-Memory-Technologie},
Volume = {10},
Year = {2010}}
@webpage{hauptfleisch:sieben-ssd-myth,
Author = {Klaus Hauptfleisch},
Date-Added = {2012-09-06 12:11:15 +0000},
Date-Modified = {2012-09-06 12:11:57 +0000},
Lastchecked = {06.09.2012},
Title = {Sieben SSD-Mythen auf dem Pr{\"u}fstand},
Url = {http://www.computerwoche.de/hardware/storage/2505349/},
Urldate = {05.06.2012},
Year = {2012},
Bdsk-Url-1 = {http://www.computerwoche.de/hardware/storage/2505349/}}
\end{filecontents}

\bibliography{mybib}


\begin{document}

\begin{table}[htbp]
\begin{tabular}{|c|c|}
    \hline
    Header 1    &   Header 2\\
    \hline
    1   &   2\\
    2   &   3\\
    \hline
\end{tabular}
\caption[GR1]{GR1\footcites[comment]{farber:hybride-datenba}[comment]{hauptfleisch:sieben-ssd-myth}}
\label{tab:gr1}
\end{table}
\footcitestext[comment]{cite1}[comment]{cite2}


\end{document}

相关内容