答案1
以下是生成示例表的一段 LaTeX 代码。
\documentclass[8pt, a4paper]{article}
\usepackage[table]{xcolor}
\usepackage{times}
\definecolor{PurpleFG}{rgb}{0.54,0.35,0.71}
\definecolor{LightCyanBG}{rgb}{0.85,0.92,0.97}
\definecolor{CyanBG}{rgb}{0.71,0.85,0.93}
\definecolor{BlueBG}{rgb}{0,0.46,0.71}
\begin{document}
\footnotesize
\begin{tabular}{|c|c|c|>{\color{PurpleFG}}c|c|>{\color{PurpleFG}}c|c|>{\color{PurpleFG}}c|c|>{\color{PurpleFG}}c|}
\hline\rowcolor{BlueBG}
\textbf{YEAR} & \textbf{All Students} & \textbf{Freshmen} & \textbf{\%} & \textbf{Drop-Outs} & \textbf{\%} & \textbf{Returnees} & \textbf{\%} & \textbf{Graduates} & \textbf{\%} \cr
\hline\rowcolor{CyanBG}
2016-2017 & 5402 & 2070 & 0.38 & 1742 & 0.32 & 41 & 0.01 & 856 & 0.16 \cr
\hline\rowcolor{LightCyanBG}
2017-2018 & 4732 & 1580 & 0.33 & 1202 & 0.25 & 240 & 0.05 & 1048 & 0.22 \cr\hline
\end{tabular}
\end{document}
关键点是:
- 使用颜色选择器选择你喜欢的颜色,并使用其 rgb 数据填充,
\definecolor
如下所示\definecolor{PurpleFG}{rgb}{0.54,0.35,0.71}
- 要更改行的背景颜色,您必须在以下行之前使用包
\rowcolor
中的xcolor
\rowcolor{CyanBG}
- 要更改整行的前景/文本颜色,可以使用
>
列说明符的选项,如下所示>{\color{PurpleFG}}c
我HTH。