色分けされた表の凡例を追加する方法

色分けされた表の凡例を追加する方法
\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}

関連情報