答案1
如果你想使用tabular
你可以使用
\documentclass[border=2mm]{standalone}
\usepackage[table]{xcolor}
\begin{document}
\begin{tabular}[]{|p{\dimexpr\linewidth-2\arrayrulewidth-2\tabcolsep\relax}|}
\hline
\rowcolor{gray!25}
\multicolumn{1}{|c|}{Learning Outcomes}\\
\hline
\begin{enumerate}
\item thingy
\item thingy
\end{enumerate}\\
\hline
\end{tabular}
\end{document}
小开胃菜tcolorbox
(breakable
如果是大开胃菜,则钥匙会使盒子页面易碎):
\documentclass[border=2mm]{standalone}
\usepackage{tcolorbox}
\tcbuselibrary{breakable}
\newtcolorbox{mybox}[1]{colframe=gray,fonttitle=\bfseries,adjusted
title=\centering#1,breakable}
\begin{document}
\begin{mybox}{Learning Outcomes}
\begin{enumerate}
\item thingy
\item thingy
\end{enumerate}
\end{mybox}
\end{document}