我无法让 \autocite 在表格内工作。它在表格内生成脚注标记(编号),但不会在页面底部生成任何脚注。
\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,显示在表格内部,但不幸的是不在底部。
我正在背面书写。
谢谢问候!