具有两行的子图像架构

具有两行的子图像架构

我想在我的文档子图像中显示以下模式:

架构

我该怎么做?问候,vi。

答案1

\subcaptionbox从包中使用的可能性subcaption

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

\begin{document}

\begin{figure}
\centering
\subcaptionbox{}{\includegraphics[height=4cm]{example-image-a}}\hfill
\subcaptionbox{}{\includegraphics[height=4cm]{example-image-b}}\par
\subcaptionbox{}{\includegraphics[width=.8\textwidth,height=3cm]{example-image-c}}
\end{figure}

\end{document}

在此处输入图片描述

添加

\captionsetup[subfigure]{labelformat=brace}

如果您只想要标签的右括号。

在评论中,要求使用subfig而不是来做同样的事情subcaption;方法如下:

\documentclass{article}
\usepackage{graphicx}
\usepackage{subfig}

\begin{document}

\begin{figure}
\centering
\subfloat[]{\includegraphics[height=4cm]{example-image-a}}\hfill
\subfloat[]{\includegraphics[height=4cm]{example-image-b}}\par
\subfloat[]{\includegraphics[width=.8\textwidth,height=3cm]{example-image-c}}
\end{figure}

\end{document}

相关内容