열의 모든 텍스트 색상을 변경하는 방법은 무엇입니까?

열의 모든 텍스트 색상을 변경하는 방법은 무엇입니까?

다음의 간단한 표에서 특정 열의 모든 텍스트 색상을 변경할 수 있습니까?

\documentclass{article}
\begin{document}
\begin{tabular}{ll}
one & two \\
three & four \\
five & six\\
seven & eight \\
nine & ten
\end{tabular}
\end{document}

답변1

어쩌면 다음과 같은 뜻일 수도 있습니다.

\documentclass{article}
\usepackage{array}
\usepackage{xcolor}
\begin{document}
\begin{tabular}{>{\color{red}}ll}
one & two \\
three & four \\
five & six\\
seven & eight \\
nine & ten
\end{tabular}
\end{document}

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

관련 정보