我对 Latex 还很陌生,我想问如何让所有 tabularx 元素具有相同的样式。标题应为灰色背景,白色字母,表格的线条应为深蓝色。
谢谢!
答案1
这可能是一个解决方案。您可以更改单元格的背景颜色。
补充:不好意思,我把白色字体忘记了,我加了个人。
\documentclass[12pt,a4paper]{article}
\usepackage[table]{xcolor}
\usepackage{tabu}
\definecolor{um}{RGB}{0,33,96}
\begin{document}
\taburulecolor{um}
\begin{tabu}{|c|c|c|}
\hline
\rowcolor{gray}
\textcolor{white}{1} & 1 & 1 \\ \hline
\rowcolor{lightgray}
1 & 1 & \textcolor{white}{2} \\ \hline
\rowcolor{darkgray}
\textcolor{white}{5} & 1 & 1 \\ \hline
\end{tabu}
\end{document}