具有可选边框颜色和文本颜色的表格

具有可选边框颜色和文本颜色的表格

我正在尝试制作一个表格,其边框和文本可以有可选的颜色,类似于下面的表格这里

到目前为止,我还没有成功修改互联网上可用的代码片段来得到类似的东西。有人能推荐一个简单的片段示例吗?

在此处输入图片描述

答案1

\usepackage[table]{xcolor}如果你在文档的序言中使用,则可以使用

\textcolor{<color name>}{<text>} 

改变文本的颜色

\arrayrulecolor{<color name>}

更改下表中所有行的颜色。

因为<color name>您既可以使用包中各种颜色模型附带的预定义颜色,xcolor也可以使用您先前使用命令定义的自己的颜色\definecolor

一个非常简单的 MWE 应该可以帮助您入门,如下所示:

在此处输入图片描述

\documentclass{article} 
\usepackage[table]{xcolor} 
\begin{document} 
\arrayrulecolor{blue} 
\begin{tabular}{l|lll}  
& text & text & text \\ 
\hline 
\textcolor{green}{text} & text & text & text\\ 
\hline 
text & text & text & text\\ 
\hline 
\textcolor{purple}{text} & text & text & text\\ 
\hline 
\textcolor{blue}{text} & text & text & text\\ 
\end{tabular} 
\end{document}

相关内容