表格列名中的脚注

表格列名中的脚注

可能重复:
表格中有脚注吗?

我尝试插入\footnote表格的列名。脚注没有按预期出现在页面底部。有人能帮我吗?

下面提供了示例代码:

\begin{table}[htbp]
  \centering
  \scriptsize
    \begin{tabular}{|c|c|c|c|c|}
    \hline   
      \textbf{Queries} & \textbf{NUR}\footnote{No of unigram models satisfying user 
        preference} & \textbf{NBR}\footnote{No of bigram models satisfying user 
        preference} & \textbf{UCHR}\footnote{class hit rate for unigram models} & 
      \textbf{BCHR}\footnote{class hit rate for bigram models} \

答案1

您可以使用表脚注\tablefootnote里面有表 s 而不是普通的\footnotes:

\documentclass{article}
%\usepackage{hyperref}% if you use hyperref, load it before tablefootnote
\usepackage{tablefootnote}

\begin{document}

\begin{table}[htbp]
  \centering
  \scriptsize
    \begin{tabular}{|c|c|c|c|c|}
    \hline   
      \textbf{Queries} & \textbf{NUR}\tablefootnote{No of unigram models satisfying user 
        preference} & \textbf{NBR}\tablefootnote{No of bigram models satisfying user 
        preference} & \textbf{UCHR}\tablefootnote{class hit rate for unigram models} & 
      \textbf{BCHR}\tablefootnote{class hit rate for bigram models} \\
    \hline
    \end{tabular}
\end{table}

% \newpage
% for making easier the testing of the hyperlinks

\end{document}

相关内容