我正在尝试让表格中的枚举扩展到 3 列(第 2 行的粗体格式将自动删除,这正是我想要的)。似乎没有必要包含四列。但是,下面的内容只是我真正想要处理的示例
我的MWE
\documentclass{article}
\usepackage[showframe, margin=11mm]{geometry}
\usepackage[x11names]{xcolor}
\usepackage{nicematrix,tikz}
\usepackage{booktabs}
\usepackage{bigstrut}
\usepackage{enumitem}
\setlist[enumerate,1]{leftmargin=*, label=\arabic*., parsep=0pt}
\begin{document}
\noindent
\begin{NiceTabularX}{\textwidth}{>{\bfseries}l >{\bfseries}X[l, t] X[c, t] X[r, t]}[cell-space-limits=1.1961pt,
rules/color=black, rules/width=0.11mm
]
\Block[tikz={draw=OrangeRed1, thick, rounded corners}]{1-4}<\large\bfseries>{Module 1: Mathematical Background \bigstrut[t]} & & &
\\
Week 1 & Laplace Transform & &
\\
\addlinespace[1mm]
& \Block[l]{1-1}{
\begin{enumerate}
\item Definition of Laplace transform
\item Laplace transform pairs
\item Useful theorems of Laplace transform
\item Partial fraction expansion
\item Solution of differential equations using Laplace transform
\end{enumerate}
}
\\
\end{NiceTabularX}
\end{document}