在单元格内剪切表格(因为有新页面)

在单元格内剪切表格(因为有新页面)

如果我使用带有大单元格的长表格,整个单元格将移动到下一页。我想将其剪切到单元格内。我该怎么做,理想情况下还能使其与脚注兼容?

在此处输入图片描述

我的尝试:我猜想在任意表格上这可能并不简单,所以我可以从针对我在 MWE 中显示的特定类型的表格的解决方案开始(2 列,第一列适应较大的元素,第二列跨越其余部分并且通常比第一个表格大得多,样式是偶数行的背景)。我在想,可能可以(滥用)使用 enumitem,其中项目可能是 parbox 之类的\item[{\parbox{}}],但我不知道如何添加背景颜色以使其在分页符处工作,或者调整第一列的宽度……也许 tcolor 框可以提供帮助,不知道。

\documentclass{article}
\usepackage{xcolor}
\usepackage{hyperref}
\parindent=0pt
\usepackage{tabularray}
\usepackage{lipsum}

\begin{document}

\DefTblrTemplate{firsthead,middlehead,lasthead}{default}{}%
\DefTblrTemplate{firstfoot,middlefoot,lastfoot}{default}{}%  
\begin{longtblr}{colspec={cX},row{odd}={blue!7!white}}
  My item                                                & My content          \\
  {See that the first column\\adapts to the larger item} & Blablabla \\
  Footnotes                                              & I'd like footnote to be displayed on the good page ideally automatically\footnote{Which is not trivial to get with tables} \\
  {Some multiline\\stuff} C                              & \lipsum[1]\\
  Split cell                                             & I would like this column to be split between the 2 pages \lipsum[2-3] \\
\end{longtblr}

\end{document}

相关内容