表内での引用

表内での引用

\autocite を表内で動作させることができません。表内に af 脚注マーク (番号) は生成されますが、ページの下部に脚注は生成されません。

\begin{document}
\begin{table}[H]
    \centering
    \begin{tabular}{|c|c|}
        xxx & xxx \autocite{LKH} \\ \hline
        xxx & xxx \\ \hline
        xxx & xxx \autocite{LKH} \\ \hline
   \end{tabular}
\end{table}
\end{document}

前文:

\documentclass[11pt, a4paper]{article}
\usepackage{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[danish]{babel}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage[table,xcdraw]{xcolor}
\usepackage{adjustbox}
\usepackage[normalem]{ulem}
\useunder{\uline}{\ul}{}
\usepackage[hidelinks,hypertexnames=false]{hyperref}
\usepackage{verbatim}
\usepackage[font=small,labelfont=bf,singlelinecheck=false,tableposition=top]{caption}
\usepackage[nomessages]{fp}
\usepackage{fancyhdr}
\usepackage{csquotes}
\usepackage[citestyle=verbose-ibid,bibstyle=numeric,backend=biber,sorting=none]{biblatex}
\usepackage{tocloft}
\usepackage{float}
\usepackage[bottom]{footmisc}
\usepackage{array}

\cftsetindents{section}{0em}{2em}
\cftsetindents{subsection}{2em}{2em}
\cftsetindents{subsubsection}{4em}{2em}

\bibliography{references}


\pagestyle{fancy}
\fancyhf{}
\lhead{Jeppe Kjærsgaard}
\chead{Finansøkonom}
\rhead{CPH Business}
\cfoot{\thepage}
\setlength{\headheight}{13.59999pt}
\addtolength{\topmargin}{-1.59999pt}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\baselinestretch}{1.5} 

\newcolumntype{M}[1]{>{\centering\arraybackslash}m{#1}}

\renewcommand{\thesection}{\Roman{section}}
\renewcommand{\thesubsection}{\Alph{subsection}}
\renewcommand{\thesubsubsection}{\arabic{subsubsection}}
\setlength{\parindent}{0pt}
\addtolength{\textheight}{1cm}
\newcommand{\colorrow}{\rowcolor[HTML]{FACB7F}}

\newcommand{\charactercount}[1]{
\immediate\write18{
    expr `texcount -1 -sum -merge #1.tex` + `texcount -1 -sum -merge -char #1.tex` - 1 
    > chars.txt
}\input{chars.txt}}

参考文献リストは自分で管理しているので、問題はありません。唯一の問題は、引用元の表の中に番号があるのに、参考文献に脚注がないことです。

表の前にいくつかの参照があるので、参照番号は 14 と 15 になります。これは表の中に表示されていますが、残念ながら下部には表示されていません。

私はオーバーリーフに書いています。

よろしくお願いいたします!

関連情報