我想突出显示表格中的第一行,以“日期”开头
以下是该表格的屏幕截图:
答案1
这需要xcolor
包、其table
选项和\rowcolor
命令。
从我的角度来看,这个表中的行太多了,但是......好吧,这是 OP 的设计......
\documentclass[twoside]{article}
\usepackage[table,x11names]{xcolor}
\begin{document}
\begin{center}
\begin{tabular}{|*{4}{l|}}
\hline
\rowcolor{lightgray} Date & Time & Instruction & Design \tabularnewline
& & & \tabularnewline
\hline
& & & \tabularnewline
\hline
& & & \tabularnewline
\hline
\end{tabular}
\end{center}
\end{document}