Footnotes for tables in latex - 为latex的table加上footnotes

参考:

Footnotes for tables in latex - 为latex的table加上footnotes

这是一个Latex中经典的排版问题。使用threeparttable为latex的table加上footnotes,例如:

\begin{table}[h]
\caption{Example of test session results}
\label{tab:test_results}
\centering
\begin{threeparttable}
\begin{tabular}{|l|l|l|}
\hline
Mutants & CPU\tnote{1}     & Memory\tnote{2}    \\ \hline
Mutant-1   & 23 & 15 \\ \hline
Mutant-2   & 32 & 11 \\ \hline
\end{tabular}
\begin{tablenotes}
\item[1] Measured in percentages.
\item[2] Measured in kilobytes (KB).
\end{tablenotes}
\end{threeparttable}
\end{table}

2018.4

posted @ 2018-04-09 08:51  Wasdns  阅读(1869)  评论(0编辑  收藏  举报