tcolorbox:tcbitemize 的几个行高

tcolorbox:tcbitemize 的几个行高

我有一个整页的 tcbitemize 结构,其中有一些行比其他行高或者可能更低。

我必须设置什么才能使高度适应内容?

红色字体的框要高一点,其他的也要调整高度。

在此处输入图片描述

\documentclass[paper=a4,fontsize=11pt]{scrartcl}   
\pagestyle{empty}
\usepackage[showframe=true]{geometry}
\usepackage[most]{tcolorbox}

\begin{document}
\begin{tcbitemize}[raster columns=1, 
raster rows=8, % I think this value can't be calculatet automatically
%raster equal height=none, 
raster height=\textheight,% <---- needed and creates the problem
raster width=4cm, 
% Just for a test (automatic adjustment would be better), but no effect if 'raster height=\textheight'  is used: 
%raster row 2/.style={height=5cm},% Test  
]
\tcbitem L1
\tcbitem[coltext=red] L2a \\ L2b\\ L2c\\ L2d \\ L2e \\ L2f \\ L2g
\tcbitem L3
\tcbitem L4
\tcbitem L5
\tcbitem L6
\tcbitem L7
\tcbitem L8
\end{tcbitemize}
\end{document}

相关内容