同一文档中的两个子图用两列分隔

同一文档中的两个子图用两列分隔

我想知道是否有人知道如何实现我在下图中所展示的内容。

在此处输入图片描述

这个想法是,两个图形都在同一个范围内,但它们可以通过子标签 (a) 和 (b) 分开,我应该能够在文本中的任何地方引用它们。

答案1

使用 可以做到这一点subcaption,但是“可能”并不意味着“好主意”:

姆韦

\documentclass[twocolumn]{article}
\usepackage{subcaption,lipsum,microtype}
\usepackage{graphicx}
\usepackage[colorlinks]{hyperref}
\begin{document}

The figure ``(\subref{a})'' is really the subfigure \ref{a} 
from  figure \ref{c} but is not with subfigure \ref{b}, 
and there are not a true caption here, just to confuse you.
    
\lipsum[1][1-1] 
  \begin{figure}[h!]
\begin{subfigure}{\linewidth}
\includegraphics[width=\linewidth]{example-image-a}
\subcaption{}\label{a}
\end{subfigure}
%\caption{xxx}
 \end{figure}
  \begin{figure}[t]
   \ContinuedFloat
\begin{subfigure}{\linewidth}
\includegraphics[width=\linewidth]{example-image-b}
\subcaption{}\label{b}
\end{subfigure}
    \caption{xxx}\label{c}
\end{figure}
\lipsum[2-4] 
\end{document}

相关内容