答案1
这是一个最小工作示例(MWE),展示了如何使用xcolor
的table
选项 - 这将加载colortbl
:
\documentclass{article}
\usepackage[table]{xcolor}% http://ctan.org/pkg/xcolor
\begin{document}
\begin{tabular}{l|c|r}
\hline
Some & \cellcolor{blue!25}coloured & contents \\
\hline
\end{tabular}
\end{document}
上述 MWE 中的线条选择强调了tabular
结构。但是,为了美观的表格构造,请考虑使用booktabs
。
答案2
使用该colortbl
包及其宏 \cellcolor{<color>}
。
\documentclass{article}
%% Set some local commands and colors
\usepackage{xcolor,colortbl}
\definecolor{green}{rgb}{0.1,0.1,0.1}
\newcommand{\done}{\cellcolor{teal}done} %{0.9}
\newcommand{\hcyan}[1]{{\color{teal} #1}}
\begin{document}
\begin{tabular}{ll}
\done & other\\
\end{tabular}
\end{document}