如何使图片左侧显示标题

如何使图片左侧显示标题

在此处输入图片描述在此处输入图片描述

这是我想要使用乳胶制作的最终图像,我使用乳胶撰写论文,但遇到了这个问题。如何制作如上图所示的图像左侧的标题?

答案1

\documentclass{article}
\usepackage{graphicx}

\begin{document}

    \begin{figure}\centering
        \begin{tabular}{ *{2}{c @{\hspace{1\tabcolsep}} c @{\hspace{1\tabcolsep}} c} }
            \rotatebox{90}{\hspace{0.4cm}1-Text} & %getting the rotated text centred has do be done by hand.
            \includegraphics[width=0.2\linewidth]{example-image} &
            \includegraphics[width=0.2\linewidth]{example-image} &
            \rotatebox{90}{\hspace{0.4cm}2-Text} & 
            \includegraphics[width=0.2\linewidth]{example-image} &
            \includegraphics[width=0.2\linewidth]{example-image} \\
             & A-Text & B-Text & & C-Text & D-Text
        \end{tabular}
        \caption{caption}
    \end{figure}

\end{document}

在此处输入图片描述

答案2

rotating软件包中有旋转字幕的命令\rotcaption。请参阅 caption 软件包的手册。

相关内容