答案1
基本上,您只需要該表的兩個特殊命令:
- 可以使用包裝
\textcolor{colorname}{text}
中的顏色進行更改xcolor
- 對於跨越多列的儲存格,您可以使用
\multicolumn{number of column}{alignment}{text}
我不會為您編寫整個表格的程式碼,但這應該為您提供一個起點:
\documentclass{article}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{xcolor}
\begin{document}
\begin{table}[htbp]
\caption{text}
\centering
\begin{tabular}{@{}ccccc@{}}
\toprule
& \multicolumn{4}{c}{text}\\
\midrule
& text1 & text2 & text3 & text4\\
\midrule
\textcolor{red}{text} & 1.0 & 1.0 & 1.0 & 1.0\\
\bottomrule
\end{tabular}
\end{table}
\end{document}