如何使用 tabularray 使包含图像的行等距?

如何使用 tabularray 使包含图像的行等距?

使用 tabularray 时,我目前无法尝试使包含彼此等距图像的行。

例如,有这样的图像网格:

在此处输入图片描述

我希望图像 A、B、C 之间有相同的间隔。

我曾尝试强迫rowsep他们之间建立某种关系,将图像垂直居中于单元格内,但没有运气:

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{graphicx}
\usepackage{tabularray}
\usepackage[export]{adjustbox}

\begin{document}

\begin{figure}
    \centering
    \begin{tblr}{
            colspec = {ccc},
            rowsep = 1pt,
            cell{1}{1-2} = {r=3}{c},
        }
        \includegraphics[width=0.30\textwidth]{example-image} & 
        \includegraphics[width=0.30\textwidth]{example-image} &
        \includegraphics[width=0.08\textwidth, valign=m]{example-image-a} \\
        - & - & \includegraphics[width=0.08\textwidth, valign=m]{example-image-b} \\
        - & - & \includegraphics[width=0.08\textwidth, valign=m]{example-image-c} 
    \end{tblr}
\end{figure}

\end{document}

有没有办法做到这一点?

提前致谢!

答案1

    \begin{tblr}{
            vspan=even,
            colspec = {ccc},
            rowsep = 1pt,
            cell{1}{1-2} = {r=3}{c},
        }

在此处输入图片描述

相关内容