我正在使用 tabular
,tabularx
并tabulary
使用包array
,我想声明整个文档中所有表格的线条颜色。
目标是使它们稍微不那么暗。
是否有包/命令可以执行此操作?我发现我可以使用以下命令轻松更改一个表的线条颜色\colortbl
:
\documentclass{article}
\usepackage{colortbl}
\begin{document}
\begin{tabular}{l!{\color{green}\vrule}l}
\arrayrulecolor{red}\hline
test & test\\\arrayrulecolor{blue}\hline
\end{tabular}
\end{document}
但是我不想重写我的整个文档来改变所有地方。
答案1
\arrayrulecolor{black}
\arrayrulecolor{gainsboro}
\arrayrulecolor{antiquewhite}
平均能量损失
\documentclass{article}
\usepackage{hhline,colortbl}
\definecolor{antiquewhite}{rgb}{0.98, 0.92, 0.84}
\definecolor{black}{rgb}{0.0, 0.0, 0.0}
\definecolor{gainsboro}{rgb}{0.86, 0.86, 0.86}
\begin{document}
\arrayrulecolor{antiquewhite}
\begin{tabular}
{|l| c| c|} \hline
one & two & three \\ \hline
1 & 2 & 3 \\ \hline
4 & 5 & 6 \\ \hline
\end{tabular}
\end{document}