答案1
由于缺乏信息,并且不知道您迄今为止尝试了什么,使用了哪个文档类,灰色表格的背景是否必须是......
我宁愿使用enumerate
环境而不是表格环境。为了在插入表格的同一页面上放置服务`{stfloats}˙:
\documentclass[twocolumn]{article}
\usepackage{enumitem}
\usepackage{stfloats} % for positioning of table* on the same page
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{table*}[b]
\caption{table caption}
\rule{\linewidth}{1pt}
\begin{enumerate}[nosep, leftmargin=*, label=(\alph*)]
\item \lipsum[11]
\item \lipsum[11]
\item \lipsum[11]
\end{enumerate}
\rule{\linewidth}{1pt}
\end{table*}
\lipsum[2-5]
\end{document}