답변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}