latex制作较为复杂的表格示例

LaTeX代码:

\usepackage{txfonts} % 默认字体times new roman
\usepackage{multirow}
\usepackage{booktabs} %表格线加粗
\usepackage{graphicx}
\usepackage{float}

\begin{document}


%%%%%%%%%%%%%%%%%%
\begin{table}[H]
  \setlength{\abovecaptionskip}{2pt}%表头和表格间距
    \setlength{\belowcaptionskip}{10pt}%
  \centering
  \caption{1234567890}\label{table1}
\begin{tabular}{@{}lccccccccc@{}}
\toprule[1pt]  %首行加粗
\multirow{2}{*}{} 
%& \multicolumn{4}{c}{1}
&& \multicolumn{4}{l}{experiments} & \multicolumn{4}{c}{simulation}
   \\
\cline{2-5}
\cline{7-10}
                       & 1      & 0.7      & 0.9      & 0.9      &   &0.9    & -  & -  & - \\    
\midrule[1pt] %中间行加粗
qqqqqqqqqq & a           & 0.7      & 0.9      & 0.9   &   & -   & -   & -    & -         \\
 
\midrule[1pt] %中间行加粗
     qqqqqqqqqa  & 1           & 0.8      & 0.9      & 0.9    &   & -    & -      & -     & -        \\
    qqqqqqqqqqqqqa                   & 1             & 0.7      & 0.9      & 0.9    &   & 0.9     & -   & -    & -    \\
    qqqqqqqqqqqa                   & 1             & 0.7      & 0.9      & 0.9    &    & 0.9    & -   & -    & -    \\
    qqqqqqqqqa                  & 1             & 0.7      & 0.9      & 0.9     &   & 0.9    & -   & -    & -    \\
   qqqqqqqqa                  & 1             & 0.7      & 0.9      & 0.9     &   & 0.9      & -   & -    & -    \\
 qqqqqqqqqa                  & 1             & 0.7      & 0.9      & 0.9     &   & 0.9       & -   & -    & -   \\
\bottomrule[1pt] %末行加粗
\end{tabular}
\end{table}
%%%%%%%%%%%%%%

\end{document}

生成的效果图:

latex制作较为复杂的表格示例_第1张图片

你可能感兴趣的:(latex)