为 xtable 生成的 latex 表的列着色

为 xtable 生成的 latex 表的列着色

如何使用 R xtable 包生成带有彩色列的表格?帖子展示了如何为行着色,但我不知道如何对列执行相同的操作。

答案1

您可以使用\columncolor宏:

\documentclass{article}

\usepackage[table]{xcolor}

\begin{document}

\begin{tabular}{|c|c|c|>{\columncolor{olive!50}}c|c|}    %% Color 4th column
\hline
Username & Sample & Filename & Sequence & Comments \\ \hline
 1& 2& 3& 4& 5\\
 3& 5& 8& 9& 23\\
 1& 2& 3& 4& 5\\
 3& 5& 8& 9& 23\\
 1& 2& 3& 4& 5\\
 3& 5& 8& 9& 23\\
 1& 2& 3& 4& 5\\
 3& 5& 8& 9& 23\\\hline
\end{tabular}

\end{document}

在此处输入图片描述

相关内容