在 fbox(小页面)中包含多个图形/子图形

在 fbox(小页面)中包含多个图形/子图形

据我所知,在 fbox/minipage 中包含浮动几乎是不可能的。我基本上想要一段带框架的文本,并在框架内包含几个子图。关于如何实现这一点,有什么想法吗?

答案1

对于这样的事情,您可以使用诸如framed、或之类的包。mdframedadjustboxtcolorbox

每个包都有其自身的优点和缺点:您可以阅读相关文档以获取更多信息。

以下示例使用tcolorbox。为了提供subfigures我正在使用的subcaption

\documentclass[12pt]{article}
\usepackage{caption,subcaption}
\usepackage{tcolorbox}
\usepackage{kantlipsum}
\begin{document}
\begin{tcolorbox}
\kant[1]
\begin{center}
\captionsetup{type=figure}
\begin{subfigure}[b]{.5\linewidth}
\centering
\rule{3cm}{1cm}
\caption{A subfigure}\label{fig:1a}
\end{subfigure}%
\begin{subfigure}[b]{.5\linewidth}
\centering
\rule{3cm}{1cm}
\caption{B subfigure}\label{fig:2a}
\end{subfigure}
\caption{FIGURES}
\end{center}
\kant[2]
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容