Latex 表格(跨行、跨列、背景加灰)new
一、 效果如图
二、代码如下
1. 首部增加宏包:
\usepackage{multirow}
2. 正文部分增加:
\begin{table}
\centering
\caption{Suspiciousness of statements for \texttt{foo()} computed by different approaches}
\label{Tbl:Suspiciousness}
\begin{tabular}{|c||c|c|c|c||c|c|c|c|}
\hline
\multirow{}{*}{statement} & \multicolumn{}{c||}{coverage based} & \multicolumn{}{c|}{hybrid slice spectrum based} \\
\cline{-} & Tarantula & Naish2 & R\&R & HSS & Tarantula & Naish2 & R\&R & HSS \\ \hline \hline
$s_{}$ & 0.5 & 2.17 & 0.38 & 0.89 & 0.5 & 2.2 & 0.38 & 0.91 \\ \rowcolor{gray!} % set next line gray background color
$s_{}$ & 0.5 & 2.17 & 0.38 & 0.89 & 0.5 & 2.2 & 0.38 & 0.91 \\
$s_{}$ & 0.5 & 2.17 & 0.38 & 0.89 & 0.25 & 0.2 & 0.13 & 0.05 \\
$s_{}$ & 0.5 & 2.17 & 0.38 & 0.89 & 0.5 & 2.2 & 0.38 & 0.91 \\
$s_{}$ & 0.53 & 1.5 & 0.25 & 0.41 & 0.57 & 1.6 & 0.25 & 0.43 \\
$s_{}$ & 0.53 & 1.5 & 0.25 & 0.41 & 0.4 & 0.6 & 0.13 & 0.09 \\
$s_{}$ & 0.53 & 1.5 & 0.25 & 0.41 & 0.57 & 1.6 & 0.25 & 0.43 \\
$s_{}$ & 0.5 & 2.17 & 0.38 & 0.89 & 0.5 & 2.2 & 0.38 & 0.91 \\
$s_{}$ & 0.53 & 1.5 & 0.25 & 0.41 & 0.57 & 1.6 & 0.25 & 0.43 \\
$s_{}$ & 0.45 & 0.67 & 0.13 & 0.09 & 0.4 & 0.6 & 0.13 & 0.09 \\
$s_{}$ & 0.5 & 2.17 & 0.38 & 0.89 & 0.5 & 2.2 & 0.38 & 0.91 \\ \hline \hline
fault rank & - & - & - & - & - & - & - & - \\ \hline
loc. cost(\%) & 45.5-90.9 & 9.1-54.5 & 9.1-54.5 & 9.1-54.5 & 36.4-72.7 & 9.1-45.5 & 9.1-45.5 & 9.1-45.5 \\ \hline \end{tabular}
\end{table}
三、代码解释
- 跨行、跨列代码为第7、8 行:
\multirow{2}{*}{statement} & \multicolumn{4}{c||}{coverage based} & \multicolumn{4}{c|}{hybrid slice spectrum based} \\
8 \cline{2-9} & Tarantula & Naish2 & R\&R & HSS & Tarantula & Naish2 & R\&R & HSS \\ \hline - 加灰色代码为第9行:(作用是将第10行背景设为灰色)
\rowcolor{gray!40} % set next line gray background color
Latex 表格(跨行、跨列、背景加灰)new的更多相关文章
- latex制作表格-跨行跨列
1.列的合并,使用 \multicolumn{跨几列}{格式}{填充内容} \documentclass[UTF8]{ctexart} \begin{document} 三囚犯问题进行300次实验后\ ...
- javascript 将 table 导出 Excel ,可跨行跨列
<script language="JavaScript" type="text/javascript"> //jQuery HTML导出Excel ...
- Excel中复杂跨行跨列数据
XSSFWorkbook wb = new XSSFWorkbook(); // 工作表 XSSFSheet sheet = wb.createSheet("车辆使用情况统计"); ...
- HTML表格跨行、跨列操作(rowspan、colspan)
转自:https://blog.csdn.net/u012724595/article/details/79401401 一般使用<td>元素的colspan属性来实现单元格跨列操作,使用 ...
- colspan是跨列,rowspan是跨行
colspan是跨列,rowspan是跨行,可以看作是网页设计表格中的列和行的一个属性.跨列相当于把两列或者多列合并成一个单元格:跨行同理是把两行或者多行合并成一行:colspan和rowspan分别 ...
- table中tr间距的设定table合并单元格 colspan(跨列)和rowspan(跨行)
table中的tr的默认display:table-row,虽然可以修改为display:block但是就失去了tr特有的显示效果,如(td自动对齐): 并且在tr中对起设定padding是有用的,可 ...
- table合并单元格 colspan(跨列)和rowspan(跨行)
colspan和rowspan这两个属性用于创建特殊的表格. colspan是“column span(跨列)”的缩写.colspan属性用在td标签中,用来指定单元格横向跨越的列数: 在浏览器中将显 ...
- Java 操作Word表格——创建嵌套表格、添加/复制表格行或列、设置表格是否禁止跨页断行
本文将对如何在Java程序中操作Word表格作进一步介绍.操作要点包括 如何在Word中创建嵌套表格. 对已有表格添加行或者列 复制已有表格中的指定行或者列 对跨页的表格可设置是否禁止跨页断行 创建表 ...
- easyui DataGrid表体单元格跨列rowspan
最近做项目用到了jquery easyui,其中一组DataGrid做的报表是给客户大领导看的,客户要求报表样式跟他们原有系统的一模一样(如下图1). DataGrid样式好调,只是城市名称单元格跨行 ...
随机推荐
- Codeforces 791B. Bear and Friendship Condition 联通快 完全图
B. Bear and Friendship Condition time limit per test:1 second memory limit per test:256 megabytes in ...
- 品味性能之道<十一>:JAVA中switch和if性能比较
通常而言大家普遍的认知里switch case的效率高于if else.根据我的理解而言switch的查找类似于二叉树,if则是线性查找.按照此逻辑推理对于对比条件数目大于3时switch更优,并且对 ...
- Getting svn to ignore files and directories
August 27, 2013Software Developmentresources, subversion, svn, tutorial, version control Who knew it ...
- [转]sqlmap使用教程
sqlmap也是渗透中常用的一个注入工具,其实在注入工具方面,一个sqlmap就足够用了,只要你用的熟,秒杀各种工具,只是一个便捷性问题,sql注入另一方面就是手工党了,这个就另当别论了. 今天把我一 ...
- Spark Streaming性能调优详解
Spark Streaming性能调优详解 Spark 2015-04-28 7:43:05 7896℃ 0评论 分享到微博 下载为PDF 2014 Spark亚太峰会会议资料下载.< ...
- HDU - 5658
题意:给你一个字符串,给你Q次询问,每一次问你从l-r里有多少个回文串. 思路:len很小,所以直接遍历区间求就好了. /* gyt Live up to every day */ #include& ...
- kbmmw 的HTTPSmartService中的跨域访问
有同学在使用kbmmw 与extjs 结合的时候,涉及到了跨域访问,这个在 kbmmw 里面已经完全解决. extjs 在访问跨域的时候,首先会使用OPIONS 调用,服务端要根据浏览器请求的 he ...
- Our Future
The world is betting on how to win the football game: But I'm betting on how to win your heart: Mayb ...
- CHAPITRE II
J'ai ainsi vécu seul, sans personne avec qui parler véritablement, jusqu'à une panne[pan][机]故障 dans ...
- PC Access的使用
需要copy xxx.dll 到windows/syswow64 目录下 运行com注册 启动电脑后,自动锁定(在启动目录下架锁定程序) using System; using System.Col ...