The description of my table as far as I understand it is given below:
First row is the combination of two rows: First cell of 1st row is empty, 2nd cell of the 1st row is the combination of 5 columns (text=GrpNumber1), 3rd cell of 1st row column is the combination of 4 columns(text=GrpNumber2), 4th cell of 1st row is the combination of 2 columns(text=GrpNumber3), 5th , 6th and 7th cell of 1st row is the combination of 3 columns with (text=GrpNumber4), (text=GrpNumber5), (text=GrpNumber6) respectively.
2nd row has the same number of columns for each cell, only the 4th cell has the text “Task”
3rd row has the same number of columns for each cell but the text in each cell is vertically oriented from down to up
Remaining rows have text in the first cell while tick mark and cross in the remaining cells and this will continue till 20 rows.
The sample image of the table is given below:
[img] [/img]
I have created the following code and I have included solidity-highlight.tex,
Code: Select all
\documentclass[manuscript,screen]{acmart}
\usepackage{listings}
\input{solidity-highlighting.tex}
\usepackage[colorinlistoftodos]{todonotes}
\AtBeginDocument{%
\providecommand\BibTeX{{%
\normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}}
\setcopyright{acmcopyright}
\copyrightyear{2020}
\acmYear{2020}
\acmDOI{10.1145/1122445.1122456}
\begin{document}
\title{A Test of Latex}
\author{Khan}
\email{Khan@edu}
\affiliation{}
\institution{University}
\renewcommand{\shortauthors}{Trovato and Tobin, et al.}
\begin{abstract}
Testing abstract
\end{abstract}
\begin{CCSXML}
<ccs2012>
<concept>
<concept_id>10002978.10003022</concept_id>
<concept_desc> and application security</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10002944.10011122.10002945</concept_id>
<concept_desc>General and reference~Surveys and overviews</concept_desc>
<concept_significance>500</concept_significance>
</concept>
</ccs2012>
\end{CCSXML}
\ccsdesc[500]{Security and privacy~Software and application security}
\ccsdesc[500]{General and reference~Surveys and overviews}
\maketitle
\section{Introduction}
Hello. \citet{1}, \citet{2}, \citet{3} %\cite{8} \cite{105} \cite{112} %\cite{48} \cite{87}.
\begin{lstlisting}[language=Solidity]
contract TestList1{
}
\end{lstlisting}
\begin{table}[]
\centering
\begin{tabular}{l|ccccc|cccc|cc|ccc|ccc|ccc}
\hline
& \multicolumn{5}{c|}{\bf GrpNumber1} & \multicolumn{4}{c|}{\bf GrpNumber2} & \multicolumn{2}{c|}{\bf GrpNumber3} & \multicolumn{3}{c|}{\bf GrpNumber4} & \multicolumn{3}{c|}{\bf GrpNumber5} & \multicolumn{3}{c}{\bf GrpNumber6} \\
& \multicolumn{5}{c|}{\bf } & \multicolumn{4}{c|}{\bf } & \multicolumn{2}{c|}{\bf Task} & \multicolumn{3}{c|}{\bf } & \multicolumn{3}{c|}{\bf } & \multicolumn{3}{c}{\bf } \\
\hline
Code: Select all
& \rot{Grp1Member1} & \rot{Grp1Member2} & \rot{Grp1Member3} & \rot{Grp1Member4}
& \multicolumn{1}{c|}{\rot{Grp1Member5}}
& \rot{Grp2Member1}
& \rot{Grp2Member2}
& \rot{Grp2Member3}
& \multicolumn{1}{c|}{\rot{Grp2Member4}}
& \rot{Grp3Member1}
& \multicolumn{1}{c|}{\rot{Grp3Member2}}
& \rot{Grp4Member1}
& \rot{Grp4Member2}
& \multicolumn{1}{c|}{\rot{Grp4Member3}}
& \rot{Grp5Member1}
& \rot{Grp5Member2}
& \multicolumn{1}{c|}{\rot{Grp5Member3}}
& \rot{Grp6Member1}
& \rot{Grp6Member2}
& \multicolumn{1}{c|} {\rot{Grp6Member3}} \\
\hline
\end{tabular}
\caption{Testing Table for Classification.}
\label{tab:classification}
\vspace{-0.1in}
\end{table}
\bibliographystyle{ACM-Reference-Format}
\bibliography{sourcefile-bib}
\end{document}
\endinput
Please provide me the whole code.
Zulfi.