我对乳胶还很陌生,所以如果我的问题太笼统,请原谅我。
这是我目前得到的结果。有很多问题,例如如何让每一秒都变成\hline
灰色,或者如何让表格占据整个页面宽度,而不受页面大小的影响。
\documentclass[a5paper]{article}
\usepackage[a5paper, portrait, margin=0.5cm]{geometry}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage[table, svgnames]{xcolor}
\newcommand{\grayline}{\arrayrulecolor{lightgray}\cline{3-5}\arrayrulecolor{white}}
\begin{document}
\pagecolor{black}
\color{white}
\setlength{\extrarowheight}{10pt}
\noindent
\begin{tabularx}{\linewidth}{c|X|X|X|X|}
\cline{1-5}
\multicolumn{5} {r|} {Date: 2021|\hspace{0.5cm}|\hspace{0.5cm}|}\\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\hspace{0.5cm} & & & & \\
\grayline
\hspace{0.5cm} & & & & \\
\hline
\end{tabularx}
\end{document}
答案1
以下可以作为起点:
\documentclass[a5paper]{article}
\usepackage{geometry}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage[table, svgnames]{xcolor}
\newcommand{\grayline}{\arrayrulecolor{lightgray}\cline{1-5}\arrayrulecolor{black}}
\begin{document}
\noindent
\begin{tabularx}{\linewidth}{|c|c|X|X|X|c}
\cline{1-5}
\multicolumn{5} {|l|} {Date: } \\
\hline
& & & && \multirow{2}{*}{1}\\
\grayline
& :30 & & &&\\ \hline
& & & && \multirow{2}{*}{2}\\
\grayline
& :30 & & &&\\ \hline
\end{tabularx}
\end{document}