使用表格环境连续绘制多条线

使用表格环境连续绘制多条线

在此处输入图片描述

我想在乳胶中绘制一张表格,但无法像图中所示那样绘制。请帮帮我。提前致谢。

答案1

由于您没有发布您的 MWE,因此通过查看您的图表,我制作了自己的 MWE,这是我的 MWE 的输出。

\documentclass[12pt,a4paper]{book}
\usepackage[left=.45in,right=.45in,top=.6in,bottom=.6in,headheight=14.5pt]{geometry}
\usepackage{array,multirow,textcomp}
\usepackage[T1]{fontenc}



\begin{document}

\centering
\begin{tabular}{|c|c|c|c|c|c|c|c|}
\hline
Tech&\multicolumn{4}{c}{Single hom}& \multicolumn{3}{|c|}{Excepted Case}\\ \cline{2-8}
   &T. Cost& PAR & \% & / & \raisebox{-0.8ex}{\textacutedbl}  & \raisebox{-0.8ex}{\textacutedbl}  & /\\ \cline{2-8}
   &&&&&&&\\ 
   &&&&&&&\\ 
   &&&&&&&\\ 
   &&&&&&&\\ 
   &&&&&&&\\ 
   &&&&&&&\\        
   &&&&&&&\\ \hline


\end{tabular}

 \end{document} 

在此处输入图片描述

相关内容