当我对表中的值执行\footnote{}时,脚注不显示。我怎么才能让它出现呢?另外,有没有可能让它显示在表格的底部,而不是页面的底部?
发布于 2013-05-29 11:15:15
没有任何麻烦的最好方法是使用tablefootnote包中的\tablefootnote命令。在前言中添加以下内容:
\usepackage{tablefootnote}它不需要额外的技巧就能工作。
发布于 2015-08-20 20:21:54
一种可能不是那么优雅的方法,我认为这只是其他人所说的一种变体,就是硬编码。许多期刊都有一个模板,在某种程度上允许表格脚注,所以我尽量保持基本的内容。不过,确实已经有一些令人难以置信的软件包了,我认为这个帖子很好地指出了这一点。
\documentclass{article}
\begin{document}
\begin{table}[!th]
\renewcommand{\arraystretch}{1.3} % adds row cushion
\caption{Data, level$^a$, and sources$^b$}
\vspace{4mm}
\centering
\begin{tabular}{|l|l|c|c|}
\hline
\textbf{Data} & \textbf{Description} & \textbf{Level} & \textbf{Source} \\
\hline
\hline
Data1 & Description. . . . . . . . . . . . . . . . . . & cnty & USGS \\
\hline
Data2 & Description. . . . . . . . . . . . . . . . . . & MSA & USGS \\
\hline
Data3 & Description. . . . . . . . . . . . . . . . . . & cnty & Census \\
\hline
\end{tabular}
\end{table}
\footnotesize{$^a$ The smallest spatial unit is county, $^b$ more details in appendix A}\\
\end{document}

发布于 2013-01-07 08:03:16
如果您的表已经在使用tabular,那么最简单的方法就是将其切换到longtable,记得添加
\usepackage{longtable}例如:
\begin{longtable}{ll}
2014--2015 & Something cool\footnote{first footnote} \\
2016-- & Something cooler\footnote{second footnote}
\end{longtable}https://stackoverflow.com/questions/2888817
复制相似问题