Latex에서 그런 테이블을 어떻게 만들 수 있습니까?

Latex에서 그런 테이블을 어떻게 만들 수 있습니까?

할 수가 없어요. 정말 힘들고 글자 색을 바꾸는 방법도 모르겠어요.

스크린샷

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

관련 정보