答案1
- 我们没有关于您的文件的任何信息
- 您的表格是作为图像插入的还是借助某些包作为表格写入的?
- 在后一种情况下,起点可以提供以下 MWE(不对行进行着色):
\documentclass{article}
\usepackage[margin=25mm]{geometry}
\usepackage{microtype}
\usepackage{tabularray}
\usepackage{lipsum}
\begin{document}
\lipsum[1-2]
\begin{center}
\begin{longtblr}[
caption = {My long table},
label = {tab:<name>}
]{
rowhead = 1,
hlines, vlines,
colspec = {*{3}{c}X[j] *{3}{c}X[j]},
row{1} = {font=\bfseries},
row{2,3} = {bg=yellow!30},
}
text & text & text & text
& text & text & text & text \\
1 & 2 & 3 & 4
& 5 & 6 & 7 & 8 \\
1 & 2 & 3 & \lipsum[66]
& 5 & 6 & 7 & 8 \\
1 & 2 & 3 & 4
& 5 & 6 & 7 & \lipsum[66] \\
\SetRow{fg=blue}
1 & 2 & 3 & \lipsum[66]
& 5 & 6 & 7 & 8 \\
\SetRow{bg=orange!30}
1 & 2 & 3 & 4
& 5 & 6 & 7 & \lipsum[66] \\
\end{longtblr}
\end{center}
\lipsum[4-5]
\end{document}
编译此 MWE 可得到表格标题所需的位置:
编辑: 添加了两种为行背景和行内文本着色的方法。