Nicematrix 的旋转侧标题与图像内容重叠

Nicematrix 的旋转侧标题与图像内容重叠

我想要这两个(图片图片1图片22 X 1 array)以旋转side headers但我的y 轴标签排列side header (sd = 1 nad sd = 3) overlap with the图像。

\documentclass{article}
\usepackage{nicematrix}
\usepackage{float}

\begin{document}
    \begin{figure}[H]
        \centering
        \footnotesize
        \resizebox{\textwidth}{7em}{%
            \begin{NiceTabular}{l>{\bfseries}}[hvlines]
                \RowStyle{\bfseries}
                \Block{*-1}{\rotate $\mathbf{sd = 1}$}
                \includegraphics[width = 1\textwidth]{image1.png}
            \end{NiceTabular}%
        }
        \resizebox{\textwidth}{7em}{%
            \begin{NiceTabular}{l>{\bfseries}}[hvlines]
                \RowStyle{\bfseries}
                \Block{*-1}{\rotate $\mathbf{sd = 3}$}
                \includegraphics[width = 1\textwidth]{image2.png}
            \end{NiceTabular}%
        }
        \caption{Figure of figures}
        \label{figg1}
    \end{figure}
\end{document}

以下是具有重叠效果的输出

具有重叠效应的输出

这是我想要的模型

我想要的模型

我希望在图像中将rotated side header与 左侧明显区分开。y-axis label

我希望能够通过包裹实现这个目标nicematrix

相关内容