次の簡単な表で、特定の列のすべてのテキストの色を変更することは可能ですか?
\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}