带有倾斜文本的迷你页面垂直居中

带有倾斜文本的迷你页面垂直居中

我想要制作如下的情节:

在此处输入图片描述

我打算使用 minipages。但是,我不知道如何包含倾斜的文本(如左侧所示)以及如何使其垂直对齐到图形的中间。如果能提供如何做到这一点的示例,我将不胜感激。

答案1

因为\caption以 par 开始和结束,所以添加了两个额外的空白行。 \cramit使标题就像一行文本一样。

我使用\raisebox多行来代替,这样我就可以调整高度。

\documentclass{article}
\usepackage{adjustbox}% \rotatebox
\usepackage{tabularx}
\usepackage{subcaption}

\newcommand{\cramit}[1]{\raisebox{0pt}[\ht\strutbox][\dp\strutbox]{%
  \begin{minipage}[b]{\linewidth}#1\end{minipage}}}

\begin{document}
\begin{figure}
\captionsetup{skip=0pt, justification=raggedright}%
\tabcolsep=2pt
\begin{tabularx}{\textwidth}{cXXX|X}
& \multicolumn{3}{c|}{This is a very Long Legend} & \multicolumn{1}{c}{Legend} \\
\raisebox{1cm}{\rotatebox[origin=c]{90}{COVID}} &
 \rule{\linewidth}{2cm} & \rule{\linewidth}{2cm} &  \rule{\linewidth}{2cm} &
 \rule{\linewidth}{2cm} \\
& \cramit{\subcaption{Yada}} & \cramit{\subcaption{Yada}} & \cramit{\subcaption{Yada}} & \\[\floatsep]
& \multicolumn{3}{p{\dimexpr 0.75\textwidth-8\tabcolsep}|}{\cramit{\caption{Cost comparison}}} & 
    \raisebox{\floatsep}[\ht\strutbox][\dp\strutbox]{% adjusted for looks
    \begin{minipage}{\linewidth}
      \caption{\raggedright A two line caption}
    \end{minipage}} \\
\end{tabularx}
\end{figure}
\end{document}

演示

相关内容