左侧图片空间中的标题定位

左侧图片空间中的标题定位

我对 LateX 的世界还很陌生,但我给了它一个机会,因为我正在写论文。我学到了很多东西,到目前为止,我解决了所有问题,这要感谢论坛和以前的用户。然而,尽管我知道有几个关于它的主题,但我还是无法解决以下问题。我读了所有这些,但它们并没有真正帮助我。

这可能是一个非常简单的问题,但对我来说却恰恰相反!

无论如何,这张图片描述了我正在尝试做的事情:

在此处输入图片描述

我尝试过 minipages 和其他几种方法,但都失败了。你能帮助我吗?

我试过这个多个面板图形,其中一个面板有标题?,但是由于我有一个大数字(a)而不是两个,所以我无法修改代码。

提前致谢!!

答案1

以下 MWE 展示了两个不同的示例,说明如何实现所需的结果。第一个示例使用s 来定位小图像和标题。第二个示例展示了如何将您引用的答案调整到您的图像中。但是,如果单个图像没有额外的单个子标题,minipage您实际上并不需要。subfigures

\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}

\begin{document}
\begin{figure}[htbp]
\includegraphics[width=\textwidth, height=4cm]{example-image}

\medskip

\begin{minipage}[b]{0.48\textwidth}
\includegraphics[width=\textwidth]{example-image}
\end{minipage}
\hfill
\begin{minipage}[b]{0.48\textwidth}
\caption{some long caption text that spans several lines on the document}
\end{minipage}
\end{figure}

\begin{figure}
\centering

\begin{subfigure}[t]{\textwidth}
\centering
\includegraphics[width=\linewidth]{example-image-a.pdf}
\end{subfigure}

\medskip

\begin{subfigure}[t]{.4\textwidth}
%\centering
\vspace{0pt}% set the real top as the top
\includegraphics[width=\linewidth]{example-image-c.pdf}
\end{subfigure}
\hfill
\begin{minipage}[t]{.55\textwidth}
\caption{Some general caption of all the figures.}
\end{minipage}

\end{figure}
\end{document}

相关内容