색상으로 구분된 테이블 범례를 추가하는 방법

색상으로 구분된 테이블 범례를 추가하는 방법
\begin{table}[ht]
\centering
\begin{tabular}{c|ccccccc}
\hline
& col1 & col2 & col3 & col4 & col5 & col6 & col7 \\
\hline
\rowcolor{red}
row1& \ra & \ra & \ra & \ra & \ra & \ra & \ra \\
row2& \ra & \ra & \ra & \ra & \ra & \ra & \ra \\
\rowcolor{red}
row3& \ra & \ra & \ra & \ra & \ra & \ra & \ra \\
row4& \ra & \ra & \ra & \ra & \ra & \ra & \ra \\
\rowcolor{red}
row5& \ra & \ra & \ra & \ra & \ra & \ra & \ra \\
row6& \ra & \ra & \ra & \ra & \ra & \ra & \ra \\
\hline
\end{tabular}
\end{table}

색상으로 구분된 행(빨간색 또는 검정색)이 있는 간단한 테이블이 있고 독자에게 빨간색 = 남성, 검정색 = 여성을 알려주는 간단한 색상으로 구분된 범례를 추가하고 싶습니다. 아마도 이렇게 생긴 것이 있지 않을까?

여기에 이미지 설명을 입력하세요

답변1

예를 들면 다음과 같습니다.

여기에 이미지 설명을 입력하세요

\documentclass[border=5mm]{standalone}
\usepackage{amssymb}
\usepackage{xcolor}
\begin{document}
\fbox{\begin{tabular}{ll}
\textcolor{red}{$\blacksquare$} & Male \\
$\blacksquare$ & Female 
\end{tabular}}
\end{document}

관련 정보