答案1
显然我不知道您是如何完成双列工作的。它是表格还是多列,没有 MWE 就无法分辨。因此,这里有一个通用答案,可以应用于两者。显然,我没有费力从您的屏幕截图中输入文本。
\documentclass{article}
\usepackage{multirow}
\usepackage{eso-pic}
\usepackage{tikz}
\usetikzlibrary{tikzmark,calc}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\bigskip\bigskip
\centering
\begin{tabular}{rl}
Personalization &
\multirow{2}{*}{\tikzmarknode{duck}{\includegraphics{example-image-duck}}}\\
some more text
\end{tabular}
\AddToShipoutPictureBG*{%
\begin{tikzpicture}[overlay,remember picture]
\fill[gray!20]
($(current page.west |- duck.north)+(0,1)$)
-- ($(current page.east |- duck.north)+(0,0.1)$)
-- ($(current page.east |- duck.south)+(0,-0.1)$)
-- ($(current page.west |- duck.south)+(0,-1)$);
\end{tikzpicture}
}
\clearpage
This is a normal page
\end{document}