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
Footnotes for tables in latex - 为latex的table加上footnotes的更多相关文章
- Adding supplementary tables and figures in LaTeX【转】
		
\renewcommand{\thetable}{S\arabic{table}} \renewcommand{\thefigure}{S\arabic{figure}} 这样就以Table S1, ...
 - The usage method of  reference with bibtex in Latex【latex中参考文献的使用方法】
		
如何在latex中以Bibtex文件方式引用参考文献? 以IEEEtran模板为例: 1.制作bibtex参考文献库.方法如下: ①建立myreference.bib文件: ②在Google scho ...
 - Latex技巧:LaTex插图命令includegraphics参数详解
		
Latex插图的命令是\includegraphics[选项]{文件} 这里的选项在表 7.1, 7.2, 7.3 中列出. 因为 \includegraphics 不会结束 当前段落,所以它能够在文 ...
 - Latex 5: LaTeX资料下载
		
转: LaTeX资料下载 最全latex资料下载 LaTeX命令速查手册1
 - 【latex】latex基础
		
文档边距.间距调整 边距调整 \usepackage{geometry} %设置页边距的宏包 \geometry{left=3.0cm,right=2.5cm,top=2.5cm,bottom=2.5 ...
 - Latex—IEEE Latex模板 期刊名带下划线的问题解决
		
其实期刊名应该是斜体字的,但是有可能默认模板会导致斜体变下划线的问题,解决方法如下 引用包: \usepackage{ulem} %to strike the words 然后再在: \bibliog ...
 - Latex Notes
		
latex Table of Contents 1. Presentation/Slides with Beamer 2. Drawing in LaTex With TikZ 3. Tracked ...
 - Latex:入门教程
		
http://blog.csdn.net/pipisorry/article/details/54571521 总的来说,LaTex是一套排版系统,与word那种所见即所得对排版方式不太,用LaTex ...
 - 在LaTeX中使用颜色 Using colours in LaTeX
		
Using colours in LaTeX There are several elements in LATEX whose colour can be changed to improve th ...
 
随机推荐
- UVA 11488 Hyper Prefix Sets (字典树)
			
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...
 - Java常考面试题(一)
			
https://blog.csdn.net/linzhiqiang0316/article/details/80473906
 - 输出链表中倒数第k个节点
			
题目描述 输入一个链表,输出该链表中倒数第k个结点. struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x ...
 - MyEclipse配置默认自带的Java代码格式化
			
1.配置注释一大段代码块后,格式化代码,已经注释的代码仍然保持原样 (1)首先,Window -> Prefrences -> Java -> Code Style -> Fo ...
 - ES6知识整理(3)--函数的扩展
			
只有整理过的学习才是有效的学习.也就是学习之后要使用和整理成文,才是真正的学到了... 最近上班有点忙的关系,于是文章更新会慢些.只有晚上加完班之后,空余时间才能学习整理.因此完成一篇也可能要几个晚上 ...
 - hibernate 和mybatis
			
hibernate 和mybatis 你觉得选哪个?原因? Mybatis优势 MyBatis可以进行更为细致的SQL优化,可以减少查询字段. MyBatis容易掌握,而Hibernate门槛较高. ...
 - TCP之 TIME_WAIT和CLOSE_WAIT 状态 的原因分析和处理
			
转自:http://blog.csdn.net/shootyou/article/details/6622226 昨天解决了一个HttpClient调用错误导致的服务器异常,具体过程如下: http: ...
 - 树莓派dhcp server
			
首先安装isc-dhcp-server apt-get install isc-dhcp-server 然后编辑配置文件,选择需要开启dhcp服务器的网卡 vi /etc/default/isc-dh ...
 - Excel vba map/dictionary
			
今天在调整一生成java代码的工具时,要用到在不同语言间互转数据类型的逻辑,原来的代码中根据excel记录的行号来计算,再到另外一个collection中获取,个人想着这也太土鳖了,于是搜了下,在vb ...
 - Js扩容
			
/*脚本统一调用工具(企业端)*/ //杂项工具 var MiscUtils = { //去除字符串中所有的空格 ClearStringEmpty: function (str) { var strR ...