如何使用 \subfigures 生成由 2 个图组成的面板?

如何使用 \subfigures 生成由 2 个图组成的面板?

我用来\subfigures复制一个由 2 个图形组成的面板(见下文),但我的输出看起来不像我想要复制的那样。

期望面板

我的代码输出如下: 我的输出

我的代码是:

\documentclass[12pt,reqno]{report}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[rightcaption]{sidecap}
\usepackage{graphicx}
    
\begin{document}
    \begin{figure}
         \centering
         \begin{subfigure}[b]{0.5\textwidth}
             \centering
             \includegraphics[width=\textwidth]{figs/Fig_edited_figure_A_in_panel.png}
             \caption{}
             \label{fig: mHCN2_dime}
         \end{subfigure}
         \hfill
         \begin{subfigure}[b]{0.5\textwidth}
             \centering
             \includegraphics[width=\textwidth]{figs/mHCN2_cAMP_hidden_rotated_90_non-swapped_packing.png}
             \caption{}
             \label{fig: non-swapped_mHCN2}
         \end{subfigure}
         \hfill
    \end{figure}
\end{document}

有没有办法将它们并排放置,同时保持相同的大小?如果我将它们并排放置,数字就会变小。

如果可能的话,我还想注释数字和表示 90° 旋转的箭头......

答案1

我猜你喜欢重现上图的子图对。这可以通过使用floatrowsubfig包来简化。

**编辑:** 子图的标签必须位于插入图像之后,而不是像原始答案中那样位于矩形括号中。现在已更正(删除了标题空间之外的标签)。

\documentclass[12pt,reqno]{report}
\usepackage{floatrow}
    \floatsetup[figure]{subcapbesideposition=top}
\usepackage{graphicx}
\usepackage[label font=bf, 
            labelformat=simple]{subfig}
\usepackage{caption}

\begin{document}
    \begin{figure}[ht]
    \renewcommand\thesubfigure{\Alph{subfigure}}
    \setlength{\labelsep}{2mm}
    \centering
\sidesubfloat[]%
{
\includegraphics[width=0.4\textwidth]{example-image}\label{fig:mHCN2_dime} % <---
}
\hfill
\sidesubfloat[]%
{
\includegraphics[width=0.4\textwidth]{example-image}\label{fig:non-swapped_mHCN2} % <---
}

\caption{My figures}
\label{fig:fig:mHCN2}
    \end{figure}
See subfigures \ref{fig:mHCN2_dime} and \ref{fig:non-swapped_mHCN2} on figure \ref{fig:fig:mHCN2}.
\end{document}

在此处输入图片描述

相关内容