latex编写设置彩色表格问题
程序员文章站
2023-12-27 13:03:39
...
1.包含的包为:
\usepackage[table]{xcolor}
切记把这个包放在所有的包最前面否则很有可能会出错!!!
2.
\begin{table}[ htbp]
\centering
\rowcolors {1}{white}{blue!20}
\begin{tabular}{lll}
\hline
XXX & XX & XXX \\
Windows & MikTeX & TexMakerX \\
Unix/Linux & teTeX & Kile \\
Mac OS & MacTeX & TeXShop \\
XX & TeX Live & TeXworks \\
\hline
\end{tabular}
\end{table}
主要是这一部分 \begin{table}[ htbp]
\rowcolors {1}{white}{blue!20}
设置了表格的样式。
效果如下:
![good](https://img-blog.csdnimg.cn/20201215162457799.PNG#pic_center)
blue!20可以改颜色的深浅!!!