我想在我的文档子图像中显示以下模式:
我该怎么做?问候,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}